create_order_test.go 1.2 KB
package order

import (
	"net/http"

	"github.com/gavv/httpexpect"
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
	pG "gitlab.fjmaimaimai.com/mmm-go-pp/partner01/pkg/infrastructure/pg"
)

var _ = FDescribe("创建订单增删改查", func() {
	Describe("提交数据创建订单增删改查", func() {
		Context("提交正确的新订单实体数据", func() {
			It("返回订单实体数据", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				body := map[string]interface{}{
					"orderNo":         "string",
					"companyId":       1,
					"buyerName":       "string",
					"contactInfo":     "string",
					"shippingAddress": "string",
					"orderNum":        10,
					"totalPrice":      10,
					"partnerId":       "1213",
				}
				httpExpect.POST("/orders/").
					WithJSON(body).
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueEqual("code", 0).
					ContainsKey("msg").ValueEqual("msg", "ok").
					ContainsKey("data").Value("data").Object().
					ContainsKey("orderId").ValueNotEqual("orderId", BeZero())
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM orders WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})