提交 c9ffe1a2 作者: Juan Batiz-Benet

tests: use `ipfs` but with the right tool

Addresses comments in: https://github.com/jbenet/go-ipfs/commit/7e14f1737d146cb45f3d788f229dae9fd964e524
上级 7ab38696
......@@ -13,7 +13,7 @@ test_expect_success "current dir is writable" '
'
test_expect_success "ipfs version succeeds" '
$ipfs version >version.txt
ipfs version >version.txt
'
test_expect_success "ipfs version output looks good" '
......@@ -21,7 +21,7 @@ test_expect_success "ipfs version output looks good" '
'
test_expect_success "ipfs help succeeds" '
$ipfs help >help.txt
ipfs help >help.txt
'
test_expect_success "ipfs help output looks good" '
......
......@@ -10,7 +10,7 @@ test_description="Test init command"
test_expect_success "ipfs init succeeds" '
export IPFS_DIR="$(pwd)/.go-ipfs" &&
$ipfs init
ipfs init
'
test_expect_success ".go-ipfs/ has been created" '
......@@ -21,7 +21,7 @@ test_expect_success ".go-ipfs/ has been created" '
test_expect_success "ipfs config succeeds" '
echo leveldb >expected &&
$ipfs config Datastore.Type >actual &&
ipfs config Datastore.Type >actual &&
test_cmp expected actual
'
......
......@@ -12,7 +12,7 @@ test_launch_ipfs_mount
test_expect_success "ipfs add succeeds" '
echo "Hello Worlds!" >mountdir/hello.txt &&
$ipfs add mountdir/hello.txt >actual
ipfs add mountdir/hello.txt >actual
'
test_expect_success "ipfs add output looks good" '
......@@ -22,7 +22,7 @@ test_expect_success "ipfs add output looks good" '
'
test_expect_success "ipfs cat succeeds" '
$ipfs cat $HASH >actual
ipfs cat $HASH >actual
'
test_expect_success "ipfs cat output looks good" '
......@@ -53,7 +53,7 @@ test_expect_success "sha1 of the file looks ok" '
'
test_expect_success "ipfs add bigfile succeeds" '
$ipfs add mountdir/bigfile >actual
ipfs add mountdir/bigfile >actual
'
test_expect_success "ipfs add bigfile output looks good" '
......@@ -63,7 +63,7 @@ test_expect_success "ipfs add bigfile output looks good" '
'
test_expect_success "ipfs cat succeeds" '
$ipfs cat $HASH | shasum >sha1_actual
ipfs cat $HASH | shasum >sha1_actual
'
test_expect_success "ipfs cat output looks good" '
......
......@@ -6,11 +6,19 @@
# We are using sharness (https://github.com/mlafeldt/sharness)
# which was extracted from the Git test framework.
SHARNESS_LIB="./sharness.sh"
# use the ipfs tool to test against
# add current directory to path, for ipfs tool.
PATH=$(pwd):${PATH}
# the ipfs tool to test against
# ../ipfs because it will be one level above during test exec
ipfs="../ipfs"
# assert the `ipfs` we're using is the right one.
if test `which ipfs` != $(pwd)/ipfs; then
echo >&2 "Cannot find the tests' local ipfs tool."
echo >&2 "Please check test and ipfs tool installation."
exit 1
fi
SHARNESS_LIB="./sharness.sh"
. "$SHARNESS_LIB" || {
echo >&2 "Cannot source: $SHARNESS_LIB"
......@@ -35,17 +43,17 @@ test_launch_ipfs_mount() {
test_expect_success "ipfs init succeeds" '
export IPFS_DIR="$(pwd)/.go-ipfs" &&
$ipfs init -b=2048
ipfs init -b=2048
'
test_expect_success "prepare config" '
mkdir mountdir ipfs ipns &&
$ipfs config Mounts.IPFS "$(pwd)/ipfs" &&
$ipfs config Mounts.IPNS "$(pwd)/ipns"
ipfs config Mounts.IPFS "$(pwd)/ipfs" &&
ipfs config Mounts.IPNS "$(pwd)/ipns"
'
test_expect_success FUSE "ipfs mount succeeds" '
$ipfs mount mountdir >actual &
ipfs mount mountdir >actual &
'
test_expect_success FUSE "ipfs mount output looks good" '
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论