cwtch/peer/cwtch_peer_test.go

26 lines
736 B
Go
Raw Normal View History

package peer
2018-03-09 20:44:13 +00:00
import (
"testing"
)
func TestCwtchPeerGenerate(t *testing.T) {
alice := NewCwtchPeer("alice")
alice.Save("./test_profile")
aliceLoaded, err := LoadCwtchPeer("./test_profile")
if err != nil || aliceLoaded.Profile.Name != "alice" {
t.Errorf("something went wrong saving and loading profiles %v %v", err, aliceLoaded)
2018-03-09 20:44:13 +00:00
}
groupID, _, _ := aliceLoaded.Profile.StartGroup("test.server")
exportedGroup, _ := aliceLoaded.ExportGroup(groupID)
t.Logf("Exported Group: %v from %v", exportedGroup, aliceLoaded.Profile.Onion)
importedGroupID, err := alice.ImportGroup(exportedGroup)
group := alice.Profile.GetGroupByGroupID(importedGroupID)
t.Logf("Imported Group: %v, err := %v %v", group, err, importedGroupID)
2018-03-09 20:44:13 +00:00
}