2023-10-23 23:23:33 +00:00
|
|
|
package rest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
|
|
"github.com/libp2p/go-libp2p/core/peerstore"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/waku-org/go-waku/tests"
|
|
|
|
"github.com/waku-org/go-waku/waku/v2/node"
|
|
|
|
wakupeerstore "github.com/waku-org/go-waku/waku/v2/peerstore"
|
|
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/lightpush"
|
|
|
|
"github.com/waku-org/go-waku/waku/v2/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// node2 connects to node1
|
|
|
|
func twoLightPushConnectedNodes(t *testing.T, pubSubTopic string) (*node.WakuNode, *node.WakuNode) {
|
2023-10-26 23:21:50 +00:00
|
|
|
node1 := createNode(t, node.WithLightPush(), node.WithWakuRelay())
|
|
|
|
node2 := createNode(t, node.WithLightPush(), node.WithWakuRelay())
|
2023-10-23 23:23:33 +00:00
|
|
|
|
|
|
|
node2.Host().Peerstore().AddAddr(node1.Host().ID(), tests.GetHostAddress(node1.Host()), peerstore.PermanentAddrTTL)
|
|
|
|
err := node2.Host().Peerstore().AddProtocols(node1.Host().ID(), lightpush.LightPushID_v20beta1)
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = node2.Host().Peerstore().(*wakupeerstore.WakuPeerstoreImpl).SetPubSubTopics(node1.Host().ID(), []string{pubSubTopic})
|
|
|
|
require.NoError(t, err)
|
|
|
|
return node1, node2
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLightpushMessagev1(t *testing.T) {
|
|
|
|
pubSubTopic := "/waku/2/default-waku/proto"
|
|
|
|
node1, node2 := twoLightPushConnectedNodes(t, pubSubTopic)
|
|
|
|
defer func() {
|
|
|
|
node1.Stop()
|
|
|
|
node2.Stop()
|
|
|
|
}()
|
|
|
|
|
|
|
|
router := chi.NewRouter()
|
|
|
|
serv := NewLightpushService(node2, router, utils.Logger())
|
|
|
|
_ = serv
|
|
|
|
|
|
|
|
msg := lightpushRequest{
|
|
|
|
PubSubTopic: pubSubTopic,
|
2023-11-10 18:31:36 +00:00
|
|
|
Message: &RestWakuMessage{
|
2023-10-23 23:23:33 +00:00
|
|
|
Payload: []byte{1, 2, 3},
|
|
|
|
ContentTopic: "abc",
|
|
|
|
Timestamp: utils.GetUnixEpoch(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
msgJSONBytes, err := json.Marshal(msg)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
req, _ := http.NewRequest(http.MethodPost, routeLightPushV1Messages, bytes.NewReader(msgJSONBytes))
|
|
|
|
router.ServeHTTP(rr, req)
|
|
|
|
require.Equal(t, http.StatusOK, rr.Code)
|
|
|
|
require.Equal(t, "true", rr.Body.String())
|
|
|
|
}
|