package partnerInfo import ( "github.com/gavv/httpexpect" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" pG "gitlab.fjmaimaimai.com/mmm-go/partnermg/pkg/infrastructure/pg" "net/http" ) var _ = Describe("创建新合伙人", func() { Describe("创建新合伙人", func() { Context("创建新合伙人", func() { It("返回合伙人数据", func() { httpExpect := httpexpect.New(GinkgoT(), server.URL) body := map[string]interface{}{ "partnerName": "employeeName", "account": "account123", "password": "password", "status": 1, "partnerCategory": 1, //"createAt":time.Now(), //"updateAt":time.Now(), "salesman": []map[string]interface{}{ {"name": "name", "telephone": "18860183051"}, {"name2": "name", "telephone": "18860183052j"}, }, } httpExpect.POST("/partnerInfos"). WithJSON(body). Expect(). Status(http.StatusOK). JSON(). Object(). ContainsKey("code").ValueEqual("code", 0). ContainsKey("msg").ValueEqual("msg", "ok"). ContainsKey("data").Value("data").Object(). ContainsKey("id").ValueNotEqual("id", BeZero()) }) }) }) AfterEach(func() { _, err := pG.DB.Exec("DELETE FROM partner_infos WHERE true") Expect(err).NotTo(HaveOccurred()) }) })