GIT 1.5.0.3
[git/gitweb.git] / t / t1200-tutorial.sh
blobeebe643bda9dd5180e8435a59c7510ba97e59144
1 #!/bin/sh
3 # Copyright (c) 2005 Johannes Schindelin
6 test_description='A simple turial in the form of a test case'
8 . ./test-lib.sh
10 echo "Hello World" > hello
11 echo "Silly example" > example
13 git-update-index --add hello example
15 test_expect_success 'blob' "test blob = \"$(git-cat-file -t 557db03)\""
17 test_expect_success 'blob 557db03' "test \"Hello World\" = \"$(git-cat-file blob 557db03)\""
19 echo "It's a new day for git" >>hello
20 cat > diff.expect << EOF
21 diff --git a/hello b/hello
22 index 557db03..263414f 100644
23 --- a/hello
24 +++ b/hello
25 @@ -1 +1,2 @@
26 Hello World
27 +It's a new day for git
28 EOF
29 git-diff-files -p > diff.output
30 test_expect_success 'git-diff-files -p' 'cmp diff.expect diff.output'
31 git diff > diff.output
32 test_expect_success 'git diff' 'cmp diff.expect diff.output'
34 tree=$(git-write-tree 2>/dev/null)
36 test_expect_success 'tree' "test 8988da15d077d4829fc51d8544c097def6644dbb = $tree"
38 output="$(echo "Initial commit" | git-commit-tree $(git-write-tree) 2>&1 > .git/refs/heads/master)"
40 git-diff-index -p HEAD > diff.output
41 test_expect_success 'git-diff-index -p HEAD' 'cmp diff.expect diff.output'
43 git diff HEAD > diff.output
44 test_expect_success 'git diff HEAD' 'cmp diff.expect diff.output'
46 #rm hello
47 #test_expect_success 'git-read-tree --reset HEAD' "git-read-tree --reset HEAD ; test \"hello: needs update\" = \"$(git-update-index --refresh)\""
49 cat > whatchanged.expect << EOF
50 commit VARIABLE
51 Author: VARIABLE
52 Date: VARIABLE
54 Initial commit
56 diff --git a/example b/example
57 new file mode 100644
58 index 0000000..f24c74a
59 --- /dev/null
60 +++ b/example
61 @@ -0,0 +1 @@
62 +Silly example
63 diff --git a/hello b/hello
64 new file mode 100644
65 index 0000000..557db03
66 --- /dev/null
67 +++ b/hello
68 @@ -0,0 +1 @@
69 +Hello World
70 EOF
72 git-whatchanged -p --root | \
73 sed -e "1s/^\(.\{7\}\).\{40\}/\1VARIABLE/" \
74 -e "2,3s/^\(.\{8\}\).*$/\1VARIABLE/" \
75 > whatchanged.output
76 test_expect_success 'git-whatchanged -p --root' 'cmp whatchanged.expect whatchanged.output'
78 git tag my-first-tag
79 test_expect_success 'git tag my-first-tag' 'cmp .git/refs/heads/master .git/refs/tags/my-first-tag'
81 # TODO: test git-clone
83 git checkout -b mybranch
84 test_expect_success 'git checkout -b mybranch' 'cmp .git/refs/heads/master .git/refs/heads/mybranch'
86 cat > branch.expect <<EOF
87 master
88 * mybranch
89 EOF
91 git branch > branch.output
92 test_expect_success 'git branch' 'cmp branch.expect branch.output'
94 git checkout mybranch
95 echo "Work, work, work" >>hello
96 git commit -m 'Some work.' -i hello
98 git checkout master
100 echo "Play, play, play" >>hello
101 echo "Lots of fun" >>example
102 git commit -m 'Some fun.' -i hello example
104 test_expect_failure 'git resolve now fails' 'git resolve HEAD mybranch "Merge work in mybranch"'
106 cat > hello << EOF
107 Hello World
108 It's a new day for git
109 Play, play, play
110 Work, work, work
113 git commit -m 'Merged "mybranch" changes.' -i hello
115 test_done
117 cat > show-branch.expect << EOF
118 * [master] Merged "mybranch" changes.
119 ! [mybranch] Some work.
121 - [master] Merged "mybranch" changes.
122 *+ [mybranch] Some work.
125 git show-branch --topo-order master mybranch > show-branch.output
126 test_expect_success 'git show-branch' 'cmp show-branch.expect show-branch.output'
128 git checkout mybranch
130 cat > resolve.expect << EOF
131 Updating from VARIABLE to VARIABLE
132 example | 1 +
133 hello | 1 +
134 2 files changed, 2 insertions(+), 0 deletions(-)
137 git resolve HEAD master "Merge upstream changes." | \
138 sed -e "1s/[0-9a-f]\{40\}/VARIABLE/g" > resolve.output
139 test_expect_success 'git resolve' 'cmp resolve.expect resolve.output'
141 cat > show-branch2.expect << EOF
142 ! [master] Merged "mybranch" changes.
143 * [mybranch] Merged "mybranch" changes.
145 -- [master] Merged "mybranch" changes.
148 git show-branch --topo-order master mybranch > show-branch2.output
149 test_expect_success 'git show-branch' 'cmp show-branch2.expect show-branch2.output'
151 # TODO: test git fetch
153 # TODO: test git push
155 test_expect_success 'git repack' 'git repack'
156 test_expect_success 'git prune-packed' 'git prune-packed'
157 test_expect_failure '-> only packed objects' 'find -type f .git/objects/[0-9a-f][0-9a-f]'
159 test_done