meowlib/endtoend_test.go

73 lines
2.1 KiB
Go
Raw Normal View History

2022-01-15 22:19:29 +01:00
package meowlib
import (
"encoding/json"
"fmt"
"io/ioutil"
"testing"
)
func TestEndToEnd(t *testing.T) {
//
// Create my own identity
//
fmt.Println("Trying to load identity from file.")
me, err := LoadIdentity("test.id")
if err != nil {
fmt.Println("Failed : creating New identity...")
me = CreateIdentity("myname")
//
// define my preferences (servers)
//
me.MessageServers.Name = "Message Servers"
me.MessageServers.AddUrls([]string{"http://127.0.0.1/meow/", "mqtt://127.0.0.1", "meow://127.0.0.1"})
//
// create an invitation for a friend, I want him/her to know me as Bender
//
fmt.Println("Creating an invitation for the first friend...")
myFirstFriend, invitation := me.InvitePeer("Bender", "myfirstfriend", []int{1, 2})
// print my invitation
a, _ := json.Marshal(invitation)
fmt.Println(string(a))
// TODO : Convert invitation to QR Code
2022-03-01 10:37:11 +01:00
invitation.WritePng("invitation.png")
2022-01-15 22:19:29 +01:00
//
// Simulate peer invitation response : generate the friend's keypair
fmt.Println("Simulating first friend answer...")
2022-08-29 15:40:29 +02:00
var receivedContact ContactCard
2022-01-15 22:19:29 +01:00
firstFriendContactKp := NewKeyPair()
firstFriendEncryptionKp := NewKeyPair()
firstFriendLookupKp := NewKeyPair()
receivedContact.Name = "I'm the friend"
receivedContact.ContactPublicKey = firstFriendContactKp.Public
receivedContact.EncryptionPublicKey = firstFriendEncryptionKp.Public
receivedContact.LookupPublicKey = firstFriendLookupKp.Public
var friendsMessageServers ServerList
friendsMessageServers.AddUrls([]string{"http://myfriend.org/meow/"})
for _, srv := range friendsMessageServers.Servers {
receivedContact.PullServers = append(receivedContact.PullServers, srv.ServerData)
}
2022-08-29 15:40:29 +02:00
// End simulating contact invitation response
2022-01-15 22:19:29 +01:00
//
//
// Finalize the contact with the invitation response
//
me.FinalizeInvitation(myFirstFriend, &receivedContact)
err = me.Save("test.id")
if err != nil {
fmt.Println(err.Error())
}
a, _ = json.Marshal(me)
ioutil.WriteFile("id.json", a, 0644)
fmt.Println(string(a))
}
2022-03-01 10:37:11 +01:00
// go me.CheckMessages()
2022-01-15 22:19:29 +01:00
//myFirstFriend.SetComMethod()
//msg := myFirstFriend.SendText()
}