create_task_nature_test.go 1.0 KB
package task_nature

import (
	"net/http"

	"github.com/gavv/httpexpect"
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
	pG "gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/infrastructure/pg"
)

var _ = Describe("创建任务性质", func() {
	Describe("提交数据创建任务性质", func() {
		Context("提交正确的新任务性质数据", func() {
			It("返回任务性质数据", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				body := map[string]interface{}{
					"companyId":      101,
					"taskNatureName": "点",
				}
				httpExpect.POST("/task-natures/").
					WithJSON(body).
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueEqual("code", 0).
					ContainsKey("msg").ValueEqual("msg", "ok").
					ContainsKey("data").Value("data").Object().
					ContainsKey("taskNatureId").ValueNotEqual("taskNatureId", BeZero())
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM task_natures WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})