Skip to content

Commit c2692f3

Browse files
committed
Merge pull request #206 from chriscool/sharness3
Use Sharness as our shell test framework, version 3
2 parents 40ab188 + aeb019f commit c2692f3

5 files changed

+112
-0
lines changed

test/Makefile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

test/t0010-basic-commands.sh

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+

test/test-aggregate-results.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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"

test/test-lib.sh

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+

test/test-sharness-config.sh

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
}

0 commit comments

Comments
 (0)