3 test_description
='git p4 relative chdir'
7 test_expect_success
'start p4d' '
11 test_expect_success
'init depot' '
16 p4 submit -d "change 1"
20 # P4 reads from P4CONFIG file to find its server params, if the
21 # environment variable is set
22 test_expect_success
'P4CONFIG and absolute dir clone' '
23 printf "P4PORT=$P4PORT\nP4CLIENT=$P4CLIENT\n" >p4config &&
24 test_when_finished "rm p4config" &&
25 test_when_finished cleanup_git &&
27 P4CONFIG=p4config && export P4CONFIG &&
28 sane_unset P4PORT P4CLIENT &&
29 git p4 clone --verbose --dest="$git" //depot
33 # same thing, but with relative directory name, note missing $ on --dest
34 test_expect_success
'P4CONFIG and relative dir clone' '
35 printf "P4PORT=$P4PORT\nP4CLIENT=$P4CLIENT\n" >p4config &&
36 test_when_finished "rm p4config" &&
37 test_when_finished cleanup_git &&
39 P4CONFIG=p4config && export P4CONFIG &&
40 sane_unset P4PORT P4CLIENT &&
41 git p4 clone --verbose --dest="git" //depot
45 # Common setup using .p4config to set P4CLIENT and P4PORT breaks
46 # if clone destination is relative. Make sure that chdir() expands
47 # the relative path in --dest to absolute.
48 test_expect_success
'p4 client root would be relative due to clone --dest' '
49 test_when_finished cleanup_git &&
51 echo P4PORT=$P4PORT >git/.p4config &&
55 git p4 clone --dest="git" //depot
59 # When the p4 client Root is a symlink, make sure chdir() does not use
60 # getcwd() to convert it to a physical path.
61 test_expect_success SYMLINKS
'p4 client root symlink should stay symbolic' '
62 physical="$TRASH_DIRECTORY/physical" &&
63 symbolic="$TRASH_DIRECTORY/symbolic" &&
64 test_when_finished "rm -rf \"$physical\"" &&
65 test_when_finished "rm \"$symbolic\"" &&
66 mkdir -p "$physical" &&
67 ln -s "$physical" "$symbolic" &&
68 test_when_finished cleanup_git &&
70 P4CLIENT=client-sym &&
71 p4 client -i <<-EOF &&
73 Description: $P4CLIENT
76 View: //depot/... //$P4CLIENT/...
78 git p4 clone --dest="$git" //depot &&
81 git config git-p4.skipSubmitEdit true &&
86 test_expect_success
'kill p4d' '