meowlib/client/peer_test.go
ycc 3467ea15d9
Some checks failed
continuous-integration/drone/push Build is failing
Change Peers to * Peers in identity to retrieve pointer to the real peer
2024-03-02 10:07:59 +01:00

22 lines
428 B
Go

package client
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetFromPublicKey(t *testing.T) {
id := CreateIdentity("test")
id.Save()
for i := 1; i < 10; i++ {
var p Peer
p.Name = "test" + strconv.Itoa(i)
p.ContactPublicKey = "stringToFind" + strconv.Itoa(i)
id.Peers = append(id.Peers, &p)
}
p5 := id.Peers.GetFromPublicKey("stringToFind5")
assert.Equal(t, p5.Name, "test5")
}