mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 21:07:45 +08:00
- core: daemon stdout print to cmd + daemon init checks - core: fixed bug where the gateway was printed as "API" - sharness/test-lib: daemon init checks - sharness/test-lib: portable TCP port check - sharness/init: fix test bits output - sharness: use common hashes in one place. - move t0100-http-gateway -> t0111-gateway-writable - sharness: test-lib funcs for gateway config - sharness/t0111-gateway-writable: use sh funcs - sharness/t0111-gateway-writable: fixes - escape all vars (always `cmd "$VAR"` never `cmd $VAR`) - use $FILEPATH, not $path - last test seems to fail
63 lines
1.9 KiB
Bash
Executable File
63 lines
1.9 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2014 Juan Batiz-Benet
|
|
# MIT Licensed; see the LICENSE file in this repository.
|
|
#
|
|
|
|
echo "currently skipping 'Test daemon command', until we find a better way to wait."
|
|
exit 0
|
|
|
|
test_description="Test daemon command"
|
|
|
|
. lib/test-lib.sh
|
|
|
|
# NOTE: this should remove bootstrap peers (needs a flag)
|
|
test_expect_success "ipfs daemon --init launches" '
|
|
export IPFS_PATH="$(pwd)/.go-ipfs" &&
|
|
ipfs daemon --init 2>&1 >actual_init &
|
|
'
|
|
|
|
# this is because we have no way of knowing the daemon is done except look at
|
|
# output. but we can't yet compare it because we dont have the peer ID (config)
|
|
test_expect_success "initialization ended" '
|
|
IPFS_PID=$! &&
|
|
test_wait_output_n_lines_60_sec actual_init 6
|
|
'
|
|
|
|
# this is lifted straight from t0020-init.sh
|
|
test_expect_success "ipfs peer id looks good" '
|
|
PEERID=$(ipfs config Identity.PeerID) &&
|
|
echo $PEERID | tr -dC "[:alnum:]" | wc -c | tr -d " " >actual &&
|
|
echo "46" >expected &&
|
|
test_cmp_repeat_10_sec expected actual
|
|
'
|
|
|
|
# note this is almost the same as t0020-init.sh "ipfs init output looks good"
|
|
test_expect_success "ipfs daemon output looks good" '
|
|
STARTFILE="ipfs cat /ipfs/$HASH_WELCOME_DOCS/readme" &&
|
|
echo "initializing ipfs node at $IPFS_PATH" >expected &&
|
|
echo "generating 4096-bit RSA keypair...done" >>expected &&
|
|
echo "peer identity: $PEERID" >>expected &&
|
|
echo "to get started, enter:" >>expected &&
|
|
printf "\\n\\t$STARTFILE\\n\\n" >>expected &&
|
|
echo "daemon listening on /ip4/127.0.0.1/tcp/5001" >>expected &&
|
|
test_cmp_repeat_10_sec expected actual_init
|
|
'
|
|
|
|
test_expect_success ".go-ipfs/ has been created" '
|
|
test -d ".go-ipfs" &&
|
|
test -f ".go-ipfs/config" &&
|
|
test -d ".go-ipfs/datastore" ||
|
|
fsh ls .go-ipfs
|
|
'
|
|
|
|
test_expect_success "daemon is still running" '
|
|
kill -0 $IPFS_PID
|
|
'
|
|
|
|
test_expect_success "'ipfs daemon' can be killed" '
|
|
test_kill_repeat_10_sec $IPFS_PID
|
|
'
|
|
|
|
test_done
|