test-lib.sh 8.57 KB
Newer Older
1 2 3 4 5 6 7 8
# Test framework for go-ipfs
#
# Copyright (c) 2014 Christian Couder
# MIT Licensed; see the LICENSE file in this repository.
#
# We are using sharness (https://github.com/mlafeldt/sharness)
# which was extracted from the Git test framework.

9 10 11
# use the ipfs tool to test against

# add current directory to path, for ipfs tool.
dignifiedquire's avatar
dignifiedquire committed
12 13
BIN=$(cd .. && echo `pwd`/bin)
PATH=${BIN}:${PATH}
14

15 16 17 18 19
# set sharness verbosity. we set the env var directly as
# it's too late to pass in --verbose, and --verbose is harder
# to pass through in some cases.
test "$TEST_VERBOSE" = 1 && verbose=t

20
# assert the `ipfs` we're using is the right one.
dignifiedquire's avatar
dignifiedquire committed
21
if test `which ipfs` != ${BIN}/ipfs; then
22 23 24 25 26
	echo >&2 "Cannot find the tests' local ipfs tool."
	echo >&2 "Please check test and ipfs tool installation."
	exit 1
fi

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
27 28 29 30 31

# source the common hashes first.
. lib/test-lib-hashes.sh


32
SHARNESS_LIB="lib/sharness/sharness.sh"
33

34 35 36 37 38 39 40 41
. "$SHARNESS_LIB" || {
	echo >&2 "Cannot source: $SHARNESS_LIB"
	echo >&2 "Please check Sharness installation."
	exit 1
}

# Please put go-ipfs specific shell functions below

42
# grab + output options
43
test "$TEST_NO_FUSE" != 1 && test_set_prereq FUSE
44
test "$TEST_EXPENSIVE" = 1 && test_set_prereq EXPENSIVE
45
test "$TEST_NO_DOCKER" != 1 && type docker && test_set_prereq DOCKER
46

47 48 49
TEST_OS=$(uname -s | tr [a-z] [A-Z])
test expr "$TEST_OS" : "CYGWIN_NT" >/dev/null && test_set_prereq POSIX

50 51 52 53
if test "$TEST_VERBOSE" = 1; then
	echo '# TEST_VERBOSE='"$TEST_VERBOSE"
	echo '# TEST_NO_FUSE='"$TEST_NO_FUSE"
	echo '# TEST_EXPENSIVE='"$TEST_EXPENSIVE"
54
	echo '# TEST_OS='"$TEST_OS"
55 56
fi

57 58 59
# source our generic test lib
. ../../ipfs-test-lib.sh

60 61 62
# source iptb lib
. ../lib/iptb-lib.sh

63
test_cmp_repeat_10_sec() {
Christian Couder's avatar
Christian Couder committed
64
	for i in $(test_seq 1 100)
65
	do
66
		test_cmp "$1" "$2" >/dev/null && return
67
		go-sleep 100ms
68 69 70 71
	done
	test_cmp "$1" "$2"
}

72
test_run_repeat_60_sec() {
73
	for i in $(test_seq 1 600)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
74
	do
75 76
		(test_eval_ "$1") && return
		go-sleep 100ms
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
77 78 79 80
	done
	return 1 # failed
}

81
test_wait_output_n_lines_60_sec() {
82
	for i in $(test_seq 1 600)
83
	do
84 85
		test $(cat "$1" | wc -l | tr -d " ") -ge $2 && return
		go-sleep 100ms
86
	done
87
	actual=$(cat "$1" | wc -l | tr -d " ")
88
	test_fsh "expected $2 lines of output. got $actual"
89 90
}

91
test_wait_open_tcp_port_10_sec() {
92 93
	for i in $(test_seq 1 100)
	do
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
94 95 96 97 98
		# this is not a perfect check, but it's portable.
		# cant count on ss. not installed everywhere.
		# cant count on netstat using : or . as port delim. differ across platforms.
		echo $(netstat -aln | egrep "^tcp.*LISTEN" | egrep "[.:]$1" | wc -l) -gt 0
		if [ $(netstat -aln | egrep "^tcp.*LISTEN" | egrep "[.:]$1" | wc -l) -gt 0 ]; then
99 100
			return 0
		fi
101
		go-sleep 100ms
102 103 104 105
	done
	return 1
}

106 107 108 109 110 111

