exchange_su_money_test.go 1.5 KB
package su_money

import (
	"net/http"

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

var _ = Describe("素币兑换", func() {
	var suMoneyTransactionRecordId int64
	BeforeEach(func() {
		_, err := pG.DB.QueryOne(
			pg.Scan(&suMoneyTransactionRecordId),
			"INSERT INTO su_money_transaction_records (su_money_transaction_record_id, record_type, employee, su_money, operator, record_description, create_time) VALUES (?, ?, ?, ?, ?, ?, ?) RETURNING id",
			"testSuMoneyTransactionRecordId", "testRecordType", "testEmployee", "testSuMoney", "testOperator", "testRecordDescription", "testCreateTime")
		Expect(err).NotTo(HaveOccurred())
	})
	Describe("素币兑换", func() {
		Context("", func() {
			It("", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				body := map[string]interface{}{
					"uid":                 "int64",
					"suMoney":             "float64",
					"operator":            "int64",
					"exchangeDescription": "string",
				}
				httpExpect.POST("/su-money/exchange").
					WithJSON(body).
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueEqual("code", 0).
					ContainsKey("msg").ValueEqual("msg", "ok").
					ContainsKey("data").Value("data").Object()
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM su_money_transaction_records WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})