File tree 5 files changed +112
-0
lines changed
5 files changed +112
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Run tests
2
+ #
3
+ # Copyright (c) 2014 Christian Couder
4
+ # MIT Licensed; see the LICENSE file in this repository.
5
+ #
6
+
7
+ T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-* .sh) )
8
+
9
+ all : clean $(T ) aggregate
10
+
11
+ clean :
12
+ -rm -r test-results
13
+
14
+ $(T ) :
15
+ @echo " *** $@ ***" ; ./$@
16
+
17
+ aggregate :
18
+ ./test-aggregate-results.sh
19
+
20
+ .PHONY : all clean $(T ) aggregate
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ #
3
+ # Copyright (c) 2014 Christian Couder
4
+ # MIT Licensed; see the LICENSE file in this repository.
5
+ #
6
+
7
+ test_description=" Test installation and some basic commands"
8
+
9
+ . ./test-lib.sh
10
+
11
+ test_expect_success " current dir is writable" '
12
+ echo "It works!" >test.txt
13
+ '
14
+
15
+ test_expect_success " ipfs version succeeds" '
16
+ ipfs version >version.txt
17
+ '
18
+
19
+ test_expect_success " ipfs version output looks good" '
20
+ cat version.txt | egrep "^ipfs version [0-9]+\.[0-9]+\.[0-9]"
21
+ '
22
+
23
+ test_expect_success " ipfs help succeeds" '
24
+ ipfs help >help.txt
25
+ '
26
+
27
+ test_expect_success " ipfs help output looks good" '
28
+ cat help.txt | egrep "^Usage: +ipfs"
29
+ '
30
+
31
+ test_done
32
+
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ #
3
+ # Script to aggregate results using Sharness
4
+ #
5
+ # Copyright (c) 2014 Christian Couder
6
+ # MIT Licensed; see the LICENSE file in this repository.
7
+ #
8
+
9
+ . ./test-sharness-config.sh
10
+
11
+ SHARNESS_AGGREGATE=" $SHARNESS_DIRECTORY /aggregate-results.sh"
12
+
13
+ test -f " $SHARNESS_AGGREGATE " || {
14
+ echo >&2 " Cannot find: $SHARNESS_AGGREGATE "
15
+ echo >&2 " Please check Sharness installation."
16
+ exit 1
17
+ }
18
+
19
+ ls test-results/t* -* .sh.* .counts | " $SHARNESS_AGGREGATE "
Original file line number Diff line number Diff line change
1
+ # Test framework for go-ipfs
2
+ #
3
+ # Copyright (c) 2014 Christian Couder
4
+ # MIT Licensed; see the LICENSE file in this repository.
5
+ #
6
+ # We are using sharness (https://github.com/mlafeldt/sharness)
7
+ # which was extracted from the Git test framework.
8
+
9
+ . ./test-sharness-config.sh
10
+
11
+ . " $SHARNESS_LIB " || {
12
+ echo >&2 " Cannot source: $SHARNESS_LIB "
13
+ echo >&2 " Please check Sharness installation."
14
+ exit 1
15
+ }
16
+
17
+ # Please put go-ipfs specific shell functions below
18
+
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2014 Christian Couder
2
+ # MIT Licensed; see the LICENSE file in this repository.
3
+ #
4
+ # We are using sharness (https://github.com/mlafeldt/sharness)
5
+ # which was extracted from the Git test framework.
6
+
7
+ # You need either sharness to be installed system-wide or
8
+ # to set the SHARNESS_DIRECTORY environment variable properly.
9
+
10
+ if test -z " $SHARNESS_DIRECTORY "
11
+ then
12
+ SHARNESS_DIRECTORY=/usr/local/share/sharness
13
+ fi
14
+
15
+ SHARNESS_LIB=" $SHARNESS_DIRECTORY /sharness.sh"
16
+
17
+ test -f " $SHARNESS_LIB " || {
18
+ echo >&2 " Cannot find sharness.sh in: $SHARNESS_DIRECTORY "
19
+ echo >&2 " Please install Sharness system-wide or set the"
20
+ echo >&2 " SHARNESS_DIRECTORY environment variable."
21
+ echo >&2 " See: https://github.com/mlafeldt/sharness"
22
+ exit 1
23
+ }
You can’t perform that action at this time.
0 commit comments