-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add sharness test for reading ADLs with FUSE
- Loading branch information
Showing
2 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright (c) 2021 Protocol Labs | ||
# MIT Licensed; see the LICENSE file in this repository. | ||
# | ||
|
||
test_description="Test mount command with sharding enabled" | ||
|
||
. lib/test-lib.sh | ||
|
||
if ! test_have_prereq FUSE; then | ||
skip_all='skipping mount sharded tests, fuse not available' | ||
test_done | ||
fi | ||
|
||
test_init_ipfs | ||
|
||
test_expect_success 'enable sharding' ' | ||
ipfs config --json Experimental.ShardingEnabled true | ||
' | ||
|
||
test_launch_ipfs_daemon | ||
test_mount_ipfs | ||
|
||
# we're testing nested subdirs which ensures that IPLD ADLs work | ||
test_expect_success 'setup test data' ' | ||
mkdir testdata && | ||
echo a > testdata/a && | ||
mkdir testdata/subdir && | ||
echo b > testdata/subdir/b | ||
' | ||
|
||
HASH=QmY59Ufw8zA2BxGPMTcfXg86JVed81Qbxeq5rDkHWSLN1m | ||
|
||
test_expect_success 'can add the data' ' | ||
echo $HASH > expected_hash && | ||
ipfs add -r -Q testdata > actual_hash && | ||
test_cmp expected_hash actual_hash | ||
' | ||
|
||
test_expect_success 'can read the data' ' | ||
echo a > expected_a && | ||
cat "ipfs/$HASH/a" > actual_a && | ||
test_cmp expected_a actual_a && | ||
echo b > expected_b && | ||
cat "ipfs/$HASH/subdir/b" > actual_b && | ||
test_cmp expected_b actual_b | ||
' | ||
|
||
test_expect_success 'can list directories' ' | ||
printf "a\nsubdir\n" > expected_ls && | ||
ls -1 "ipfs/$HASH" > actual_ls && | ||
test_cmp expected_ls actual_ls && | ||
printf "b\n" > expected_ls_subdir && | ||
ls -1 "ipfs/$HASH/subdir" > actual_ls_subdir && | ||
test_cmp expected_ls_subdir actual_ls_subdir | ||
' | ||
|
||
test_expect_success "unmount" ' | ||
do_umount "$(pwd)/ipfs" && | ||
do_umount "$(pwd)/ipns" | ||
' | ||
|
||
test_expect_success 'cleanup' 'rmdir ipfs ipns' | ||
|
||
test_kill_ipfs_daemon | ||
|
||
test_done |