update_mapping_rule_test.go 1.6 KB
package mapping_rule

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/character-library-metadata-bastion/pkg/infrastructure/pg"
)

var _ = Describe("更新匹配规则服务", func() {
	var mappingRuleId int64
	BeforeEach(func() {
		_, err := pG.DB.QueryOne(
			pg.Scan(&mappingRuleId),
			"INSERT INTO mapping_rules (mapping_rule_id, name, table_id, file_id, main_table_fields, verified_file_fields, mapping_fields, created_at, updated_at, deleted_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING mapping_rule_id",
			"testMappingRuleId", "testName", "testTableId", "testFileId", "testMainTableFields", "testVerifiedFileFields", "testMappingFields", "testCreatedAt", "testUpdatedAt", "testDeletedAt")
		Expect(err).NotTo(HaveOccurred())
	})
	Describe("提交数据更新匹配规则服务", func() {
		Context("提交正确的匹配规则配置数据", func() {
			It("返回更新后的匹配规则配置数据", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				body := map[string]interface{}{}
				httpExpect.PUT("/mapping-rules/{mappingRuleId}").
					WithJSON(body).
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueEqual("code", 0).
					ContainsKey("msg").ValueEqual("msg", "ok").
					ContainsKey("data").Value("data").Object().
					ContainsKey("mappingRuleId").ValueEqual("mappingRuleId", mappingRuleId)
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM mapping_rules WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})