agree_cooperation_application_test.go 2.3 KB
package cooperation_application

import (
	"github.com/go-pg/pg/v10"
	"net/http"

	"github.com/gavv/httpexpect"
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
	pG "gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation/pkg/infrastructure/pg"
)

var _ = Describe("审核-同意共创申请", func() {
	var cooperationApplicationId int64
	BeforeEach(func() {
		_, err := pG.DB.QueryOne(
			pg.Scan(&cooperationApplicationId),
			"INSERT INTO cooperation_applications (cooperation_application_id, cooperation_application_applicant, cooperation_application_attachment, cooperation_application_description, cooperation_application_status, cooperation_application_verifier, cooperation_application_verify_description, cooperation_application_verify_time, cooperation_apply_time, cooperation_project, org, company, created_at, deleted_at, updated_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING cooperation_application_id",
			"testCooperationApplicationId", "testCooperationApplicationApplicant", "testCooperationApplicationAttachment", "testCooperationApplicationDescription", "testCooperationApplicationStatus", "testCooperationApplicationVerifier", "testCooperationApplicationVerifyDescription", "testCooperationApplicationVerifyTime", "testCooperationApplyTime", "testCooperationProject", "testOrg", "testCompany", "testCreatedAt", "testDeletedAt", "testUpdatedAt")
		Expect(err).NotTo(HaveOccurred())
	})
	Describe("审核-同意共创申请", func() {
		Context("", func() {
			It("", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				body := map[string]interface{}{
					"cooperationApplicationId":                "int64",
					"cooperationApplicationVerifyDescription": "string",
					"companyId": "int64",
					"orgId":     "int64",
					"code":      "string",
					"userId":    "int64",
				}
				httpExpect.POST("/cooperation-applications/agree-cooperation-application").
					WithJSON(body).
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueEqual("code", 0).
					ContainsKey("msg").ValueEqual("msg", "ok").
					ContainsKey("data").Value("data").Object()
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM cooperation_applications WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})