meowlib/endtoend_test.go

93 lines
2.7 KiB
Go
Raw Normal View History

2022-09-06 09:30:45 +02:00
package meowlib_test
2022-01-15 22:19:29 +01:00
import (
"encoding/json"
"fmt"
"io/ioutil"
"testing"
2022-09-06 09:30:45 +02:00
"forge.redroom.link/yves/meowlib"
"forge.redroom.link/yves/meowlib/client"
2022-01-15 22:19:29 +01:00
)
func TestEndToEnd(t *testing.T) {
//
// Create my own identity
//
fmt.Println("Trying to load identity from file.")
2022-09-06 09:30:45 +02:00
me, err := client.LoadIdentity("id.enc")
2022-01-15 22:19:29 +01:00
if err != nil {
fmt.Println("Failed : creating New identity...")
2022-09-06 09:30:45 +02:00
me = client.CreateIdentity("myname")
2022-01-15 22:19:29 +01:00
//
// 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-09-06 09:30:45 +02:00
var receivedContact meowlib.ContactCard
2022-09-02 12:07:21 +02:00
// Friend simulated invitation
2022-09-06 09:30:45 +02:00
firstFriendContactKp := meowlib.NewKeyPair()
firstFriendEncryptionKp := meowlib.NewKeyPair()
firstFriendLookupKp := meowlib.NewKeyPair()
2022-01-15 22:19:29 +01:00
receivedContact.Name = "I'm the friend"
receivedContact.ContactPublicKey = firstFriendContactKp.Public
receivedContact.EncryptionPublicKey = firstFriendEncryptionKp.Public
receivedContact.LookupPublicKey = firstFriendLookupKp.Public
2022-09-06 09:30:45 +02:00
receivedContact.AddUrls([]string{"http://myfriend.org/meow/"})
2022-09-02 12:07:21 +02:00
// end Friend simulated invitation
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)
2022-09-02 12:07:21 +02:00
err = me.Save("id.enc")
2022-01-15 22:19:29 +01:00
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
2022-09-02 12:07:21 +02:00
// create message to simulated friend
sentmessage := "Hello friend!"
lookupK, EncMsg, MsgSignature, Servers, err := myFirstFriend.CreateMessage([]byte(sentmessage))
if err != nil {
fmt.Println(err.Error())
}
fmt.Println(lookupK)
fmt.Println(len(Servers))
// simulated friend decoding the message
//ReadMessage
// simulates if peer can decrypt my message
//Message := "toto"
//Signature := "test"
2022-09-06 09:30:45 +02:00
decMess, err2 := meowlib.DecryptAndCheck(myFirstFriend.EncryptionKp.Private, myFirstFriend.Contact.EncryptionPublicKey, []byte(EncMsg), MsgSignature)
2022-09-02 12:07:21 +02:00
if err2 != nil {
fmt.Println(err2.Error())
}
fmt.Println(decMess)
//
}
2022-01-15 22:19:29 +01:00
}