diff --git a/app/third/paymentService/ali_service.go b/app/third/paymentService/ali_service.go index 80ff103..df76b20 100644 --- a/app/third/paymentService/ali_service.go +++ b/app/third/paymentService/ali_service.go @@ -79,8 +79,7 @@ func ALiH5PayInfo(c context.Context, payOrderRequest PayOrderRequest) (string, e bm.Set("out_trade_no", payOrderRequest.OrderId). Set("total_amount", amount). Set("subject", payOrderRequest.Description). - Set("notify_url", fmt.Sprintf(envConfig.PayService.TestHost+payCommon.ALI_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId)) - //Set("notify_url", fmt.Sprintf(envConfig.PayService.ProdHost+payCommon.ALI_NOTIFY_URL_PROD+"%d", payOrderRequest.PayChannelId)) + Set("notify_url", fmt.Sprintf(envConfig.PayService.Host+payCommon.ALI_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId)) aliRsp, err := aliClient.TradeWapPay(c, bm) if err != nil { diff --git a/app/third/paymentService/payment_test.go b/app/third/paymentService/payment_test.go index 308e3f2..819a96e 100644 --- a/app/third/paymentService/payment_test.go +++ b/app/third/paymentService/payment_test.go @@ -1,7 +1,7 @@ package paymentService import ( - "PaymentCenter/app/utils" + "PaymentCenter/bootstrap" "PaymentCenter/config" "context" "crypto/md5" @@ -19,6 +19,7 @@ import ( func TestMarketSendRequest_Market(t *testing.T) { c := context.Background() + //解析启动命令 opts := config.GetOptions() if opts.ShowVersion { fmt.Printf("%s\ncommit %s\nbuilt on %s\n", server.Version, server.BuildCommit, server.BuildDate) @@ -26,11 +27,17 @@ func TestMarketSendRequest_Market(t *testing.T) { } //加载配置 - _, err := config.Load(opts.ConfFile) + opts.ConfFile = "../../../.env" + conf, err := config.Load(opts.ConfFile) if err != nil { - utils.Log(nil, "err", err.Error()) return } + //引导程序 + err = bootstrap.Bootstrap(conf) + if err != nil { + return + } + request := PayOrderRequest{ OrderId: 12312312312, ChannelType: 6, diff --git a/app/third/paymentService/wechat_service.go b/app/third/paymentService/wechat_service.go index 40db8b4..da0eb77 100644 --- a/app/third/paymentService/wechat_service.go +++ b/app/third/paymentService/wechat_service.go @@ -75,8 +75,7 @@ func WxH5PayInfo(c context.Context, payOrderRequest PayOrderRequest) (string, er Set("description", payOrderRequest.Description). Set("out_trade_no", payOrderRequest.OrderId). Set("time_expire", expire). - Set("notify_url", fmt.Sprintf(envConfig.PayService.TestHost+payCommon.WX_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId)). - //Set("notify_url", fmt.Sprintf(envConfig.PayService.ProdHost+payCommon.WX_NOTIFY_URL_PROD+"%d", payOrderRequest.PayChannelId)). + Set("notify_url", fmt.Sprintf(envConfig.PayService.Host+payCommon.WX_NOTIFY_URL_TEST+"%d", payOrderRequest.PayChannelId)). SetBodyMap("amount", func(bm gopay.BodyMap) { bm.Set("total", payOrderRequest.Amount). Set("currency", "CNY") diff --git a/config/config.go b/config/config.go index 8b6c72d..c9a2848 100644 --- a/config/config.go +++ b/config/config.go @@ -93,9 +93,8 @@ type CronConfig struct { } type PayService struct { - TestHost string `toml:"TestHost"` - ProdHost string `toml:"ProdHost"` - IsProd bool `toml:"IsProd"` + Host string `toml:"TestHost"` + IsProd bool `toml:"IsProd"` } func newConfig() *Config {