1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # Copyright (c) 2005 Junio C Hamano
|
---|
4 | #
|
---|
5 |
|
---|
6 | test_description='git checkout-index test.
|
---|
7 |
|
---|
8 | This test registers the following filesystem structure in the cache:
|
---|
9 |
|
---|
10 | path0/file0 - a file in a directory
|
---|
11 | path1/file1 - a file in a directory
|
---|
12 |
|
---|
13 | and attempts to check it out when the work tree has:
|
---|
14 |
|
---|
15 | path0/file0 - a file in a directory
|
---|
16 | path1 - a symlink pointing at "path0"
|
---|
17 |
|
---|
18 | Checkout cache should fail to extract path1/file1 because the leading
|
---|
19 | path path1 is occupied by a non-directory. With "-f" it should remove
|
---|
20 | the symlink path1 and create directory path1 and file path1/file1.
|
---|
21 | '
|
---|
22 | . ./test-lib.sh
|
---|
23 |
|
---|
24 | show_files() {
|
---|
25 | # show filesystem files, just [-dl] for type and name
|
---|
26 | find path? -ls |
|
---|
27 | sed -e 's/^[0-9]* * [0-9]* * \([-bcdl]\)[^ ]* *[0-9]* *[^ ]* *[^ ]* *[0-9]* [A-Z][a-z][a-z] [0-9][0-9] [^ ]* /fs: \1 /'
|
---|
28 | # what's in the cache, just mode and name
|
---|
29 | git ls-files --stage |
|
---|
30 | sed -e 's/^\([0-9]*\) [0-9a-f]* [0-3] /ca: \1 /'
|
---|
31 | # what's in the tree, just mode and name.
|
---|
32 | git ls-tree -r "$1" |
|
---|
33 | sed -e 's/^\([0-9]*\) [^ ]* [0-9a-f]* /tr: \1 /'
|
---|
34 | }
|
---|
35 |
|
---|
36 | mkdir path0
|
---|
37 | date >path0/file0
|
---|
38 | test_expect_success \
|
---|
39 | 'git update-index --add path0/file0' \
|
---|
40 | 'git update-index --add path0/file0'
|
---|
41 | test_expect_success \
|
---|
42 | 'writing tree out with git write-tree' \
|
---|
43 | 'tree1=$(git write-tree)'
|
---|
44 | test_debug 'show_files $tree1'
|
---|
45 |
|
---|
46 | mkdir path1
|
---|
47 | date >path1/file1
|
---|
48 | test_expect_success \
|
---|
49 | 'git update-index --add path1/file1' \
|
---|
50 | 'git update-index --add path1/file1'
|
---|
51 | test_expect_success \
|
---|
52 | 'writing tree out with git write-tree' \
|
---|
53 | 'tree2=$(git write-tree)'
|
---|
54 | test_debug 'show_files $tree2'
|
---|
55 |
|
---|
56 | rm -fr path1
|
---|
57 | test_expect_success \
|
---|
58 | 'read previously written tree and checkout.' \
|
---|
59 | 'git read-tree -m $tree1 && git checkout-index -f -a'
|
---|
60 | test_debug 'show_files $tree1'
|
---|
61 |
|
---|
62 | test_expect_success \
|
---|
63 | 'add a symlink' \
|
---|
64 | 'test_ln_s_add path0 path1'
|
---|
65 | test_expect_success \
|
---|
66 | 'writing tree out with git write-tree' \
|
---|
67 | 'tree3=$(git write-tree)'
|
---|
68 | test_debug 'show_files $tree3'
|
---|
69 |
|
---|
70 | # Morten says "Got that?" here.
|
---|
71 | # Test begins.
|
---|
72 |
|
---|
73 | test_expect_success \
|
---|
74 | 'read previously written tree and checkout.' \
|
---|
75 | 'git read-tree $tree2 && git checkout-index -f -a'
|
---|
76 | test_debug 'show_files $tree2'
|
---|
77 |
|
---|
78 | test_expect_success \
|
---|
79 | 'checking out conflicting path with -f' \
|
---|
80 | 'test ! -h path0 && test -d path0 &&
|
---|
81 | test ! -h path1 && test -d path1 &&
|
---|
82 | test ! -h path0/file0 && test -f path0/file0 &&
|
---|
83 | test ! -h path1/file1 && test -f path1/file1'
|
---|
84 |
|
---|
85 | test_done
|
---|