]> git.ipfire.org Git - thirdparty/git.git/blame - t/lib-rebase.sh
Merge branch 'cm/rebase-i-updates'
[thirdparty/git.git] / t / lib-rebase.sh
CommitLineData
c74c7203 1# Helper functions used by interactive rebase tests.
29a03348 2
03af0870
JS
3# After setting the fake editor with this function, you can
4#
959c0d06 5# - override the commit message with $FAKE_COMMIT_MESSAGE
03af0870 6# - amend the commit message with $FAKE_COMMIT_AMEND
1d410cd8 7# - copy the original commit message to a file with $FAKE_MESSAGE_COPY
03af0870 8# - check that non-commit messages have a certain line count with $EXPECT_COUNT
959c0d06 9# - check the commit count in the commit message header with $EXPECT_HEADER_COUNT
05c95dbe
MH
10# - rewrite a rebase -i script as directed by $FAKE_LINES.
11# $FAKE_LINES consists of a sequence of words separated by spaces.
12# The following word combinations are possible:
03af0870 13#
05c95dbe
MH
14# "<lineno>" -- add a "pick" line with the SHA1 taken from the
15# specified line.
03af0870 16#
05c95dbe 17# "<cmd> <lineno>" -- add a line with the specified command
75ace832
CM
18# ("pick", "squash", "fixup"|"fixup_-C"|"fixup_-c", "edit", "reword" or "drop")
19# and the SHA1 taken from the specified line.
05c95dbe 20#
75ace832
CM
21# "_" -- add a space, like "fixup_-C" implies "fixup -C" and
22# "exec_cmd_with_args" add an "exec cmd with args" line.
296fa993 23#
05c95dbe
MH
24# "#" -- Add a comment line.
25#
26# ">" -- Add a blank line.
03af0870 27
29a03348 28set_fake_editor () {
a4952815
AP
29 write_script fake-editor.sh <<-\EOF
30 case "$1" in
31 */COMMIT_EDITMSG)
32 test -z "$EXPECT_HEADER_COUNT" ||
33 test "$EXPECT_HEADER_COUNT" = "$(sed -n '1s/^# This is a combination of \(.*\) commits\./\1/p' < "$1")" ||
34 exit
35 test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1"
36 test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1"
1d410cd8 37 test -z "$FAKE_MESSAGE_COPY" || cat "$1" >"$FAKE_MESSAGE_COPY"
959c0d06 38 exit
a4952815 39 ;;
29a03348 40 esac
a4952815
AP
41 test -z "$EXPECT_COUNT" ||
42 test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) ||
43 exit
44 test -z "$FAKE_LINES" && exit
45 grep -v '^#' < "$1" > "$1".tmp
46 rm -f "$1"
47 echo 'rebase -i script before editing:'
48 cat "$1".tmp
5dcdd740 49 action=\&
a4952815
AP
50 for line in $FAKE_LINES; do
51 case $line in
5dcdd740 52 pick|p|squash|s|fixup|f|edit|e|reword|r|drop|d|label|l|reset|r|merge|m)
a4952815 53 action="$line";;
b3635c15 54 exec_*|x_*|break|b)
a4952815 55 echo "$line" | sed 's/_/ /g' >> "$1";;
1d410cd8
CM
56 merge_*|fixup_*)
57 action=$(echo "$line" | sed 's/_/ /g');;
a4952815
AP
58 "#")
59 echo '# comment' >> "$1";;
60 ">")
61 echo >> "$1";;
804098bb
GR
62 bad)
63 action="badcmd";;
64 fakesha)
5dcdd740 65 test \& != "$action" || action=pick
804098bb
GR
66 echo "$action XXXXXXX False commit" >> "$1"
67 action=pick;;
a4952815 68 *)
5dcdd740
JS
69 sed -n "${line}s/^[a-z][a-z]*/$action/p" < "$1".tmp >> "$1"
70 action=\&;;
a4952815
AP
71 esac
72 done
73 echo 'rebase -i script after editing:'
74 cat "$1"
75 EOF
29a03348
JS
76
77 test_set_editor "$(pwd)/fake-editor.sh"
29a03348 78}
2aad7cac 79
22c5b136
AP
80# After set_cat_todo_editor, rebase -i will write the todo list (ignoring
81# blank lines and comments) to stdout, and exit failure (so you should run
82# it with test_must_fail). This can be used to verify the expected user
83# experience, for todo list changes that do not affect the outcome of
84# rebase; or as an extra check in addition to checking the outcome.
85
86set_cat_todo_editor () {
87 write_script fake-editor.sh <<-\EOF
88 grep "^[^#]" "$1"
89 exit 1
90 EOF
91 test_set_editor "$(pwd)/fake-editor.sh"
92}
93
2aad7cac
MZ
94# checks that the revisions in "$2" represent a linear range with the
95# subjects in "$1"
96test_linear_range () {
97 revlist_merges=$(git rev-list --merges "$2") &&
98 test -z "$revlist_merges" &&
99 expected=$1
100 set -- $(git log --reverse --format=%s "$2")
101 test "$expected" = "$*"
102}
103
104reset_rebase () {
105 test_might_fail git rebase --abort &&
106 git reset --hard &&
107 git clean -f
108}
5b5e1c7c
MZ
109
110cherry_pick () {
111 git cherry-pick -n "$2" &&
112 git commit -m "$1" &&
113 git tag "$1"
114}
115
116revert () {
117 git revert -n "$2" &&
118 git commit -m "$1" &&
119 git tag "$1"
120}
121
122make_empty () {
123 git commit --allow-empty -m "$1" &&
124 git tag "$1"
125}
6a619ca0
PW
126
127# Call this (inside test_expect_success) at the end of a test file to
128# check that no tests have changed editor related environment
129# variables or config settings
130test_editor_unchanged () {
131 # We're only interested in exported variables hence 'sh -c'
132 sh -c 'cat >actual <<-EOF
133 EDITOR=$EDITOR
134 FAKE_COMMIT_AMEND=$FAKE_COMMIT_AMEND
135 FAKE_COMMIT_MESSAGE=$FAKE_COMMIT_MESSAGE
136 FAKE_LINES=$FAKE_LINES
137 GIT_EDITOR=$GIT_EDITOR
138 GIT_SEQUENCE_EDITOR=$GIT_SEQUENCE_EDITOR
139 core.editor=$(git config core.editor)
140 sequence.editor=$(git config sequence.editor)
141 EOF'
142 cat >expect <<-\EOF
143 EDITOR=:
144 FAKE_COMMIT_AMEND=
145 FAKE_COMMIT_MESSAGE=
146 FAKE_LINES=
147 GIT_EDITOR=
148 GIT_SEQUENCE_EDITOR=
149 core.editor=
150 sequence.editor=
151 EOF
152 test_cmp expect actual
153}