1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-10-24 15:12:55 +08:00
Files
kubo/test/sharness/xt0101-iptb-name.sh
Juan Batiz-Benet 0f7f8ead04 disable constantly failing iptb tests
the iptb tests are failing all the time on travis. It's possible
this is still a port problem, and it may be something else.
Regardless, right now they're just adding noise.
2015-05-31 16:05:31 -07:00

51 lines
1.0 KiB
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 2014 Jeromy Johnson
# MIT Licensed; see the LICENSE file in this repository.
#
test_description="Test ipfs repo operations"
. lib/test-lib.sh
export IPTB_ROOT="`pwd`/.iptb"
test_expect_success "set up an iptb cluster" '
IPTB_PORT=$((RANDOM % 10000 + 22000)) &&
iptb -n=4 "-p=$IPTB_PORT" init &&
iptb -wait start
'
test_expect_success "add an obect on one node" '
export IPFS_PATH="$IPTB_ROOT/1" &&
echo "ipns is super fun" > file &&
HASH_FILE=`ipfs add -q file`
'
test_expect_success "publish that object as an ipns entry" '
ipfs name publish $HASH_FILE
'
test_expect_success "add an entry on another node pointing to that one" '
export IPFS_PATH="$IPTB_ROOT/2" &&
NODE1_ID=`iptb get id 1` &&
ipfs name publish /ipns/$NODE1_ID
'
test_expect_success "cat that entry on a third node" '
export IPFS_PATH="$IPTB_ROOT/3" &&
NODE2_ID=`iptb get id 2` &&
ipfs cat /ipns/$NODE2_ID > output
'
test_expect_success "ensure output was the same" '
test_cmp file output
'
test_expect_success "shut down iptb" '
iptb stop
'
test_done