# test_config_set helps us make sure _we really did set_ a config value.
# it sets it and then tests it. This became elaborate because ipfs config
# was setting really weird things and am not sure why.
test_config_set() {

Etienne Laurin's avatar
Etienne Laurin committed
112
	# grab flags (like --bool in "ipfs config --bool")
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
	test_cfg_flags="" # unset in case.
	test "$#" = 3 && { test_cfg_flags=$1; shift; }

	test_cfg_key=$1
	test_cfg_val=$2

	# when verbose, tell the user what config values are being set
	test_cfg_cmd="ipfs config $test_cfg_flags \"$test_cfg_key\" \"$test_cfg_val\""
	test "$TEST_VERBOSE" = 1 && echo "$test_cfg_cmd"

	# ok try setting the config key/val pair.
	ipfs config $test_cfg_flags "$test_cfg_key" "$test_cfg_val"
	echo "$test_cfg_val" >cfg_set_expected
	ipfs config "$test_cfg_key" >cfg_set_actual
	test_cmp cfg_set_expected cfg_set_actual
}

130
test_init_ipfs() {
131

132

133 134 135 136
	# we set the Addresses.API config variable.
	# the cli client knows to use it, so only need to set.
	# todo: in the future, use env?

137
	test_expect_success "ipfs init succeeds" '
138
		export IPFS_PATH="$(pwd)/.ipfs" &&
139
		ipfs init -b=1024 > /dev/null
140 141
	'

142
	test_expect_success "prepare config -- mounting and bootstrap rm" '
143
		mkdir mountdir ipfs ipns &&
144 145
		test_config_set Mounts.IPFS "$(pwd)/ipfs" &&
		test_config_set Mounts.IPNS "$(pwd)/ipns" &&
146 147 148 149 150
		test_config_set Addresses.API "/ip4/127.0.0.1/tcp/0" &&
		test_config_set Addresses.Gateway "/ip4/127.0.0.1/tcp/0" &&
		test_config_set --json Addresses.Swarm "[
  \"/ip4/0.0.0.0/tcp/0\"
]" &&
151
		ipfs bootstrap rm --all ||
152
		test_fsh cat "\"$IPFS_PATH/config\""
153 154
	'

155 156
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
157 158
test_config_ipfs_gateway_writable() {
	test_expect_success "prepare config -- gateway writable" '
Etienne Laurin's avatar
Etienne Laurin committed
159
		test_config_set --bool Gateway.Writable true ||
160
		test_fsh cat "\"$IPFS_PATH/config\""
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
161 162 163
	'
}

164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
test_wait_for_file() {
	loops=$1
	delay=$2
	file=$3
	fwaitc=0
	while ! test -f "$file"
	do
		if test $fwaitc -ge $loops
		then
			echo "Error: timed out waiting for file: $file"
			return 1
		fi

		go-sleep $delay
		fwaitc=`expr $fwaitc + 1`
	done
}

182 183
test_launch_ipfs_daemon() {

184
	args="$@"
185

186
	test_expect_success "'ipfs daemon' succeeds" '
187
		ipfs daemon $args >actual_daemon 2>daemon_err &
188 189
	'

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
	# wait for api file to show up
	test_expect_success "api file shows up" '
		test_wait_for_file 20 100ms "$IPFS_PATH/api"
	'

	test_expect_success "set up address variables" '
		API_MADDR=$(cat "$IPFS_PATH/api") &&
		API_ADDR=$(convert_tcp_maddr $API_MADDR) &&
		API_PORT=$(port_from_maddr $API_MADDR) &&

		GWAY_MADDR=$(sed -n "s/^Gateway (.*) server listening on //p" actual_daemon) &&
		GWAY_ADDR=$(convert_tcp_maddr $GWAY_MADDR) &&
		GWAY_PORT=$(port_from_maddr $GWAY_MADDR)
	'


	test_expect_success "set swarm address vars" '
		ipfs swarm addrs local > addrs_out &&
		SWARM_MADDR=$(grep "127.0.0.1" addrs_out) &&
		SWARM_PORT=$(port_from_maddr $SWARM_MADDR)
	'

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
212 213
	# we say the daemon is ready when the API server is ready.
	test_expect_success "'ipfs daemon' is ready" '
214
		IPFS_PID=$! &&
215
		pollEndpoint -ep=/version -host=$API_MADDR -v -tout=1s -tries=60 2>poll_apierr > poll_apiout ||
Henry's avatar
Henry committed
216
		test_fsh cat actual_daemon || test_fsh cat daemon_err || test_fsh cat poll_apierr || test_fsh cat poll_apiout
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
217
	'
218 219
}

220 221 222 223 224 225 226 227
do_umount() {
    if [ "$(uname -s)" = "Linux" ]; then
	fusermount -u "$1"
    else
	umount "$1"
    fi
}

