1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-04-29 13:49:28 +08:00
Mainflux.mainflux/things/api/auth/http/endpoint_test.go

216 lines
5.3 KiB
Go
Raw Normal View History

package http_test
import (
"encoding/json"
"fmt"
"io"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/mainflux/mainflux/things"
httpapi "github.com/mainflux/mainflux/things/api/auth/http"
"github.com/mainflux/mainflux/things/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const (
contentType = "application/json"
email = "user@example.com"
token = "token"
wrong = "wrong_value"
wrongID = "0"
)
var (
thing = things.Thing{
Name: "test_app",
Metadata: map[string]interface{}{"test": "data"},
}
channel = things.Channel{
Name: "test_chan",
Metadata: map[string]interface{}{"test": "data"},
}
)
type testRequest struct {
client *http.Client
method string
url 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.contentType != "" {
req.Header.Set("Content-Type", tr.contentType)
}
return tr.client.Do(req)
}
func toJSON(data interface{}) string {
jsonData, _ := json.Marshal(data)
return string(jsonData)
}
func newService(tokens map[string]string) things.Service {
users := mocks.NewUsersService(tokens)
conns := make(chan mocks.Connection)
thingsRepo := mocks.NewThingRepository(conns)
channelsRepo := mocks.NewChannelRepository(thingsRepo, conns)
chanCache := mocks.NewChannelCache()
thingCache := mocks.NewThingCache()
idp := mocks.NewIdentityProvider()
return things.New(users, thingsRepo, channelsRepo, chanCache, thingCache, idp)
}
func newServer(svc things.Service) *httptest.Server {
mux := httpapi.MakeHandler(svc)
return httptest.NewServer(mux)
}
func TestIdentify(t *testing.T) {
svc := newService(map[string]string{token: email})
ts := newServer(svc)
defer ts.Close()
sth, err := svc.AddThing(token, thing)
require.Nil(t, err, fmt.Sprintf("failed to create thing: %s", err))
ir := identifyReq{Token: sth.Key}
data := toJSON(ir)
nonexistentData := toJSON(identifyReq{Token: wrong})
cases := map[string]struct {
contentType string
req string
status int
}{
"identify existing thing": {
contentType: contentType,
req: data,
status: http.StatusOK,
},
"identify non-existent thing": {
contentType: contentType,
req: nonexistentData,
status: http.StatusForbidden,
},
"identify with missing content type": {
contentType: wrong,
req: data,
status: http.StatusUnsupportedMediaType,
},
"identify with empty JSON request": {
contentType: contentType,
req: "{}",
status: http.StatusForbidden,
},
"identify with invalid JSON request": {
contentType: contentType,
req: "",
status: http.StatusBadRequest,
},
}
for desc, tc := range cases {
req := testRequest{
client: ts.Client(),
method: http.MethodPost,
url: fmt.Sprintf("%s/identify", ts.URL),
contentType: tc.contentType,
body: strings.NewReader(tc.req),
}
res, err := req.make()
assert.Nil(t, err, fmt.Sprintf("%s: unexpected error %s", desc, err))
assert.Equal(t, tc.status, res.StatusCode, fmt.Sprintf("%s: expected status code %d got %d", desc, tc.status, res.StatusCode))
}
}
func TestCanAccess(t *testing.T) {
svc := newService(map[string]string{token: email})
ts := newServer(svc)
defer ts.Close()
sth, err := svc.AddThing(token, thing)
require.Nil(t, err, fmt.Sprintf("failed to create thing: %s", err))
sch, err := svc.CreateChannel(token, channel)
require.Nil(t, err, fmt.Sprintf("failed to create channel: %s", err))
err = svc.Connect(token, sch.ID, sth.ID)
require.Nil(t, err, fmt.Sprintf("failed to connect thing and channel: %s", err))
car := canAccessReq{
Token: sth.Key,
}
data := toJSON(car)
cases := map[string]struct {
contentType string
chanID string
req string
status int
}{
"check access for connected thing and channel": {
contentType: contentType,
chanID: sch.ID,
req: data,
status: http.StatusOK,
},
"check access for not connected thing and channel": {
contentType: contentType,
chanID: wrong,
req: data,
status: http.StatusForbidden,
},
"check access with invalid content type": {
contentType: wrong,
chanID: sch.ID,
req: data,
status: http.StatusUnsupportedMediaType,
},
"check access with empty JSON request": {
contentType: contentType,
chanID: sch.ID,
req: "{}",
status: http.StatusForbidden,
},
"check access with invalid JSON request": {
contentType: contentType,
chanID: sch.ID,
req: "}",
status: http.StatusBadRequest,
},
}
for desc, tc := range cases {
req := testRequest{
client: ts.Client(),
method: http.MethodPost,
url: fmt.Sprintf("%s/channels/%s/access", ts.URL, tc.chanID),
contentType: tc.contentType,
body: strings.NewReader(tc.req),
}
res, err := req.make()
assert.Nil(t, err, fmt.Sprintf("%s: unexpected error %s", desc, err))
assert.Equal(t, tc.status, res.StatusCode, fmt.Sprintf("%s: expected status code %d got %d", desc, tc.status, res.StatusCode))
}
}
type identifyReq struct {
Token string `json:"token"`
}
type canAccessReq struct {
Token string `json:"token"`
}