update_product_test.go 1.8 KB
package product

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-manufacture/pkg/infrastructure/pg"
)

var _ = Describe("更新产品服务", func() {
	var productId int64
	BeforeEach(func() {
		_, err := pG.DB.QueryOne(
			pg.Scan(&productId),
			"INSERT INTO products (company_id, org_id, product_id, product_code, product_name, product_category, product_spec, created_at, updated_at, deleted_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING product_id",
			"testCompanyId", "testOrgId", "testProductId", "testProductCode", "testProductName", "testProductCategory", "testProductSpec", "testCreatedAt", "testUpdatedAt", "testDeletedAt")
		Expect(err).NotTo(HaveOccurred())
	})
	Describe("提交数据更新产品服务", func() {
		Context("提交正确的产品信息数据", func() {
			It("返回更新后的产品信息数据", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				body := map[string]interface{}{
					"productCode":     "string",
					"productName":     "string",
					"productCategory": "string",
					"quantity":        "float64",
					"unit":            "string",
					"unitWeight":      "float64",
					"weight":          "float64",
				}
				httpExpect.PUT("/products/{productId}").
					WithJSON(body).
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueEqual("code", 0).
					ContainsKey("msg").ValueEqual("msg", "ok").
					ContainsKey("data").Value("data").Object().
					ContainsKey("productId").ValueEqual("productId", productId)
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM products WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})