Files
supermq/consumers/notifiers/api/endpoint_test.go
T
Arvindh 67180a55f7 NOISSUE - Update Errors (#374)
* update MG errors

Signed-off-by: Arvindh <arvindh91@gmail.com>

* update MG errors

Signed-off-by: Arvindh <arvindh91@gmail.com>

* sync with supermq main

Signed-off-by: Arvindh <arvindh91@gmail.com>

* update MG errors

Signed-off-by: Arvindh <arvindh91@gmail.com>

---------

Signed-off-by: Arvindh <arvindh91@gmail.com>
2025-12-31 16:57:06 +01:00

549 lines
13 KiB
Go

// Copyright (c) Abstract Machines
// SPDX-License-Identifier: Apache-2.0
package api_test
import (
"encoding/json"
"fmt"
"io"
"net/http"
"net/http/httptest"
"path"
"strings"
"testing"
"github.com/absmach/magistrala/consumers/notifiers"
"github.com/absmach/magistrala/consumers/notifiers/api"
"github.com/absmach/magistrala/consumers/notifiers/mocks"
"github.com/absmach/magistrala/internal/testsutil"
apiutil "github.com/absmach/supermq/api/http/util"
smqlog "github.com/absmach/supermq/logger"
svcerr "github.com/absmach/supermq/pkg/errors/service"
"github.com/absmach/supermq/pkg/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
)
const (
contentType = "application/json"
email = "user@example.com"
contact1 = "email1@example.com"
contact2 = "email2@example.com"
token = "token"
invalidToken = "invalid"
topic = "topic"
instanceID = "5de9b29a-feb9-11ed-be56-0242ac120002"
validID = "d4ebb847-5d0e-4e46-bdd9-b6aceaaa3a22"
)
var (
notFoundRes = toJSON(svcerr.ErrNotFound)
unauthRes = toJSON(svcerr.ErrAuthentication)
invalidRes = toJSON(apiutil.ErrInvalidQueryParams)
missingTokRes = toJSON(apiutil.ErrBearerToken)
)
type testRequest struct {
client *http.Client
method string
url string
contentType string
token string
body io.Reader
}
func (tr testRequest) make() (*http.Response, error) {
req, err := http.NewRequest(tr.method, tr.url, tr.body)
if err != nil {
return nil, err
}
if tr.token != "" {
req.Header.Set("Authorization", apiutil.BearerPrefix+tr.token)
}
if tr.contentType != "" {
req.Header.Set("Content-Type", tr.contentType)
}
return tr.client.Do(req)
}
func newServer() (*httptest.Server, *mocks.Service) {
logger := smqlog.NewMock()
svc := new(mocks.Service)
mux := api.MakeHandler(svc, logger, instanceID)
return httptest.NewServer(mux), svc
}
func toJSON(data any) string {
jsonData, err := json.Marshal(data)
if err != nil {
return ""
}
return string(jsonData)
}
func TestCreate(t *testing.T) {
ss, svc := newServer()
defer ss.Close()
sub := notifiers.Subscription{
Topic: topic,
Contact: contact1,
}
data := toJSON(sub)
emptyTopic := toJSON(notifiers.Subscription{Contact: contact1})
emptyContact := toJSON(notifiers.Subscription{Topic: "topic123"})
cases := []struct {
desc string
req string
contentType string
auth string
status int
location string
err error
}{
{
desc: "add successfully",
req: data,
contentType: contentType,
auth: token,
status: http.StatusCreated,
location: fmt.Sprintf("/subscriptions/%s%012d", uuid.Prefix, 1),
err: nil,
},
{
desc: "add an existing subscription",
req: data,
contentType: contentType,
auth: token,
status: http.StatusBadRequest,
location: "",
err: svcerr.ErrConflict,
},
{
desc: "add with empty topic",
req: emptyTopic,
contentType: contentType,
auth: token,
status: http.StatusBadRequest,
location: "",
err: svcerr.ErrMalformedEntity,
},
{
desc: "add with empty contact",
req: emptyContact,
contentType: contentType,
auth: token,
status: http.StatusBadRequest,
location: "",
err: svcerr.ErrMalformedEntity,
},
{
desc: "add with invalid auth token",
req: data,
contentType: contentType,
auth: invalidToken,
status: http.StatusUnauthorized,
location: "",
err: svcerr.ErrAuthentication,
},
{
desc: "add with empty auth token",
req: data,
contentType: contentType,
auth: "",
status: http.StatusUnauthorized,
location: "",
err: svcerr.ErrAuthentication,
},
{
desc: "add with invalid request format",
req: "}",
contentType: contentType,
auth: token,
status: http.StatusBadRequest,
location: "",
err: svcerr.ErrMalformedEntity,
},
{
desc: "add without content type",
req: data,
contentType: "",
auth: token,
status: http.StatusUnsupportedMediaType,
location: "",
err: apiutil.ErrUnsupportedContentType,
},
}
for _, tc := range cases {
svcCall := svc.On("CreateSubscription", mock.Anything, tc.auth, sub).Return(path.Base(tc.location), tc.err)
req := testRequest{
client: ss.Client(),
method: http.MethodPost,
url: fmt.Sprintf("%s/subscriptions", ss.URL),
contentType: tc.contentType,
token: tc.auth,
body: strings.NewReader(tc.req),
}
res, err := req.make()
assert.Nil(t, err, fmt.Sprintf("%s: unexpected error %s", tc.desc, err))
location := res.Header.Get("Location")
assert.Equal(t, tc.status, res.StatusCode, fmt.Sprintf("%s: expected status code %d got %d", tc.desc, tc.status, res.StatusCode))
assert.Equal(t, tc.location, location, fmt.Sprintf("%s: expected location %s got %s", tc.desc, tc.location, location))
svcCall.Unset()
}
}
func TestView(t *testing.T) {
ss, svc := newServer()
defer ss.Close()
sub := notifiers.Subscription{
Topic: topic,
Contact: contact1,
ID: testsutil.GenerateUUID(t),
OwnerID: validID,
}
sr := subRes{
ID: sub.ID,
OwnerID: validID,
Contact: sub.Contact,
Topic: sub.Topic,
}
data := toJSON(sr)
cases := []struct {
desc string
id string
auth string
status int
res string
err error
Sub notifiers.Subscription
}{
{
desc: "view successfully",
id: sub.ID,
auth: token,
status: http.StatusOK,
res: data,
err: nil,
Sub: sub,
},
{
desc: "view not existing",
id: "not existing",
auth: token,
status: http.StatusNotFound,
res: notFoundRes,
err: svcerr.ErrNotFound,
},
{
desc: "view with invalid auth token",
id: sub.ID,
auth: invalidToken,
status: http.StatusUnauthorized,
res: unauthRes,
err: svcerr.ErrAuthentication,
},
{
desc: "view with empty auth token",
id: sub.ID,
auth: "",
status: http.StatusUnauthorized,
res: missingTokRes,
err: svcerr.ErrAuthentication,
},
}
for _, tc := range cases {
svcCall := svc.On("ViewSubscription", mock.Anything, tc.auth, tc.id).Return(tc.Sub, tc.err)
req := testRequest{
client: ss.Client(),
method: http.MethodGet,
url: fmt.Sprintf("%s/subscriptions/%s", ss.URL, tc.id),
token: tc.auth,
}
res, err := req.make()
assert.Nil(t, err, fmt.Sprintf("%s: unexpected request error %s", tc.desc, err))
body, err := io.ReadAll(res.Body)
assert.Nil(t, err, fmt.Sprintf("%s: unexpected read error %s", tc.desc, err))
data := strings.Trim(string(body), "\n")
assert.Equal(t, tc.status, res.StatusCode, fmt.Sprintf("%s: expected status code %d got %d", tc.desc, tc.status, res.StatusCode))
assert.Equal(t, tc.res, data, fmt.Sprintf("%s: expected body %s got %s", tc.desc, tc.res, data))
svcCall.Unset()
}
}
func TestList(t *testing.T) {
ss, svc := newServer()
defer ss.Close()
const numSubs = 100
var subs []subRes
var sub notifiers.Subscription
for i := 0; i < numSubs; i++ {
sub = notifiers.Subscription{
Topic: fmt.Sprintf("topic.subtopic.%d", i),
Contact: contact1,
ID: testsutil.GenerateUUID(t),
}
if i%2 == 0 {
sub.Contact = contact2
}
sr := subRes{
ID: sub.ID,
OwnerID: validID,
Contact: sub.Contact,
Topic: sub.Topic,
}
subs = append(subs, sr)
}
noLimit := toJSON(page{Offset: 5, Limit: 20, Total: numSubs, Subscriptions: subs[5:25]})
one := toJSON(page{Offset: 0, Limit: 20, Total: 1, Subscriptions: subs[10:11]})
var contact2Subs []subRes
for i := 20; i < 40; i += 2 {
contact2Subs = append(contact2Subs, subs[i])
}
contactList := toJSON(page{Offset: 10, Limit: 10, Total: 50, Subscriptions: contact2Subs})
cases := []struct {
desc string
query map[string]string
auth string
status int
res string
err error
page notifiers.Page
}{
{
desc: "list default limit",
query: map[string]string{
"offset": "5",
},
auth: token,
status: http.StatusOK,
res: noLimit,
err: nil,
page: notifiers.Page{
PageMetadata: notifiers.PageMetadata{
Offset: 5,
Limit: 20,
},
Total: numSubs,
Subscriptions: subscriptionsSlice(subs, 5, 25),
},
},
{
desc: "list not existing",
query: map[string]string{
"topic": "not-found-topic",
},
auth: token,
status: http.StatusNotFound,
res: notFoundRes,
err: svcerr.ErrNotFound,
},
{
desc: "list one with topic",
query: map[string]string{
"topic": "topic.subtopic.10",
},
auth: token,
status: http.StatusOK,
res: one,
err: nil,
page: notifiers.Page{
PageMetadata: notifiers.PageMetadata{
Offset: 0,
Limit: 20,
},
Total: 1,
Subscriptions: subscriptionsSlice(subs, 10, 11),
},
},
{
desc: "list with contact",
query: map[string]string{
"contact": contact2,
"offset": "10",
"limit": "10",
},
auth: token,
status: http.StatusOK,
res: contactList,
err: nil,
page: notifiers.Page{
PageMetadata: notifiers.PageMetadata{
Offset: 10,
Limit: 10,
},
Total: 50,
Subscriptions: subscriptionsSlice(contact2Subs, 0, 10),
},
},
{
desc: "list with invalid query",
query: map[string]string{
"offset": "two",
},
auth: token,
status: http.StatusBadRequest,
res: invalidRes,
err: svcerr.ErrMalformedEntity,
},
{
desc: "list with invalid auth token",
auth: invalidToken,
status: http.StatusUnauthorized,
res: unauthRes,
err: svcerr.ErrAuthentication,
},
{
desc: "list with empty auth token",
auth: "",
status: http.StatusUnauthorized,
res: missingTokRes,
err: svcerr.ErrAuthentication,
},
}
for _, tc := range cases {
svcCall := svc.On("ListSubscriptions", mock.Anything, tc.auth, mock.Anything).Return(tc.page, tc.err)
req := testRequest{
client: ss.Client(),
method: http.MethodGet,
url: fmt.Sprintf("%s/subscriptions%s", ss.URL, makeQuery(tc.query)),
token: tc.auth,
}
res, err := req.make()
assert.Nil(t, err, fmt.Sprintf("%s: unexpected error %s", tc.desc, err))
body, err := io.ReadAll(res.Body)
assert.Nil(t, err, fmt.Sprintf("%s: unexpected error %s", tc.desc, err))
data := strings.Trim(string(body), "\n")
assert.Equal(t, tc.status, res.StatusCode, fmt.Sprintf("%s: expected status code %d got %d", tc.desc, tc.status, res.StatusCode))
assert.Equal(t, tc.res, data, fmt.Sprintf("%s: got unexpected body\n", tc.desc))
svcCall.Unset()
}
}
func TestRemove(t *testing.T) {
ss, svc := newServer()
defer ss.Close()
id := testsutil.GenerateUUID(t)
cases := []struct {
desc string
id string
auth string
status int
res string
err error
}{
{
desc: "remove successfully",
id: id,
auth: token,
status: http.StatusNoContent,
err: nil,
},
{
desc: "remove not existing",
id: "not existing",
auth: token,
status: http.StatusNotFound,
err: svcerr.ErrNotFound,
},
{
desc: "remove empty id",
id: "",
auth: token,
status: http.StatusBadRequest,
err: svcerr.ErrMalformedEntity,
},
{
desc: "view with invalid auth token",
id: id,
auth: invalidToken,
status: http.StatusUnauthorized,
res: unauthRes,
err: svcerr.ErrAuthentication,
},
{
desc: "view with empty auth token",
id: id,
auth: "",
status: http.StatusUnauthorized,
res: missingTokRes,
err: svcerr.ErrAuthentication,
},
}
for _, tc := range cases {
svcCall := svc.On("RemoveSubscription", mock.Anything, tc.auth, tc.id).Return(tc.err)
req := testRequest{
client: ss.Client(),
method: http.MethodDelete,
url: fmt.Sprintf("%s/subscriptions/%s", ss.URL, tc.id),
token: tc.auth,
}
res, err := req.make()
assert.Nil(t, err, fmt.Sprintf("%s: unexpected error %s", tc.desc, err))
assert.Equal(t, tc.status, res.StatusCode, fmt.Sprintf("%s: expected status code %d got %d", tc.desc, tc.status, res.StatusCode))
svcCall.Unset()
}
}
func makeQuery(m map[string]string) string {
var ret string
for k, v := range m {
ret += fmt.Sprintf("&%s=%s", k, v)
}
if ret != "" {
return fmt.Sprintf("?%s", ret[1:])
}
return ""
}
type subRes struct {
ID string `json:"id"`
OwnerID string `json:"owner_id"`
Contact string `json:"contact"`
Topic string `json:"topic"`
}
type page struct {
Offset uint `json:"offset"`
Limit int `json:"limit"`
Total uint `json:"total,omitempty"`
Subscriptions []subRes `json:"subscriptions,omitempty"`
}
func subscriptionsSlice(subs []subRes, start, end int) []notifiers.Subscription {
var res []notifiers.Subscription
for i := start; i < end; i++ {
sub := subs[i]
res = append(res, notifiers.Subscription{
ID: sub.ID,
OwnerID: sub.OwnerID,
Contact: sub.Contact,
Topic: sub.Topic,
})
}
return res
}