git-p4: additional testing of --changes-block-size
[git/raj.git] / t / t9818-git-p4-block.sh
blob79765a4a4e120d921f764899887b1657ffe6569c
1 #!/bin/sh
3 test_description='git p4 fetching changes in multiple blocks'
5 . ./lib-git-p4.sh
7 test_expect_success 'start p4d' '
8 start_p4d
11 test_expect_success 'Create a repo with many changes' '
13 client_view "//depot/included/... //client/included/..." \
14 "//depot/excluded/... //client/excluded/..." &&
15 mkdir -p "$cli/included" "$cli/excluded" &&
16 cd "$cli/included" &&
17 >file.txt &&
18 p4 add file.txt &&
19 p4 submit -d "Add file.txt" &&
20 for i in $(test_seq 0 5)
22 >outer$i.txt &&
23 p4 add outer$i.txt &&
24 p4 submit -d "Adding outer$i.txt" &&
25 for j in $(test_seq 0 5)
27 p4 edit file.txt &&
28 echo $i$j >file.txt &&
29 p4 submit -d "Commit $i$j" || exit
30 done || exit
31 done
35 test_expect_success 'Clone the repo' '
36 git p4 clone --dest="$git" --changes-block-size=7 --verbose //depot/included@all
39 test_expect_success 'All files are present' '
40 echo file.txt >expected &&
41 test_write_lines outer0.txt outer1.txt outer2.txt outer3.txt outer4.txt >>expected &&
42 test_write_lines outer5.txt >>expected &&
43 ls "$git" >current &&
44 test_cmp expected current
47 test_expect_success 'file.txt is correct' '
48 echo 55 >expected &&
49 test_cmp expected "$git/file.txt"
52 test_expect_success 'Correct number of commits' '
53 (cd "$git" && git log --oneline) >log &&
54 wc -l log &&
55 test_line_count = 43 log
58 test_expect_success 'Previous version of file.txt is correct' '
59 (cd "$git" && git checkout HEAD^^) &&
60 echo 53 >expected &&
61 test_cmp expected "$git/file.txt"
64 # Test git-p4 sync, with some files outside the client specification.
66 p4_add_file() {
67 (cd "$cli" &&
68 >$1 &&
69 p4 add $1 &&
70 p4 submit -d "Added a file" $1
74 test_expect_success 'Add some more files' '
75 for i in $(test_seq 0 10)
77 p4_add_file "included/x$i" &&
78 p4_add_file "excluded/x$i"
79 done &&
80 for i in $(test_seq 0 10)
82 p4_add_file "excluded/y$i"
83 done
86 # This should pick up the 10 new files in "included", but not be confused
87 # by the additional files in "excluded"
88 test_expect_success 'Syncing files' '
90 cd "$git" &&
91 git p4 sync --changes-block-size=7 &&
92 git checkout p4/master &&
93 ls -l x* > log &&
94 test_line_count = 11 log
98 test_expect_success 'kill p4d' '
99 kill_p4d
102 test_done