1#!/bin/sh
2#
3# Copyright (c) 2007 Nguyễn Thái Ngọc Duy
4#
5
6test_description='Test repository version check'
7
8. ./test-lib.sh
9
10test_expect_success 'setup' '
11 cat >test.patch <<-\EOF &&
12 diff --git a/test.txt b/test.txt
13 new file mode 100644
14 --- /dev/null
15 +++ b/test.txt
16 @@ -0,0 +1 @@
17 +123
18 EOF
19
20 test_create_repo "test" &&
21 test_create_repo "test2" &&
22 GIT_CONFIG=test2/.git/config git config core.repositoryformatversion 99
23'
24
25test_expect_success 'gitdir selection on normal repos' '
26 echo 0 >expect &&
27 git config core.repositoryformatversion >actual &&
28 (
29 cd test &&
30 git config core.repositoryformatversion >../actual2
31 ) &&
32 test_cmp expect actual &&
33 test_cmp expect actual2
34'
35
36test_expect_success 'gitdir selection on unsupported repo' '
37 # Make sure it would stop at test2, not trash
38 echo 99 >expect &&
39 (
40 cd test2 &&
41 git config core.repositoryformatversion >../actual
42 ) &&
43 test_cmp expect actual
44'
45
46test_expect_success 'gitdir not required mode' '
47 git apply --stat test.patch &&
48 (
49 cd test &&
50 git apply --stat ../test.patch
51 ) &&
52 (
53 cd test2 &&
54 git apply --stat ../test.patch
55 )
56'
57
58test_expect_success 'gitdir required mode' '
59 git apply --check --index test.patch &&
60 (
61 cd test &&
62 git apply --check --index ../test.patch
63 ) &&
64 (
65 cd test2 &&
66 test_must_fail git apply --check --index ../test.patch
67 )
68'
69
70test_done