#!/bin/sh # # Copyright (c) 2015 Jeromy Johnson # MIT Licensed; see the LICENSE file in this repository. # test_description="test bitswap commands" . lib/test-lib.sh test_init_ipfs test_launch_ipfs_daemon test_expect_success "'ipfs bitswap stat' succeeds" ' ipfs bitswap stat >stat_out ' test_expect_success "'ipfs bitswap stat' output looks good" ' cat >expected <wantlist_p_out ' test_expect_success "'ipfs bitswap wantlist -p' output looks good" ' test_must_be_empty wantlist_p_out ' test_expect_success "hash was removed from wantlist" ' ipfs bitswap wantlist > wantlist_out && test_must_be_empty wantlist_out ' test_expect_success "'ipfs bitswap stat' succeeds" ' ipfs bitswap stat >stat_out ' test_expect_success "'ipfs bitswap stat' output looks good" ' cat >expected <wantlist_p_out ' test_expect_success "'ipfs bitswap wantlist -p' output looks good" ' test_cmp wantlist_out wantlist_p_out ' test_kill_ipfs_daemon test_done