summaryrefslogtreecommitdiff
path: root/t/lib-unique-files.sh
blob: a14080fe79b45ceac4adba31d3323fee32f79aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Helper to create files with unique contents
 
# Create multiple files with unique contents within this test run. Takes the
# number of directories, the number of files in each directory, and the base
# directory.
#
# test_create_unique_files 2 3 my_dir -- Creates 2 directories with 3 files
#					 each in my_dir, all with contents
#					 different from previous invocations
#					 of this command in this run.
 
test_create_unique_files () {
	test "$#" -ne 3 && BUG "3 param"
 
	local dirs="$1" &&
	local files="$2" &&
	local basedir="$3" &&
	local counter="0" &&
	local i &&
	local j &&
	test_tick &&
	local basedata="$basedir$test_tick" &&
	rm -rf "$basedir" &&
	for i in $(test_seq $dirs)
	do
		local dir="$basedir/dir$i" &&
		mkdir -p "$dir" &&
		for j in $(test_seq $files)
		do
			counter=$((counter + 1)) &&
			echo "$basedata.$counter">"$dir/file$j.txt"
		done
	done
}