get_cash_pool_test.go 1.5 KB
/**
   @author: stevechan
   @date: 2021/2/23
   @note:
**/

package cash_pool

import (
	"github.com/go-pg/pg"
	"net/http"
	"time"

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

var _ = Describe("返回现金池数据", func() {
	var (
		cashPoolId int64
		cash float64
	)
	BeforeEach(func() {
		_, err := pG.DB.QueryOne(
			pg.Scan(&cashPoolId, &cash),
			"INSERT INTO cash_pools (cash, company_id, exchanged_cash, un_exchange_cash, exchanged_su_money, un_exchange_su_money, rate, last_rate, create_time) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING id, cash, company_id, exchanged_cash, un_exchange_cash, exchanged_su_money, un_exchange_su_money, rate, last_rate, create_time",
			100, 312, 100, 10001, 0, 0, 0, 0, time.Now)
		Expect(err).NotTo(HaveOccurred())
	})
	Describe("根据公司id返回现金池数据", func() {
		Context("传入有效的公司id", func() {
			It("返回现金池数据", func() {
				httpExpect := httpexpect.New(GinkgoT(), server.URL)
				httpExpect.GET("/cash-pool/cash-pool?companyId=312").
					Expect().
					Status(http.StatusOK).
					JSON().
					Object().
					ContainsKey("code").ValueNotEqual("code", 0).
					ContainsKey("msg").ValueNotEqual("msg", "ok").
					ContainsKey("data").Value("data").Object()
			})
		})
	})
	AfterEach(func() {
		_, err := pG.DB.Exec("DELETE FROM cash_pools WHERE true")
		Expect(err).NotTo(HaveOccurred())
	})
})