1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-14 02:41:13 +08:00

sharness: remove xt0130-multinode.sh

xt0130 test is already in as t0130.

License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
This commit is contained in:
Christian Couder
2016-02-19 03:30:45 +01:00
parent fa57fb7349
commit ad71b15e36

@ -1,40 +0,0 @@
#!/bin/sh
#
# Copyright (c) 2015 Jeromy Johnson
# MIT Licensed; see the LICENSE file in this repository.
#
test_description="Test multiple ipfs nodes"
. lib/test-lib.sh
export IPTB_ROOT="`pwd`/.iptb"
test_expect_success "set up a few nodes" '
IPTB_PORT=$((RANDOM % 10000 + 22000)) &&
iptb -n=3 "-p=$IPTB_PORT" init &&
iptb -wait start
'
test_expect_success "add a file on node1" '
export IPFS_PATH="$IPTB_ROOT/1" &&
random 1000000 > filea &&
FILEA_HASH=$(ipfs add -q filea)
'
test_expect_success "cat that file on node2" '
export IPFS_PATH="$IPTB_ROOT/2" &&
ipfs cat $FILEA_HASH >fileb
'
test_expect_success "verify files match" '
multihash filea > expected1 &&
multihash fileb > actual1 &&
test_cmp expected1 actual1
'
test_expect_success "shut down nodes" '
iptb stop
'
test_done