package place import ( "context" "database/sql" "errors" "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" API "git.dmitriygnatenko.ru/dima/homethings/internal/api/v1" "git.dmitriygnatenko.ru/dima/homethings/internal/api/v1/place/mocks" "git.dmitriygnatenko.ru/dima/homethings/internal/dto" "git.dmitriygnatenko.ru/dima/homethings/internal/helpers" "git.dmitriygnatenko.ru/dima/homethings/internal/models" ) func TestDeletePlaceHandler(t *testing.T) { t.Parallel() type req struct { method string route string } var ( placeID = gofakeit.Number(1, 1000) thingID = gofakeit.Number(1, 1000) placeImageID = gofakeit.Number(1, 1000) placeImageURL = gofakeit.URL() thingImageID = gofakeit.Number(1, 1000) thingImageURL = gofakeit.URL() testError = errors.New(gofakeit.Phrase()) correctReq = req{ method: fiber.MethodDelete, route: "/v1/places/" + strconv.Itoa(placeID), } thingRepoRes = []models.Thing{ { ID: thingID, PlaceID: placeID, }, } placeImageRepoRes = []models.Image{ { ID: placeImageID, Image: placeImageURL, }, } thingImageRepoRes = []models.Image{ { ID: thingImageID, Image: thingImageURL, }, } ) tests := []struct { name string req req resCode int resBody interface{} placeRepoMock func(mc *minimock.Controller) PlaceRepository thingRepoMock func(mc *minimock.Controller) ThingRepository placeThingRepoMock func(mc *minimock.Controller) PlaceThingRepository thingImageRepoMock func(mc *minimock.Controller) ThingImageRepository placeImageRepoMock func(mc *minimock.Controller) PlaceImageRepository thingTagRepoMock func(mc *minimock.Controller) ThingTagRepository thingNotificationRepoMock func(mc *minimock.Controller) ThingNotificationRepository fileRepoMock func(mc *minimock.Controller) FileRepository }{ { name: "negative case - bad request", req: req{ method: fiber.MethodDelete, route: "/v1/places/" + gofakeit.Word(), }, resCode: fiber.StatusBadRequest, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { return mocks.NewPlaceRepositoryMock(mc) }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { return mocks.NewThingRepositoryMock(mc) }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { return mocks.NewPlaceImageRepositoryMock(mc) }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - bad request (place not found)", req: correctReq, resCode: fiber.StatusBadRequest, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, sql.ErrNoRows) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { return mocks.NewThingRepositoryMock(mc) }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { return mocks.NewPlaceImageRepositoryMock(mc) }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (get place)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, testError) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { return mocks.NewThingRepositoryMock(mc) }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { return mocks.NewPlaceImageRepositoryMock(mc) }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (get nested places)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, testError) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { return mocks.NewThingRepositoryMock(mc) }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { return mocks.NewPlaceImageRepositoryMock(mc) }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - bad request (nested places exists)", req: correctReq, resCode: fiber.StatusBadRequest, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return([]models.Place{{}}, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { return mocks.NewThingRepositoryMock(mc) }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { return mocks.NewPlaceImageRepositoryMock(mc) }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (get place images)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { return mocks.NewThingRepositoryMock(mc) }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, testError) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (get things)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, testError) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { return mocks.NewThingImageRepositoryMock(mc) }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (get things images)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(nil, testError) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (begin tx)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, testError) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete place image)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(testError) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete thing image)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { return mocks.NewPlaceThingRepositoryMock(mc) }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(testError) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete place thing)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(testError) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { return mocks.NewThingTagRepositoryMock(mc) }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete thing tags)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(testError) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { return mocks.NewThingNotificationRepositoryMock(mc) }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete thing notifications)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(testError) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete thing)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(testError) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (delete place)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeID, id) }).Return(testError) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - repository error (commit tx)", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeID, id) }).Return(nil) mock.CommitTxMock.Return(testError) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { return mocks.NewFileRepositoryMock(mc) }, }, { name: "negative case - delete place image error", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeID, id) }).Return(nil) mock.CommitTxMock.Return(nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { mock := mocks.NewFileRepositoryMock(mc) mock.DeleteMock.When(placeImageURL).Then(testError) return mock }, }, { name: "negative case - delete thing image error", req: correctReq, resCode: fiber.StatusInternalServerError, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeID, id) }).Return(nil) mock.CommitTxMock.Return(nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { mock := mocks.NewFileRepositoryMock(mc) mock.DeleteMock.When(placeImageURL).Then(nil) mock.DeleteMock.When(thingImageURL).Then(testError) return mock }, }, { name: "positive case", req: correctReq, resCode: fiber.StatusOK, resBody: &dto.EmptyResponse{}, placeRepoMock: func(mc *minimock.Controller) PlaceRepository { mock := mocks.NewPlaceRepositoryMock(mc) mock.GetMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.GetNestedPlacesMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(nil, nil) mock.BeginTxMock.Return(nil, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeID, id) }).Return(nil) mock.CommitTxMock.Return(nil) return mock }, thingRepoMock: func(mc *minimock.Controller) ThingRepository { mock := mocks.NewThingRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(thingRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, placeThingRepoMock: func(mc *minimock.Controller) PlaceThingRepository { mock := mocks.NewPlaceThingRepositoryMock(mc) mock.DeleteThingMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingImageRepoMock: func(mc *minimock.Controller) ThingImageRepository { mock := mocks.NewThingImageRepositoryMock(mc) mock.GetByThingIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, thingID, id) }).Return(thingImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingImageID, id) }).Return(nil) return mock }, placeImageRepoMock: func(mc *minimock.Controller) PlaceImageRepository { mock := mocks.NewPlaceImageRepositoryMock(mc) mock.GetByPlaceIDMock.Inspect(func(ctx context.Context, id int) { assert.Equal(mc, placeID, id) }).Return(placeImageRepoRes, nil) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, placeImageID, id) }).Return(nil) return mock }, thingTagRepoMock: func(mc *minimock.Controller) ThingTagRepository { mock := mocks.NewThingTagRepositoryMock(mc) mock.DeleteByThingIDMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, thingNotificationRepoMock: func(mc *minimock.Controller) ThingNotificationRepository { mock := mocks.NewThingNotificationRepositoryMock(mc) mock.DeleteMock.Inspect(func(ctx context.Context, id int, tx *sql.Tx) { assert.Equal(mc, thingID, id) }).Return(nil) return mock }, fileRepoMock: func(mc *minimock.Controller) FileRepository { mock := mocks.NewFileRepositoryMock(mc) mock.DeleteMock.When(placeImageURL).Then(nil) mock.DeleteMock.When(thingImageURL).Then(nil) return mock }, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { t.Parallel() mc := minimock.NewController(t) fiberApp := fiber.New() fiberApp.Delete("/v1/places/:placeId", DeletePlaceHandler( tt.placeRepoMock(mc), tt.thingRepoMock(mc), tt.placeImageRepoMock(mc), tt.thingImageRepoMock(mc), tt.placeThingRepoMock(mc), tt.thingTagRepoMock(mc), tt.thingNotificationRepoMock(mc), tt.fileRepoMock(mc), )) fiberRes, _ := fiberApp.Test(httptest.NewRequest(tt.req.method, tt.req.route, nil), API.DefaultTestTimeOut) assert.Equal(t, tt.resCode, fiberRes.StatusCode) if tt.resBody != nil { assert.Equal(t, helpers.MarshalResponse(tt.resBody), helpers.ConvertBodyToString(fiberRes.Body)) } }) } }