Don't use test_expect_failure for tests that are supposed to work
[stgit] / t / t1301-repair.sh
... / ...
CommitLineData
1#!/bin/sh
2# Copyright (c) 2006 Karl Hasselström
3test_description='Test the repair command.'
4. ./test-lib.sh
5
6test_expect_success \
7 'Repair in a non-initialized repository' \
8 '! stg repair'
9
10test_expect_success \
11 'Initialize the StGIT repository' \
12 'stg init'
13
14test_expect_success \
15 'Repair in a repository without patches' \
16 'stg repair'
17
18test_expect_success \
19 'Create a patch' \
20 '
21 stg new foo -m foo &&
22 echo foo > foo.txt &&
23 stg add foo.txt &&
24 stg refresh
25 '
26
27test_expect_success \
28 'Repair when there is nothing to do' \
29 'stg repair'
30
31test_expect_success \
32 'Create a GIT commit' \
33 '
34 echo bar > bar.txt &&
35 git add bar.txt &&
36 git commit -a -m bar
37 '
38
39test_expect_success 'Turn one GIT commit into a patch' '
40 [ $(stg applied | wc -l) -eq 1 ] &&
41 stg repair &&
42 [ $(stg applied | wc -l) -eq 2 ]
43 '
44
45test_expect_success \
46 'Create three more GIT commits' \
47 '
48 echo one > numbers.txt &&
49 git add numbers.txt &&
50 git commit -a -m one &&
51 echo two >> numbers.txt &&
52 git commit -a -m two &&
53 echo three >> numbers.txt &&
54 git commit -a -m three
55 '
56
57test_expect_success 'Turn three GIT commits into patches' '
58 [ $(stg applied | wc -l) -eq 2 ] &&
59 stg repair &&
60 [ $(stg applied | wc -l) -eq 5 ]
61 '
62
63test_expect_success \
64 'Create a merge commit' \
65 '
66 git checkout -b br master^^ &&
67 echo woof > woof.txt &&
68 git add woof.txt &&
69 git commit -a -m woof &&
70 git checkout master &&
71 git pull . br
72 '
73
74test_expect_success 'Repair in the presence of a merge commit' '
75 [ $(stg applied | wc -l) -eq 5 ] &&
76 stg repair &&
77 [ $(stg applied | wc -l) -eq 0 ]
78'
79
80test_done