This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use separate namespace for IPNS persistent cache
Our IPNS package implements a separate persistent cache for IPNS records. The format of the value stored in the database is different from the format used by the DHT package. This commit changes the database key used by the persistent cache to make sure it does not collide with the key used by the DHT package which might otherwise cause records to be overriden with a different format. closes #1612
- Loading branch information
Showing
2 changed files
with
113 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package ipfs | ||
|
||
import ( | ||
"github.com/ipfs/go-ipfs/core/mock" | ||
"github.com/ipfs/go-ipfs/namesys" | ||
ipath "gx/ipfs/QmQAgv6Gaoe2tQpcabqwKXKChp2MZ7i3UXv9DqTTaxCaTR/go-path" | ||
ipnspb "gx/ipfs/QmUwMnKKjH3JwGKNVZ3TcP37W93xzqNA4ECFFiMo6sXkkc/go-ipns/pb" | ||
"gx/ipfs/QmYVXrKrKHDC9FobgmcmshCDyWwdrfwfanNQN4oxJ9Fk3h/go-libp2p-peer" | ||
"gx/ipfs/QmddjPSGZb3ieihSseFeCfVRpZzcqczPNsD2DvarSwnjJB/gogo-protobuf/proto" | ||
"testing" | ||
) | ||
|
||
// TestDatastoreCaching tests that the data can be inserted and retrieved from the | ||
// database using the IPNS namespace as well as our persistent cache namespace and | ||
// that the two do not conflict with each other. | ||
func TestDatastoreCaching(t *testing.T) { | ||
n, err := coremock.NewMockNode() | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
var ( | ||
pth = "/ipfs/QmYVXrKrKHDC9FobgmcmshCDyWwdrfwfanNQN4oxJ9Fk3h" | ||
rec = &ipnspb.IpnsEntry{Value: []byte(pth), Signature: []byte{}} | ||
peerIDStr = "QmddjPSGZb3ieihSseFeCfVRpZzcqczPNsD2DvarSwnjJB" | ||
) | ||
|
||
peerID, err := peer.IDB58Decode(peerIDStr) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// First put to db using the IPNS namespace. | ||
serializedRecord, err := proto.Marshal(rec) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
if err := n.Repo.Datastore().Put(namesys.IpnsDsKey(peerID), serializedRecord); err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
retreivedPath, err := getFromDatastore(n.Repo.Datastore(), peerID) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
|
||
if retreivedPath.String() != pth { | ||
t.Errorf("Retreived incorrect value. Expected %s, got %s", pth, retreivedPath.String()) | ||
} | ||
|
||
// Next put to the database using the persistent cache namespace. | ||
if err := putToDatastoreCache(n.Repo.Datastore(), peerID, ipath.Path(pth)); err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
retreivedPath, err = getFromDatastore(n.Repo.Datastore(), peerID) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
|
||
if retreivedPath.String() != pth { | ||
t.Errorf("Retreived incorrect value. Expected %s, got %s", pth, retreivedPath.String()) | ||
} | ||
|
||
// Test the persistent cache put did not override the IPNS namespace. | ||
ival, err := n.Repo.Datastore().Get(namesys.IpnsDsKey(peerID)) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
rec2 := new(ipnspb.IpnsEntry) | ||
err = proto.Unmarshal(ival, rec2) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
if string(rec2.Value) != pth { | ||
t.Errorf("Retreived incorrect value. Expected %s, got %s", pth, string(rec2.Value)) | ||
} | ||
} |