create_order_test.go 1.5 KB
package order

import (
	pG "gitlab.fjmaimaimai.com/mmm-go-pp/partner01/pkg/infrastructure/pg"
	"net/http"

	"github.com/gavv/httpexpect"
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
)

var _ = Describe("创建订单增删改查", func() {
	Describe("提交数据创建订单增删改查", func() {
		Context("提交正确的新订单实体数据", func() {
			It("返回订单实体数据", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				orderGoods := []map[string]interface{}{
					{"goodNum": 10, "goodName": "banana", "goodTotalPrice": 3.5, "remarks": "单位:斤"},
					{"goodNum": 20, "goodName": "apple", "goodTotalPrice": 5.5, "remarks": "单位:斤"},
				}
				body := map[string]interface{}{
					"orderNo":             "string",
					"companyId":           1,
					"buyerName":           "string",
					"contactInfo":         "string",
					"shippingAddress":     "string",
					"orderNum":            10,
					"totalPrice":          10,
					"partnerId":           "1213",
					"partnerBonusPercent": 15,
					"orderGoods":          orderGoods,
				}
				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())
	})
})