mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 04:20:17 +00:00
67180a55f7
* 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>
225 lines
5.7 KiB
Go
225 lines
5.7 KiB
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api_test
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/absmach/magistrala/internal/testsutil"
|
|
"github.com/absmach/magistrala/provision"
|
|
"github.com/absmach/magistrala/provision/api"
|
|
mocks "github.com/absmach/magistrala/provision/mocks"
|
|
apiutil "github.com/absmach/supermq/api/http/util"
|
|
smqlog "github.com/absmach/supermq/logger"
|
|
svcerr "github.com/absmach/supermq/pkg/errors/service"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
var (
|
|
validToken = "valid"
|
|
validContenType = "application/json"
|
|
validID = testsutil.GenerateUUID(&testing.T{})
|
|
)
|
|
|
|
type testRequest struct {
|
|
client *http.Client
|
|
method string
|
|
url string
|
|
token string
|
|
contentType 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 newProvisionServer() (*httptest.Server, *mocks.Service) {
|
|
svc := new(mocks.Service)
|
|
|
|
logger := smqlog.NewMock()
|
|
mux := api.MakeHandler(svc, logger, "test")
|
|
return httptest.NewServer(mux), svc
|
|
}
|
|
|
|
func TestProvision(t *testing.T) {
|
|
is, svc := newProvisionServer()
|
|
|
|
cases := []struct {
|
|
desc string
|
|
token string
|
|
domainID string
|
|
data string
|
|
contentType string
|
|
status int
|
|
svcErr error
|
|
}{
|
|
{
|
|
desc: "valid request",
|
|
token: validToken,
|
|
domainID: validID,
|
|
data: fmt.Sprintf(`{"name": "test", "external_id": "%s", "external_key": "%s"}`, validID, validID),
|
|
status: http.StatusCreated,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "request with empty external id",
|
|
token: validToken,
|
|
domainID: validID,
|
|
data: fmt.Sprintf(`{"name": "test", "external_key": "%s"}`, validID),
|
|
status: http.StatusBadRequest,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "request with empty external key",
|
|
token: validToken,
|
|
domainID: validID,
|
|
data: fmt.Sprintf(`{"name": "test", "external_id": "%s"}`, validID),
|
|
status: http.StatusUnauthorized,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "empty token",
|
|
token: "",
|
|
domainID: validID,
|
|
data: fmt.Sprintf(`{"name": "test", "external_id": "%s", "external_key": "%s"}`, validID, validID),
|
|
status: http.StatusCreated,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "invalid content type",
|
|
token: validToken,
|
|
domainID: validID,
|
|
data: fmt.Sprintf(`{"name": "test", "external_id": "%s", "external_key": "%s"}`, validID, validID),
|
|
status: http.StatusUnsupportedMediaType,
|
|
contentType: "text/plain",
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "invalid request",
|
|
token: validToken,
|
|
domainID: validID,
|
|
data: `data`,
|
|
status: http.StatusBadRequest,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "service error",
|
|
token: validToken,
|
|
domainID: validID,
|
|
data: fmt.Sprintf(`{"name": "test", "external_id": "%s", "external_key": "%s"}`, validID, validID),
|
|
status: http.StatusForbidden,
|
|
contentType: validContenType,
|
|
svcErr: svcerr.ErrAuthorization,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
repocall := svc.On("Provision", mock.Anything, validID, tc.token, "test", validID, validID).Return(provision.Result{}, tc.svcErr)
|
|
req := testRequest{
|
|
client: is.Client(),
|
|
method: http.MethodPost,
|
|
url: is.URL + fmt.Sprintf("/%s/mapping", tc.domainID),
|
|
token: tc.token,
|
|
contentType: tc.contentType,
|
|
body: strings.NewReader(tc.data),
|
|
}
|
|
|
|
resp, err := req.make()
|
|
assert.Nil(t, err, tc.desc)
|
|
assert.Equal(t, tc.status, resp.StatusCode, tc.desc)
|
|
repocall.Unset()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestMapping(t *testing.T) {
|
|
is, svc := newProvisionServer()
|
|
|
|
cases := []struct {
|
|
desc string
|
|
token string
|
|
domainID string
|
|
contentType string
|
|
status int
|
|
svcErr error
|
|
}{
|
|
{
|
|
desc: "valid request",
|
|
token: validToken,
|
|
domainID: validID,
|
|
status: http.StatusOK,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "empty token",
|
|
token: "",
|
|
domainID: validID,
|
|
status: http.StatusUnauthorized,
|
|
contentType: validContenType,
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "invalid content type",
|
|
token: validToken,
|
|
domainID: validID,
|
|
status: http.StatusUnsupportedMediaType,
|
|
contentType: "text/plain",
|
|
svcErr: nil,
|
|
},
|
|
{
|
|
desc: "service error",
|
|
token: validToken,
|
|
domainID: validID,
|
|
status: http.StatusForbidden,
|
|
contentType: validContenType,
|
|
svcErr: svcerr.ErrAuthorization,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
repocall := svc.On("Mapping", mock.Anything, tc.token).Return(map[string]any{}, tc.svcErr)
|
|
req := testRequest{
|
|
client: is.Client(),
|
|
method: http.MethodGet,
|
|
url: is.URL + fmt.Sprintf("/%s/mapping", tc.domainID),
|
|
token: tc.token,
|
|
contentType: tc.contentType,
|
|
}
|
|
|
|
resp, err := req.make()
|
|
assert.Nil(t, err, tc.desc)
|
|
assert.Equal(t, tc.status, resp.StatusCode, tc.desc)
|
|
repocall.Unset()
|
|
})
|
|
}
|
|
}
|