mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 11:27:42 +08:00
48 lines
961 B
Bash
48 lines
961 B
Bash
# iptb test framework
|
|
#
|
|
# Copyright (c) 2014, 2016 Jeromy Johnson, Christian Couder
|
|
# MIT Licensed; see the LICENSE file in this repository.
|
|
|
|
export IPTB_ROOT="$(pwd)/.iptb"
|
|
|
|
ipfsi() {
|
|
dir="$1"
|
|
shift
|
|
IPFS_PATH="$IPTB_ROOT/$dir" ipfs "$@"
|
|
}
|
|
|
|
check_has_connection() {
|
|
node="$1"
|
|
ipfsi "$node" swarm peers >"swarm_peers_$node" &&
|
|
grep "ipfs" "swarm_peers_$node" >/dev/null
|
|
}
|
|
|
|
startup_cluster() {
|
|
num_nodes="$1"
|
|
shift
|
|
other_args="$@"
|
|
bound=$(expr "$num_nodes" - 1)
|
|
|
|
if test -n "$other_args"; then
|
|
test_expect_success "start up nodes with additional args" '
|
|
iptb start --args $other_args
|
|
'
|
|
else
|
|
test_expect_success "start up nodes" '
|
|
iptb start
|
|
'
|
|
fi
|
|
|
|
test_expect_success "connect nodes to eachother" '
|
|
iptb connect [1-$bound] 0
|
|
'
|
|
|
|
for i in $(test_seq 0 "$bound")
|
|
do
|
|
test_expect_success "node $i is connected" '
|
|
check_has_connection "$i" ||
|
|
test_fsh cat "swarm_peers_$i"
|
|
'
|
|
done
|
|
}
|