-
-
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.
Merge pull request #2872 from ipfs-filestore/best-effort-pins
Add Files API root as best-effort pin
- Loading branch information
Showing
7 changed files
with
93 additions
and
17 deletions.
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
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
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
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,45 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright (c) 2016 Kevin Atkinson | ||
# MIT Licensed; see the LICENSE file in this repository. | ||
# | ||
|
||
test_description="test how the unix files api interacts with the gc" | ||
|
||
. lib/test-lib.sh | ||
|
||
test_init_ipfs | ||
|
||
test_expect_success "object not removed after gc" ' | ||
echo "hello world" | ipfs files write --create /hello.txt && | ||
ipfs repo gc && | ||
ipfs cat QmVib14uvPnCP73XaCDpwugRuwfTsVbGyWbatHAmLSdZUS | ||
' | ||
|
||
test_expect_success "/hello.txt still accessible after gc" ' | ||
ipfs files read /hello.txt | ||
' | ||
|
||
ADIR_HASH=QmbCgoMYVuZq8m1vK31JQx9DorwQdLMF1M3sJ7kygLLqnW | ||
FILE1_HASH=QmX4eaSJz39mNhdu5ACUwTDpyA6y24HmrQNnAape6u3buS | ||
|
||
test_expect_success "gc okay after adding incomplete node -- prep" ' | ||
ipfs files mkdir /adir && | ||
echo "file1" | ipfs files write --create /adir/file1 && | ||
echo "file2" | ipfs files write --create /adir/file2 && | ||
ipfs cat $FILE1_HASH && | ||
ipfs pin add --recursive=false $ADIR_HASH && | ||
ipfs files rm -r /adir && | ||
ipfs repo gc && # will remove /adir/file1 and /adir/file2 but not /adir | ||
test_must_fail ipfs cat $FILE1_HASH && | ||
ipfs files cp /ipfs/$ADIR_HASH /adir && | ||
ipfs pin rm $ADIR_HASH | ||
' | ||
|
||
test_expect_success "gc okay after adding incomplete node" ' | ||
ipfs refs $ADIR_HASH && | ||
ipfs repo gc && | ||
ipfs refs $ADIR_HASH | ||
' | ||
|
||
test_done |