228
test_mount_ipfs() {
229

230
	# make sure stuff is unmounted first.
231
	test_expect_success FUSE "'ipfs mount' succeeds" '
232 233
		do_umount "$(pwd)/ipfs" || true &&
		do_umount "$(pwd)/ipns" || true &&
234 235 236 237 238 239 240 241
		ipfs mount >actual
	'

	test_expect_success FUSE "'ipfs mount' output looks good" '
		echo "IPFS mounted at: $(pwd)/ipfs" >expected &&
		echo "IPNS mounted at: $(pwd)/ipns" >>expected &&
		test_cmp expected actual
	'
242 243 244 245 246 247 248 249 250

}

test_launch_ipfs_daemon_and_mount() {

	test_init_ipfs
	test_launch_ipfs_daemon
	test_mount_ipfs

251 252 253
}

test_kill_repeat_10_sec() {
254 255
	# try to shut down once + wait for graceful exit
	kill $1
Christian Couder's avatar
Christian Couder committed
256
	for i in $(test_seq 1 100)
257
	do
258
		go-sleep 100ms
259 260
		! kill -0 $1 2>/dev/null && return
	done
261 262 263

	# if not, try once more, which will skip graceful exit
	kill $1
264
	go-sleep 1s
265 266 267 268 269
	! kill -0 $1 2>/dev/null && return

	# ok, no hope. kill it to prevent it messing with other tests
	kill -9 $1 2>/dev/null
	return 1
270 271
}

272
test_kill_ipfs_daemon() {
273

274
	test_expect_success "'ipfs daemon' is still running" '
275 276 277
		kill -0 $IPFS_PID
	'

278
	test_expect_success "'ipfs daemon' can be killed" '
279
		test_kill_repeat_10_sec $IPFS_PID
280 281
	'
}
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302

test_curl_resp_http_code() {
	curl -I "$1" >curl_output || {
		echo "curl error with url: '$1'"
		echo "curl output was:"
		cat curl_output
		return 1
	}
	shift &&
	RESP=$(head -1 curl_output) &&
	while test "$#" -gt 0
	do
		expr "$RESP" : "$1" >/dev/null && return
		shift
	done
	echo "curl response didn't match!"
	echo "curl response was: '$RESP'"
	echo "curl output was:"
	cat curl_output
	return 1
}
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321

test_must_be_empty() {
	if test -s "$1"
	then
		echo "'$1' is not empty, it contains:"
		cat "$1"
		return 1
	fi
}

test_should_contain() {
	test "$#" = 2 || error "bug in the test script: not 2 parameters to test_should_contain"
	if ! grep -q "$1" "$2"
	then
		echo "'$2' does not contain '$1', it contains:"
		cat "$2"
		return 1
	fi
}
Jeromy's avatar
Jeromy committed
322 323 324 325

test_str_contains() {
	find=$1
	shift
326
	echo "$@" | egrep "\b$find\b" >/dev/null
Jeromy's avatar
Jeromy committed
327
}
rht's avatar
rht committed
328 329 330 331 332 333 334 335 336 337

disk_usage() {
    # normalize du across systems
    case $(uname -s) in
        Linux)
            DU="du -sb"
            ;;
        FreeBSD)
            DU="du -s -A -B 1"
            ;;
rht's avatar
rht committed
338 339
        Darwin | DragonFly | *)
            DU="du -s"
rht's avatar
rht committed
340 341 342 343
            ;;
    esac
        $DU "$1" | awk "{print \$1}"
}
344 345 346 347 348 349 350 351 352 353 354 355 356 357

# output a file's permission in human readable format
generic_stat() {
    # normalize stat across systems
    case $(uname -s) in
        Linux)
            _STAT="stat -c %A"
            ;;
        FreeBSD | Darwin | DragonFly)
            _STAT="stat -f %Sp"
            ;;
    esac
    $_STAT "$1"
}
358 359

test_check_peerid() {
360 361 362 363 364
	peeridlen=$(echo "$1" | tr -dC "[:alnum:]" | wc -c | tr -d " ") &&
	test "$peeridlen" = "46" || {
		echo "Bad peerid '$1' with len '$peeridlen'"
		return 1
	}
365
}
366 367 368 369 370 371 372 373

convert_tcp_maddr() {
	echo $1 | awk -F'/' '{ printf "%s:%s", $3, $5 }'
}

port_from_maddr() {
	echo $1 | awk -F'/' '{ print $NF }'
}