mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
45 lines
756 B
Go
45 lines
756 B
Go
package tdx
|
|
|
|
import (
|
|
"github.com/injoyai/logs"
|
|
"github.com/injoyai/tdx/protocol"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
c *Client
|
|
do func(f func(c *Client))
|
|
)
|
|
|
|
func init() {
|
|
var err error
|
|
c, err = Dial("124.71.187.122:7709")
|
|
logs.PanicErr(err)
|
|
do = func(f func(c *Client)) {
|
|
f(c)
|
|
<-c.Done()
|
|
}
|
|
}
|
|
|
|
func TestClient_GetStockHistoryMinuteTrade(t *testing.T) {
|
|
do(func(c *Client) {
|
|
resp, err := c.GetStockHistoryMinuteTrade(protocol.StockHistoryMinuteTradeReq{
|
|
Time: time.Date(2024, 10, 28, 0, 0, 0, 0, time.Local),
|
|
Exchange: protocol.ExchangeSZ,
|
|
Code: "000001",
|
|
Start: 0,
|
|
Count: 100,
|
|
})
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
for _, v := range resp.List {
|
|
t.Log(v)
|
|
}
|
|
t.Log("总数:", resp.Count)
|
|
})
|
|
|
|
}
|