123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package place
- import (
- "context"
- "database/sql"
- "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/place/mocks"
- "git.dmitriygnatenko.ru/dima/homethings/internal/dto"
- "git.dmitriygnatenko.ru/dima/homethings/internal/helpers/test"
- "git.dmitriygnatenko.ru/dima/homethings/internal/models"
- )
- func TestUpdatePlaceHandler(t *testing.T) {
- t.Parallel()
- type req struct {
- method string
- route string
- contentType string
- body *dto.UpdatePlaceRequest
- }
- var (
- placeID = uint64(gofakeit.Number(1, 1000))
- parentID = uint64(gofakeit.Number(1, 1000))
- title = gofakeit.Phrase()
- testError = gofakeit.Error()
- layout = "2006-01-02 15:04:05"
- correctReq = req{
- method: fiber.MethodPut,
- route: "/v1/places/" + strconv.FormatUint(placeID, 10),
- body: &dto.UpdatePlaceRequest{
- Title: title,
- ParentID: &parentID,
- },
- contentType: fiber.MIMEApplicationJSON,
- }
- repoRes = models.Place{
- ID: placeID,
- Title: title,
- ParentID: sql.NullInt64{Int64: int64(parentID), Valid: true},
- CreatedAt: gofakeit.Date(),
- UpdatedAt: gofakeit.Date(),
- }
- expectedRes = dto.PlaceResponse{
- ID: placeID,
- ParentID: &parentID,
- Title: repoRes.Title,
- CreatedAt: repoRes.CreatedAt.Format(layout),
- UpdatedAt: repoRes.UpdatedAt.Format(layout),
- }
- )
- tests := []struct {
- name string
- req req
- resCode int
- resBody interface{}
- placeRepoMock func(mc *minimock.Controller) PlaceRepository
- }{
- {
- name: "positive case",
- req: correctReq,
- resCode: fiber.StatusOK,
- resBody: expectedRes,
- placeRepoMock: func(mc *minimock.Controller) PlaceRepository {
- mock := mocks.NewPlaceRepositoryMock(mc)
- mock.UpdateMock.Inspect(func(ctx context.Context, req models.UpdatePlaceRequest) {
- assert.Equal(mc, title, req.Title)
- assert.Equal(mc, parentID, uint64(req.ParentID.Int64))
- }).Return(nil)
- mock.GetMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(&repoRes, nil)
- return mock
- },
- },
- {
- name: "negative case - bad request",
- req: req{
- method: fiber.MethodPut,
- route: "/v1/places/" + gofakeit.Word(),
- },
- resCode: fiber.StatusBadRequest,
- placeRepoMock: func(mc *minimock.Controller) PlaceRepository {
- return mocks.NewPlaceRepositoryMock(mc)
- },
- },
- {
- name: "negative case - body parse error",
- req: req{
- method: fiber.MethodPut,
- route: "/v1/places/" + strconv.FormatUint(placeID, 10),
- },
- resCode: fiber.StatusBadRequest,
- placeRepoMock: func(mc *minimock.Controller) PlaceRepository {
- return mocks.NewPlaceRepositoryMock(mc)
- },
- },
- {
- name: "negative case - request without title",
- req: req{
- method: fiber.MethodPut,
- route: "/v1/places/" + strconv.FormatUint(placeID, 10),
- contentType: fiber.MIMEApplicationJSON,
- body: &dto.UpdatePlaceRequest{},
- },
- resCode: fiber.StatusBadRequest,
- resBody: []*dto.ValidateErrorResponse{
- {
- Field: "UpdatePlaceRequest.Title",
- Tag: "required",
- },
- },
- placeRepoMock: func(mc *minimock.Controller) PlaceRepository {
- return mocks.NewPlaceRepositoryMock(mc)
- },
- },
- {
- name: "negative case - repository error (update place)",
- req: correctReq,
- resCode: fiber.StatusInternalServerError,
- placeRepoMock: func(mc *minimock.Controller) PlaceRepository {
- mock := mocks.NewPlaceRepositoryMock(mc)
- mock.UpdateMock.Inspect(func(ctx context.Context, req models.UpdatePlaceRequest) {
- assert.Equal(mc, title, req.Title)
- assert.Equal(mc, parentID, uint64(req.ParentID.Int64))
- }).Return(testError)
- return mock
- },
- },
- {
- name: "negative case - repository error (get place)",
- req: correctReq,
- resCode: fiber.StatusInternalServerError,
- placeRepoMock: func(mc *minimock.Controller) PlaceRepository {
- mock := mocks.NewPlaceRepositoryMock(mc)
- mock.UpdateMock.Inspect(func(ctx context.Context, req models.UpdatePlaceRequest) {
- assert.Equal(mc, title, req.Title)
- assert.Equal(mc, parentID, uint64(req.ParentID.Int64))
- }).Return(nil)
- mock.GetMock.Inspect(func(ctx context.Context, id uint64) {
- assert.Equal(mc, placeID, id)
- }).Return(nil, testError)
- return mock
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- t.Parallel()
- mc := minimock.NewController(t)
- fiberApp := fiber.New()
- fiberApp.Put("/v1/places/:placeId", UpdatePlaceHandler(tt.placeRepoMock(mc)))
- fiberReq := httptest.NewRequest(tt.req.method, tt.req.route, test.ConvertDataToIOReader(tt.req.body))
- fiberReq.Header.Add(fiber.HeaderContentType, tt.req.contentType)
- fiberRes, _ := fiberApp.Test(fiberReq, test.TestTimeout)
- assert.Equal(t, tt.resCode, fiberRes.StatusCode)
- if tt.resBody != nil {
- assert.Equal(t, test.MarshalResponse(tt.resBody), test.ConvertBodyToString(fiberRes.Body))
- }
- })
- }
- }
|