3 test_description='git-p4 tests'
7 ( p4 -h && p4d -h ) >/dev/null 2>&1 || {
8 skip_all='skipping git-p4 tests; no p4 or p4d'
12 GITP4=$GIT_BUILD_DIR/contrib/fast-import/git-p4
15 db="$TRASH_DIRECTORY/db"
16 cli="$TRASH_DIRECTORY/cli"
17 git="$TRASH_DIRECTORY/git"
19 test_debug 'echo p4d -q -d -r "$db" -p $P4DPORT'
20 test_expect_success setup '
22 p4d -q -d -r "$db" -p $P4DPORT &&
25 export P4PORT=localhost:$P4DPORT
28 test_expect_success 'add p4 files' '
30 p4 client -i <<-EOF &&
34 View: //depot/... //client/...
36 export P4CLIENT=client &&
39 p4 submit -d "file1" &&
43 test_expect_success 'basic git-p4 clone' '
44 "$GITP4" clone --dest="$git" //depot &&
45 rm -rf "$git" && mkdir "$git"
48 test_expect_success 'exit when p4 fails to produce marshaled output' '
49 badp4dir="$TRASH_DIRECTORY/badp4dir" &&
50 mkdir -p "$badp4dir" &&
51 cat >"$badp4dir"/p4 <<-EOF &&
55 chmod 755 "$badp4dir"/p4 &&
56 PATH="$badp4dir:$PATH" "$GITP4" clone --dest="$git" //depot >errs 2>&1 ; retval=$? &&
58 test_must_fail grep -q Traceback errs
61 test_expect_success 'add p4 files with wildcards in the names' '
63 echo file-wild-hash >file-wild#hash &&
64 echo file-wild-star >file-wild\*star &&
65 echo file-wild-at >file-wild@at &&
66 echo file-wild-percent >file-wild%percent &&
67 p4 add -f file-wild* &&
68 p4 submit -d "file wildcards" &&
72 test_expect_success 'wildcard files git-p4 clone' '
73 "$GITP4" clone --dest="$git" //depot &&
75 test -f file-wild#hash &&
76 test -f file-wild\*star &&
77 test -f file-wild@at &&
78 test -f file-wild%percent &&
79 cd "$TRASH_DIRECTORY" &&
80 rm -rf "$git" && mkdir "$git"
83 test_expect_success 'clone bare' '
84 "$GITP4" clone --dest="$git" --bare //depot &&
87 bare=`git config --get core.bare` &&
88 test "$bare" = true &&
89 cd "$TRASH_DIRECTORY" &&
90 rm -rf "$git" && mkdir "$git"
93 test_expect_success 'shutdown' '
96 test_debug "ps wl `echo $pid`" &&