cwtch/protocol/connections/peerserverconnection_test.go

106 lines
3.1 KiB
Go
Raw Normal View History

package connections
import (
"cwtch.im/cwtch/event"
2018-05-28 18:05:06 +00:00
"cwtch.im/cwtch/protocol"
"cwtch.im/cwtch/server/fetch"
"cwtch.im/cwtch/server/send"
2019-08-08 18:39:38 +00:00
"cwtch.im/tapir/primitives"
2018-06-23 16:15:36 +00:00
"git.openprivacy.ca/openprivacy/libricochet-go"
"git.openprivacy.ca/openprivacy/libricochet-go/channels"
"git.openprivacy.ca/openprivacy/libricochet-go/connection"
"git.openprivacy.ca/openprivacy/libricochet-go/connectivity"
2019-08-08 18:39:38 +00:00
identityOld "git.openprivacy.ca/openprivacy/libricochet-go/identity"
2018-10-05 03:18:34 +00:00
"golang.org/x/crypto/ed25519"
"net"
"testing"
"time"
)
2018-10-05 03:18:34 +00:00
func ServerAuthValid(hostname string, key ed25519.PublicKey) (allowed, known bool) {
return true, true
}
type TestServer struct {
2018-03-10 22:05:48 +00:00
connection.AutoConnectionHandler
Received chan bool
}
func (ts *TestServer) HandleGroupMessage(gm *protocol.GroupMessage) {
ts.Received <- true
2018-03-10 22:05:48 +00:00
}
func (ts *TestServer) HandleFetchRequest() []*protocol.GroupMessage {
return []*protocol.GroupMessage{{Ciphertext: []byte("hello"), Signature: []byte{}, Spamguard: []byte{}}, {Ciphertext: []byte("hello"), Signature: []byte{}, Spamguard: []byte{}}}
}
2019-08-08 18:39:38 +00:00
func runtestserver(t *testing.T, ts *TestServer, priv ed25519.PrivateKey, identity primitives.Identity, listenChan chan bool) {
ln, _ := net.Listen("tcp", "127.0.0.1:5451")
listenChan <- true
conn, _ := ln.Accept()
defer conn.Close()
rc, err := goricochet.NegotiateVersionInbound(conn)
if err != nil {
t.Errorf("Negotiate Version Error: %v", err)
}
2019-08-08 18:39:38 +00:00
// TODO switch from old identity to new tapir identity.
pub := identity.PublicKey()
err = connection.HandleInboundConnection(rc).ProcessAuthAsV3Server(identityOld.InitializeV3("", &priv, &pub), ServerAuthValid)
if err != nil {
t.Errorf("ServerAuth Error: %v", err)
}
ts.RegisterChannelHandler("im.cwtch.server.send", func() channels.Handler {
2018-03-10 22:05:48 +00:00
server := new(send.CwtchServerSendChannel)
server.Handler = ts
return server
})
2018-03-10 22:05:48 +00:00
ts.RegisterChannelHandler("im.cwtch.server.fetch", func() channels.Handler {
server := new(fetch.CwtchServerFetchChannel)
server.Handler = ts
return server
})
rc.Process(ts)
}
func TestPeerServerConnection(t *testing.T) {
2019-08-08 18:39:38 +00:00
identity, priv := primitives.InitializeEphemeralIdentity()
t.Logf("Launching Server....\n")
ts := new(TestServer)
ts.Init()
ts.Received = make(chan bool)
listenChan := make(chan bool)
2019-08-08 18:39:38 +00:00
go runtestserver(t, ts, priv, identity, listenChan)
<-listenChan
2018-10-05 03:18:34 +00:00
onionAddr := identity.Hostname()
manager := event.NewEventManager()
engine := NewProtocolEngine(identity, priv, connectivity.LocalProvider(), manager, nil)
psc := NewPeerServerConnection(engine, "127.0.0.1:5451|"+onionAddr)
2018-03-10 22:05:48 +00:00
numcalls := 0
psc.GroupMessageHandler = func(s string, gm *protocol.GroupMessage) {
2018-03-15 16:33:26 +00:00
numcalls++
2018-03-10 22:05:48 +00:00
}
state := psc.GetState()
if state != DISCONNECTED {
t.Errorf("new connections should start in disconnected state")
}
time.Sleep(time.Second * 1)
go psc.Run()
psc.WaitTilSynced()
gm := &protocol.GroupMessage{Ciphertext: []byte("hello"), Signature: []byte{}}
psc.SendGroupMessage(gm)
// Wait until message is received
<-ts.Received
2018-03-10 22:05:48 +00:00
if numcalls != 2 {
t.Errorf("Should have received 2 calls from fetch request, instead received %v", numcalls)
2018-03-10 22:05:48 +00:00
}
}