//go:build end2end package end2end import ( "bytes" "context" "encoding/json" "fmt" "git.gocasts.ir/ebhomengo/niki/delivery/http_server/end2end/setup" "git.gocasts.ir/ebhomengo/niki/entity" benefactoreparam "git.gocasts.ir/ebhomengo/niki/param/benefactor/benefactor" benefactorkindboxreqparam "git.gocasts.ir/ebhomengo/niki/param/benefactor/kind_box_req" errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg" httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg" "github.com/labstack/echo/v4" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" "net/http" "net/http/httptest" "testing" "time" ) // BenefactorKindBoxReqsTestSuite defines the suite for testing Benefactor Kind Box Requests type BenefactorKindBoxReqsTestSuite struct { suite.Suite benefactorPhone string benefactorID uint kindBoxReqID uint getAllExpected map[string]interface{} getExpected map[string]interface{} createData benefactorkindboxreqparam.KindBoxReqAddRequest updateData benefactorkindboxreqparam.KindBoxReqUpdateRequest } // TestBenefactorKindBoxReqsTestSuite is the entry point for the test suite func TestBenefactorKindBoxReqsTestSuite(t *testing.T) { suite.Run(t, new(BenefactorKindBoxReqsTestSuite)) } // SetupTest runs before each test in the suite func (suite *BenefactorKindBoxReqsTestSuite) SetupTest() { teardown := setup.SeedMariaDB(testContainer.GetMariaDBConfig()) suite.T().Cleanup(teardown) suite.benefactorPhone = "09384664404" suite.benefactorID = uint(1) suite.kindBoxReqID = uint(1) suite.getAllExpected = map[string]interface{}{ "count": 5, } suite.getExpected = map[string]interface{}{ "kind_box_type": entity.KindBoxOnTable, "deliver_address": uint(1), "deliver_refer_date": time.Now().AddDate(0, 0, 7).UTC(), "deliver_refer_time": uint(1), } suite.createData = benefactorkindboxreqparam.KindBoxReqAddRequest{ KindBoxType: entity.KindBoxCylindrical, DeliverAddressID: uint(1), DeliverReferDate: time.Now().AddDate(0, 0, 7).UTC(), DeliverReferTimeID: uint(1), CountRequested: uint(5), } suite.updateData = benefactorkindboxreqparam.KindBoxReqUpdateRequest{ KindBoxType: entity.KindBoxCylindrical, CountRequested: uint(10), Description: "updated description", DeliverReferTimeID: uint(1), DeliverReferDate: time.Now().AddDate(0, 0, 7).UTC(), DeliverAddressID: uint(1), } } // loginBenefactor authenticates the benefactor and returns an access token // TODO: Move this to a common utility function func (suite *BenefactorKindBoxReqsTestSuite) loginBenefactor() string { sendOTPRes, err := services.BenefactorSvc.SendOtp(context.Background(), benefactoreparam.SendOtpRequest{ PhoneNumber: suite.benefactorPhone, }) suite.Require().NoError(err, "failed to send OTP") registerRes, err := services.BenefactorSvc.LoginOrRegister(context.Background(), benefactoreparam.LoginOrRegisterRequest{ PhoneNumber: suite.benefactorPhone, VerificationCode: sendOTPRes.Code, }) suite.Require().NoError(err, "failed to login or register") return registerRes.Tokens.AccessToken } // createRequest is a utility function to create and send HTTP requests // TODO: Move this to a common utility function func (suite *BenefactorKindBoxReqsTestSuite) createRequest(method, url string, body interface{}) *httptest.ResponseRecorder { var buf bytes.Buffer if body != nil { err := json.NewEncoder(&buf).Encode(body) suite.Require().NoError(err, "could not encode body") } token := suite.loginBenefactor() req := httptest.NewRequest(method, url, &buf) req.Header.Set(echo.HeaderContentType, echo.MIMEApplicationJSON) req.Header.Set(echo.HeaderAuthorization, fmt.Sprintf("Bearer %s", token)) rec := httptest.NewRecorder() testServer.Serve(rec, req) return rec } // TestBenefactorKindBoxReqs_GetAll_Success tests retrieving all kind box requests func (suite *BenefactorKindBoxReqsTestSuite) TestBenefactorKindBoxReqs_GetAll_Success() { rec := suite.createRequest(http.MethodGet, "/benefactor/kindboxreqs/", nil) suite.Require().Equal(http.StatusOK, rec.Code) var response benefactorkindboxreqparam.GetAllResponse err := json.NewDecoder(rec.Body).Decode(&response) suite.Require().NoError(err, "failed to decode response body") assert.Equal(suite.T(), suite.getAllExpected["count"], len(response.AllKindBoxReq)) } // TestBenefactorKindBoxReqs_Get_Success tests retrieving a specific kind box request by ID func (suite *BenefactorKindBoxReqsTestSuite) TestBenefactorKindBoxReqs_Get_Success() { rec := suite.createRequest(http.MethodGet, fmt.Sprintf("/benefactor/kindboxreqs/%d", suite.kindBoxReqID), nil) suite.Require().Equal(http.StatusOK, rec.Code) var response benefactorkindboxreqparam.KindBoxReqGetResponse err := json.NewDecoder(rec.Body).Decode(&response) suite.Require().NoError(err, "failed to decode response body") assert.Equal(suite.T(), suite.kindBoxReqID, response.KindBoxReq.ID) assert.Equal(suite.T(), suite.getExpected["kind_box_type"], response.KindBoxReq.KindBoxType) assert.Equal(suite.T(), suite.getExpected["deliver_address"], response.KindBoxReq.DeliverAddressID) assert.Equal( suite.T(), suite.getExpected["deliver_refer_date"].(time.Time).Format("2006-01-02"), response.KindBoxReq.DeliverReferDate.Format("2006-01-02"), ) assert.Equal(suite.T(), suite.getExpected["deliver_refer_time"], response.KindBoxReq.DeliverReferTimeID) } // TestBenefactorKindBoxReqs_Create_Success tests creating a kind box request func (suite *BenefactorKindBoxReqsTestSuite) TestBenefactorKindBoxReqs_Create_Success() { rec := suite.createRequest(http.MethodPost, "/benefactor/kindboxreqs/", suite.createData) suite.Require().Equal(http.StatusCreated, rec.Code) var response benefactorkindboxreqparam.KindBoxReqAddResponse err := json.NewDecoder(rec.Body).Decode(&response) suite.Require().NoError(err, "failed to decode response body") assert.Equal(suite.T(), suite.createData.KindBoxType, response.KindBoxReq.KindBoxType) assert.Equal(suite.T(), suite.createData.DeliverAddressID, response.KindBoxReq.DeliverAddressID) assert.Equal(suite.T(), suite.createData.DeliverReferDate, response.KindBoxReq.DeliverReferDate) assert.Equal(suite.T(), suite.createData.CountRequested, response.KindBoxReq.CountRequested) } // TestBenefactorKindBoxReqs_Update_Success tests updating a kind box request func (suite *BenefactorKindBoxReqsTestSuite) TestBenefactorKindBoxReqs_Update_Success() { rec := suite.createRequest(http.MethodPut, fmt.Sprintf("/benefactor/kindboxreqs/%d", suite.kindBoxReqID), suite.updateData) suite.Require().Equal(http.StatusNoContent, rec.Code) kindBoxReq, err := services.BenefactorKindBoxReqSvc.Get(context.Background(), benefactorkindboxreqparam.KindBoxReqGetRequest{ BenefactorID: suite.benefactorID, KindBoxReqID: suite.kindBoxReqID, }, ) suite.Require().NoError(err, "failed to get kind box request") assert.Equal(suite.T(), suite.updateData.KindBoxType, kindBoxReq.KindBoxType) assert.Equal(suite.T(), suite.updateData.CountRequested, kindBoxReq.CountRequested) assert.Equal(suite.T(), suite.updateData.Description, kindBoxReq.Description) assert.Equal(suite.T(), suite.updateData.DeliverReferTimeID, kindBoxReq.DeliverReferTimeID) assert.Equal( suite.T(), suite.updateData.DeliverReferDate.Format("2006-01-02"), kindBoxReq.DeliverReferDate.Format("2006-01-02"), ) assert.Equal(suite.T(), suite.updateData.DeliverAddressID, kindBoxReq.DeliverAddressID) } // TestBenefactorKindBoxReqs_Delete_Success tests deleting a kind box request func (suite *BenefactorKindBoxReqsTestSuite) TestBenefactorKindBoxReqs_Delete_Success() { rec := suite.createRequest(http.MethodDelete, fmt.Sprintf("/benefactor/kindboxreqs/%d", suite.kindBoxReqID), nil) suite.Require().Equal(http.StatusOK, rec.Code) _, err := services.BenefactorKindBoxReqSvc.Get(context.Background(), benefactorkindboxreqparam.KindBoxReqGetRequest{ BenefactorID: suite.benefactorID, KindBoxReqID: suite.kindBoxReqID, }, ) message, code := httpmsg.Error(err) suite.Require().Error(err) assert.Equal(suite.T(), http.StatusNotFound, code) assert.Equal(suite.T(), errmsg.ErrorMsgNotFound, message) }