123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- package thing
- import (
- "context"
- "net/http/httptest"
- "strconv"
- "testing"
- "github.com/brianvoe/gofakeit/v6"
- "github.com/gofiber/fiber/v2"
- "github.com/gojuno/minimock/v3"
- "github.com/stretchr/testify/assert"
- "git.dmitriygnatenko.ru/dima/homethings/internal/api/v1/thing/mocks"
- "git.dmitriygnatenko.ru/dima/homethings/internal/dto"
- "git.dmitriygnatenko.ru/dima/homethings/internal/helpers/test"
- "git.dmitriygnatenko.ru/dima/homethings/internal/models"
- )
- func TestGetPlaceThingsHandler(t *testing.T) {
- t.Parallel()
- type req struct {
- method string
- route string
- }
- var (
- placeID = uint64(gofakeit.Number(1, 1000))
- testError = gofakeit.Error()
- layout = "2006-01-02 15:04:05"
- correctReq = req{
- method: fiber.MethodGet,
- route: "/v1/things/place/" + strconv.FormatUint(placeID, 10),
- }
- thingRepoRes = []models.Thing{
- {
- ID: uint64(gofakeit.Number(1, 1000)),
- PlaceID: placeID,
- Title: gofakeit.Phrase(),
- Description: gofakeit.Phrase(),
- CreatedAt: gofakeit.Date(),
- UpdatedAt: gofakeit.Date(),
- },
- {
- ID: uint64(gofakeit.Number(1, 1000)),
- PlaceID: placeID,
- Title: gofakeit.Phrase(),
- Description: gofakeit.Phrase(),
- CreatedAt: gofakeit.Date(),
- UpdatedAt: gofakeit.Date(),
- },
- }
- thingTagRepoRes = []models.ThingTag{
- {
- ThingID: thingRepoRes[0].ID,
- Tag: models.Tag{
- ID: uint64(gofakeit.Number(1, 1000)),
- Title: gofakeit.Phrase(),
- Style: gofakeit.Phrase(),
- CreatedAt: gofakeit.Date(),
- UpdatedAt: gofakeit.Date(),
- },
- },
- {
- ThingID: thingRepoRes[1].ID,
- Tag: models.Tag{
- ID: uint64(gofakeit.Number(1, 1000)),
- Title: gofakeit.Phrase(),
- Style: gofakeit.Phrase(),
- CreatedAt: gofakeit.Date(),
- UpdatedAt: gofakeit.Date(),
- },
- },
- }
- expectedRes = dto.ThingsExtResponse{
- Things: []dto.ThingExtResponse{
- {
- ThingResponse: dto.ThingResponse{
- ID: thingRepoRes[0].ID,
- PlaceID: thingRepoRes[0].PlaceID,
- Title: thingRepoRes[0].Title,
- Description: thingRepoRes[0].Description,
- CreatedAt: thingRepoRes[0].CreatedAt.Format(layout),
- UpdatedAt: thingRepoRes[0].UpdatedAt.Format(layout),
- },
- Tags: []dto.TagResponse{
- {
- ID: thingTagRepoRes[0].ID,
- Title: thingTagRepoRes[0].Title,
- Style: thingTagRepoRes[0].Style,
- CreatedAt: thingTagRepoRes[0].CreatedAt.Format(layout),
- UpdatedAt: thingTagRepoRes[0].UpdatedAt.Format(layout),
- },
- },
- },
- {
- ThingResponse: dto.ThingResponse{
- ID: thingRepoRes[1].ID,
- PlaceID: thingRepoRes[1].PlaceID,
- Title: thingRepoRes[1].Title,
- Description: thingRepoRes[1].Description,
- CreatedAt: thingRepoRes[1].CreatedAt.Format(layout),
- UpdatedAt: thingRepoRes[1].UpdatedAt.Format(layout),
- },
- Tags: []dto.TagResponse{
- {
- ID: thingTagRepoRes[1].ID,
- Title: thingTagRepoRes[1].Title,
- Style: thingTagRepoRes[1].Style,
- CreatedAt: thingTagRepoRes[1].CreatedAt.Format(layout),
- UpdatedAt: thingTagRepoRes[1].UpdatedAt.Format(layout),
- },
- },
- },
- },
- }
- )
- tests := []struct {
- name string
- req req
- resCode int
- resBody interface{}
- thingRepoMock func(mc *minimock.Controller) ThingRepository
- thingTagRepoMock func(mc *minimock.Controller) ThingTagRepository
- }{
- {
- name: "positive case",
- req: correctReq,
- resCode: fiber.StatusOK,
- resBody: expectedRes,
- thingRepoMock: func(mc *minimock.Controller) ThingRepository {
- mock := mocks.NewThingRepositoryMock(mc)
- mock.GetAllByPlaceIDMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(thingRepoRes, nil)
- return mock
- },
- thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository {
- mock := mocks.NewThingTagRepositoryMock(mc)
- mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(thingTagRepoRes, nil)
- return mock
- },
- },
- {
- name: "negative case - thing repository error",
- req: correctReq,
- resCode: fiber.StatusInternalServerError,
- thingRepoMock: func(mc *minimock.Controller) ThingRepository {
- mock := mocks.NewThingRepositoryMock(mc)
- mock.GetAllByPlaceIDMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(nil, testError)
- return mock
- },
- thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository {
- return mocks.NewThingTagRepositoryMock(mc)
- },
- },
- {
- name: "negative case - thing tag repository error",
- req: correctReq,
- resCode: fiber.StatusInternalServerError,
- thingRepoMock: func(mc *minimock.Controller) ThingRepository {
- mock := mocks.NewThingRepositoryMock(mc)
- mock.GetAllByPlaceIDMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(thingRepoRes, nil)
- return mock
- },
- thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository {
- mock := mocks.NewThingTagRepositoryMock(mc)
- mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(nil, testError)
- return mock
- },
- },
- {
- name: "negative case - bad request",
- req: req{
- method: fiber.MethodGet,
- route: "/v1/things/place/" + gofakeit.Word(),
- },
- resCode: fiber.StatusBadRequest,
- resBody: nil,
- thingRepoMock: func(mc *minimock.Controller) ThingRepository {
- return mocks.NewThingRepositoryMock(mc)
- },
- thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository {
- return mocks.NewThingTagRepositoryMock(mc)
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- t.Parallel()
- mc := minimock.NewController(t)
- fiberApp := fiber.New()
- fiberApp.Get("/v1/things/place/:placeId", GetPlaceThingsHandler(
- tt.thingRepoMock(mc),
- tt.thingTagRepoMock(mc),
- ))
- fiberRes, _ := fiberApp.Test(httptest.NewRequest(tt.req.method, tt.req.route, nil), test.TestTimeout)
- assert.Equal(t, tt.resCode, fiberRes.StatusCode)
- if tt.resBody != nil {
- assert.Equal(t, test.MarshalResponse(tt.resBody), test.ConvertBodyToString(fiberRes.Body))
- }
- })
- }
- }
|