]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5002-archive-attr-pattern.sh
The eighth batch
[thirdparty/git.git] / t / t5002-archive-attr-pattern.sh
CommitLineData
94bc671a
JNA
1#!/bin/sh
2
3test_description='git archive attribute pattern tests'
4
8da0b02d 5TEST_CREATE_REPO_NO_TEMPLATE=1
94bc671a
JNA
6. ./test-lib.sh
7
8test_expect_exists() {
9 test_expect_success " $1 exists" "test -e $1"
10}
11
12test_expect_missing() {
13 test_expect_success " $1 does not exist" "test ! -e $1"
14}
15
16test_expect_success 'setup' '
17 echo ignored >ignored &&
8da0b02d 18 mkdir .git/info &&
94bc671a
JNA
19 echo ignored export-ignore >>.git/info/attributes &&
20 git add ignored &&
21
22 mkdir not-ignored-dir &&
23 echo ignored-in-tree >not-ignored-dir/ignored &&
24 echo not-ignored-in-tree >not-ignored-dir/ignored-only-if-dir &&
25 git add not-ignored-dir &&
26
27 mkdir ignored-only-if-dir &&
28 echo ignored by ignored dir >ignored-only-if-dir/ignored-by-ignored-dir &&
29 echo ignored-only-if-dir/ export-ignore >>.git/info/attributes &&
30 git add ignored-only-if-dir &&
31
efa5f825
JK
32 mkdir -p ignored-without-slash &&
33 echo "ignored without slash" >ignored-without-slash/foo &&
34 git add ignored-without-slash/foo &&
35 echo "ignored-without-slash export-ignore" >>.git/info/attributes &&
36
37 mkdir -p wildcard-without-slash &&
38 echo "ignored without slash" >wildcard-without-slash/foo &&
39 git add wildcard-without-slash/foo &&
40 echo "wild*-without-slash export-ignore" >>.git/info/attributes &&
41
42 mkdir -p deep/and/slashless &&
43 echo "ignored without slash" >deep/and/slashless/foo &&
44 git add deep/and/slashless/foo &&
45 echo "deep/and/slashless export-ignore" >>.git/info/attributes &&
46
47 mkdir -p deep/with/wildcard &&
48 echo "ignored without slash" >deep/with/wildcard/foo &&
49 git add deep/with/wildcard/foo &&
50 echo "deep/*t*/wildcard export-ignore" >>.git/info/attributes &&
94bc671a
JNA
51
52 mkdir -p one-level-lower/two-levels-lower/ignored-only-if-dir &&
53 echo ignored by ignored dir >one-level-lower/two-levels-lower/ignored-only-if-dir/ignored-by-ignored-dir &&
54 git add one-level-lower &&
55
56 git commit -m. &&
57
8da0b02d
ÆAB
58 git clone --template= --bare . bare &&
59 mkdir bare/info &&
94bc671a
JNA
60 cp .git/info/attributes bare/info/attributes
61'
62
63test_expect_success 'git archive' '
64 git archive HEAD >archive.tar &&
65 (mkdir archive && cd archive && "$TAR" xf -) <archive.tar
66'
67
68test_expect_missing archive/ignored
69test_expect_missing archive/not-ignored-dir/ignored
70test_expect_exists archive/not-ignored-dir/ignored-only-if-dir
71test_expect_exists archive/not-ignored-dir/
72test_expect_missing archive/ignored-only-if-dir/
73test_expect_missing archive/ignored-ony-if-dir/ignored-by-ignored-dir
efa5f825
JK
74test_expect_missing archive/ignored-without-slash/ &&
75test_expect_missing archive/ignored-without-slash/foo &&
76test_expect_missing archive/wildcard-without-slash/
77test_expect_missing archive/wildcard-without-slash/foo &&
78test_expect_missing archive/deep/and/slashless/ &&
79test_expect_missing archive/deep/and/slashless/foo &&
80test_expect_missing archive/deep/with/wildcard/ &&
81test_expect_missing archive/deep/with/wildcard/foo &&
43180940 82test_expect_missing archive/one-level-lower/
94bc671a
JNA
83test_expect_missing archive/one-level-lower/two-levels-lower/ignored-only-if-dir/
84test_expect_missing archive/one-level-lower/two-levels-lower/ignored-ony-if-dir/ignored-by-ignored-dir
85
86
87test_done