go-waku/waku/v2/protocol/rln/rln_relay_test.go

192 lines
6.5 KiB
Go

package rln
import (
"context"
"crypto/rand"
"testing"
"time"
"github.com/status-im/go-waku/tests"
"github.com/status-im/go-waku/waku/v2/protocol/pb"
"github.com/status-im/go-waku/waku/v2/protocol/relay"
"github.com/status-im/go-waku/waku/v2/utils"
r "github.com/status-im/go-zerokit-rln/rln"
"github.com/stretchr/testify/suite"
)
const RLNRELAY_PUBSUB_TOPIC = "waku/2/rlnrelay/proto"
const RLNRELAY_CONTENT_TOPIC = "waku/2/rlnrelay/proto"
func TestWakuRLNRelaySuite(t *testing.T) {
suite.Run(t, new(WakuRLNRelaySuite))
}
type WakuRLNRelaySuite struct {
suite.Suite
}
func (s *WakuRLNRelaySuite) TestOffchainMode() {
port, err := tests.FindFreePort(s.T(), "", 5)
s.Require().NoError(err)
host, err := tests.MakeHost(context.Background(), port, rand.Reader)
s.Require().NoError(err)
relay, err := relay.NewWakuRelay(context.Background(), host, nil, 0, utils.Logger())
defer relay.Stop()
s.Require().NoError(err)
groupKeyPairs, root, err := r.CreateMembershipList(100)
s.Require().NoError(err)
var groupIDCommitments []r.IDCommitment
for _, c := range groupKeyPairs {
groupIDCommitments = append(groupIDCommitments, c.IDCommitment)
}
// index indicates the position of a membership key pair in the static list of group keys i.e., groupKeyPairs
// the corresponding key pair will be used to mount rlnRelay on the current node
// index also represents the index of the leaf in the Merkle tree that contains node's commitment key
index := r.MembershipIndex(5)
wakuRLNRelay, err := RlnRelayStatic(context.TODO(), relay, groupIDCommitments, groupKeyPairs[index], index, RLNRELAY_PUBSUB_TOPIC, RLNRELAY_CONTENT_TOPIC, nil, utils.Logger())
s.Require().NoError(err)
// get the root of Merkle tree which is constructed inside the mountRlnRelay proc
calculatedRoot, err := wakuRLNRelay.RLN.GetMerkleRoot()
s.Require().NoError(err)
// Checks whether the Merkle tree is constructed correctly inside the mountRlnRelay func
// this check is done by comparing the tree root resulted from mountRlnRelay i.e., calculatedRoot
// against the root which is the expected root
s.Require().Equal(root[:], calculatedRoot[:])
}
func (s *WakuRLNRelaySuite) TestUpdateLogAndHasDuplicate() {
rlnRelay := &WakuRLNRelay{
nullifierLog: make(map[r.Epoch][]r.ProofMetadata),
}
epoch := r.GetCurrentEpoch()
// create some dummy nullifiers and secret shares
var nullifier1, nullifier2, nullifier3 r.Nullifier
var shareX1, shareX2, shareX3 r.MerkleNode
var shareY1, shareY2, shareY3 r.MerkleNode
for i := 0; i < 32; i++ {
nullifier1[i] = 1
nullifier2[i] = 2
nullifier3[i] = nullifier1[i]
shareX1[i] = 1
shareX2[i] = 2
shareX3[i] = 3
shareY1[i] = 1
shareY2[i] = shareX2[i]
shareY3[i] = shareX3[i]
}
wm1 := &pb.WakuMessage{RateLimitProof: &pb.RateLimitProof{Epoch: epoch[:], Nullifier: nullifier1[:], ShareX: shareX1[:], ShareY: shareY1[:]}}
wm2 := &pb.WakuMessage{RateLimitProof: &pb.RateLimitProof{Epoch: epoch[:], Nullifier: nullifier2[:], ShareX: shareX2[:], ShareY: shareY2[:]}}
wm3 := &pb.WakuMessage{RateLimitProof: &pb.RateLimitProof{Epoch: epoch[:], Nullifier: nullifier3[:], ShareX: shareX3[:], ShareY: shareY3[:]}}
// check whether hasDuplicate correctly finds records with the same nullifiers but different secret shares
// no duplicate for wm1 should be found, since the log is empty
result1, err := rlnRelay.HasDuplicate(wm1)
s.Require().NoError(err)
s.Require().False(result1) // No duplicate is found
// Add it to the log
added, err := rlnRelay.updateLog(wm1)
s.Require().NoError(err)
s.Require().True(added)
// no duplicate for wm2 should be found, its nullifier differs from wm1
result2, err := rlnRelay.HasDuplicate(wm2)
s.Require().NoError(err)
s.Require().False(result2) // No duplicate is found
// Add it to the log
added, err = rlnRelay.updateLog(wm2)
s.Require().NoError(err)
s.Require().True(added)
// wm3 has the same nullifier as wm1 but different secret shares, it should be detected as duplicate
result3, err := rlnRelay.HasDuplicate(wm3)
s.Require().NoError(err)
s.Require().True(result3) // It's a duplicate
}
func (s *WakuRLNRelaySuite) TestValidateMessage() {
groupKeyPairs, _, err := r.CreateMembershipList(100)
s.Require().NoError(err)
var groupIDCommitments []r.IDCommitment
for _, c := range groupKeyPairs {
groupIDCommitments = append(groupIDCommitments, c.IDCommitment)
}
// index indicates the position of a membership key pair in the static list of group keys i.e., groupKeyPairs
// the corresponding key pair will be used to mount rlnRelay on the current node
// index also represents the index of the leaf in the Merkle tree that contains node's commitment key
index := r.MembershipIndex(5)
// Create a RLN instance
rlnInstance, err := r.NewRLN()
s.Require().NoError(err)
err = rlnInstance.AddAll(groupIDCommitments)
s.Require().NoError(err)
rlnRelay := &WakuRLNRelay{
membershipIndex: index,
membershipKeyPair: &groupKeyPairs[index],
RLN: rlnInstance,
nullifierLog: make(map[r.Epoch][]r.ProofMetadata),
log: utils.Logger(),
}
//get the current epoch time
now := time.Now()
// create some messages from the same peer and append rln proof to them, except wm4
wm1 := &pb.WakuMessage{Payload: []byte("Valid message")}
err = rlnRelay.AppendRLNProof(wm1, now)
s.Require().NoError(err)
// another message in the same epoch as wm1, it will break the messaging rate limit
wm2 := &pb.WakuMessage{Payload: []byte("Spam")}
err = rlnRelay.AppendRLNProof(wm2, now)
s.Require().NoError(err)
// wm3 points to the next epoch
wm3 := &pb.WakuMessage{Payload: []byte("Valid message")}
err = rlnRelay.AppendRLNProof(wm3, now.Add(time.Second*time.Duration(r.EPOCH_UNIT_SECONDS)))
s.Require().NoError(err)
wm4 := &pb.WakuMessage{Payload: []byte("Invalid message")}
// valid message
msgValidate1, err := rlnRelay.ValidateMessage(wm1, &now)
s.Require().NoError(err)
// wm2 is published within the same Epoch as wm1 and should be found as spam
msgValidate2, err := rlnRelay.ValidateMessage(wm2, &now)
s.Require().NoError(err)
// a valid message should be validated successfully
msgValidate3, err := rlnRelay.ValidateMessage(wm3, &now)
s.Require().NoError(err)
// wm4 has no rln proof and should not be validated
msgValidate4, err := rlnRelay.ValidateMessage(wm4, &now)
s.Require().NoError(err)
s.Require().Equal(MessageValidationResult_Valid, msgValidate1)
s.Require().Equal(MessageValidationResult_Spam, msgValidate2)
s.Require().Equal(MessageValidationResult_Valid, msgValidate3)
s.Require().Equal(MessageValidationResult_Invalid, msgValidate4)
}