Git挂钩仅在提交时失败

问题描述 投票:0回答:1

Executive summary

我有一个带有自定义预提交钩子的项目,其中一棵树看起来像这样:

parent
|
- .git - hooks - pre-commit
|
- smoketests - argument_tests.sh
|
- bitshuffle.py

当我运行.git / hooks / pre-commit时,它运行完美,每次测试都通过。但是,当我运行git commit时,一些测试失败了。我的索引与我的工作树完全相同。我不知道出了什么问题。

谢谢你的帮助。

Details

状态

$ git status
On branch staging
Your branch is up-to-date with 'origin/staging'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)

        new file:   smoketest/argument_tests.sh
        renamed:    smoketest/do_test.sh -> smoketest/library_tests.sh

追溯

$ git commit
Running tests...

When run with no args, prints help... PASSED
When run with '-h', prints help... PASSED
When given bad compresstype, prints help... PASSED
When given bad editor, prints editor not found... FAILED

'Editor /nonexistent not found' does not match logfile

        Nothing to decode or nothing matched spec. Aborting.


When given bad input, prints file not found... PASSED

1 tests failed.

单独运行预提交

$ .git/hooks/pre-commit
Running tests...

When run with no args, prints help... PASSED
When run with '-h', prints help... PASSED
When given bad compresstype, prints help... PASSED
When given bad editor, prints editor not found... PASSED
When given bad input, prints file not found... PASSED

0 tests failed.

预提交的内容

#!/bin/sh

## custom
# smoketesting
if ! smoketest/library_tests.sh; then exit 1; fi;
# arguments
if ! smoketest/argument_tests.sh; then exit 1; fi;
# codestyle 
if ! pycodestyle *.py; then exit 1; fi;

DIFF

$ git diff --cached
diff --git smoketest/argument_tests.sh smoketest/argument_tests.sh
new file mode 100755
index 0000000..0133819
--- /dev/null
+++ smoketest/argument_tests.sh
@@ -0,0 +1,90 @@
+#!/bin/bash
+
+# .SHELLDOC
+
+# Smoketests for argument handling. Exit code is # of failed tests.
+# Heavily influenced by existing smoketests.
+
+# .ENDOC
+
+TEST_DIR="`readlink -e $(dirname "$0")`"
+BITSHUFFLE="$TEST_DIR/../bitshuffle.py"
+TESTS_FAILED=0
+
+if [ ! -x "$BITSHUFFLE" ] ; then
+        echo "FATAL: '$BITSHUFFLE' does not exist"
+        exit 9999
+fi
+
+# Note: of necessity, the following can only test non-interactive
+# situations. Interactive tests are not a priority at the current moment.
+
+print_log_file() {
+# takes 1 parameter, a text file
+        while read -r line; do
+                printf "\t$line\n"
+        done < $1
+        printf "\n\n"
+}
+
+
+expect_usage_error () {
+        LOG_FILE="/tmp/`uuidgen`"
+        $BITSHUFFLE $@ > "$LOG_FILE" 2>&1
+        if grep -q "usage: .*" $LOG_FILE; then
+                echo "PASSED"
+        else
+                printf "FAILED\n\n"
+
+                printf "\t'usage: .*' does not match logfile\n\n" 
+                print_log_file $LOG_FILE
+                TESTS_FAILED=`echo "$TESTS_FAILED + 1" | bc`
+                rm -f $LOG_FILE
+        fi
+}
+
+printf "Running tests...\n\n"
+
+printf "When run with no args, prints help... "
+expect_usage_error
+
+printf "When run with '-h', prints help... "
+expect_usage_error -h
+
+printf "When given bad compresstype, prints help... "
+expect_usage_error -t gmander
+
+printf "When given bad editor, prints editor not found... "
+LOG_FILE="/tmp/`uuidgen`"
+$BITSHUFFLE --editor /nonexistent > "$LOG_FILE" 2>&1
+if [ "`cat $LOG_FILE`" = "Editor /nonexistent not found" ]; then
+        echo "PASSED"
+else
+        printf "FAILED\n\n"
+
+        printf "'Editor /nonexistent not found' does not match logfile\n\n"
+
+        print_log_file $LOG_FILE
+        TESTS_FAILED="`echo $TESTS_FAILED + 1 | bc`"
+        rm -f $LOG_FILE
+fi
+
+LOG_FILE="/tmp/`uuidgen`"
+printf "When given bad input, prints file not found... "
+$BITSHUFFLE --input /nonexistent/nope > "$LOG_FILE" 2>&1
+if [ "`cat $LOG_FILE`" = "Error: Input file not found" ]; then
+    echo "PASSED"
+else
+    printf "FAILED\n\n"
+
+    printf "\t'Error: Input file not found' \
+             does not match logfile\n\n"
+
+    print_log_file $LOG_FILE
+    TESTS_FAILED=`echo $TESTS_FAILED + 1 | bc`
+    rm -f $LOG_FILE
+fi
+
+printf "\n$TESTS_FAILED tests failed.\n"
+exit $TESTS_FAILED
+
diff --git smoketest/do_test.sh smoketest/library_tests.sh
similarity index 100%
rename from smoketest/do_test.sh
rename to smoketest/library_tests.sh
git githooks pre-commit
1个回答
1
投票

弄清楚了。如果终端是交互式的,那么程序的反应是不同的。从脚本运行测试使终端非交互式。

罪魁祸首:

        if stdin.isatty() and args.input == '/dev/stdin':
        # ask the user to paste the packets into $VISUAL
            is_tmp = True
            if not args.editor:
                args.editor = find_editor()

            if not check_for_file(args.editor):
                print("Editor %s not found" % args.editor)
                sys.exit(4)

如果stdin.isatty()返回false,则该位将永远不会运行。

© www.soinside.com 2019 - 2024. All rights reserved.