mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
29 lines
562 B
Go
29 lines
562 B
Go
package util
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestResponse_DecodeJSON(t *testing.T) {
|
|
type temp struct {
|
|
Name string `json:"name"`
|
|
}
|
|
json := `{"name":"Test Name","a":"a"}`
|
|
reader := ioutil.NopCloser(bytes.NewReader([]byte(json)))
|
|
resp, err := NewResponse(&http.Response{
|
|
StatusCode: 200,
|
|
Body: reader,
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, json, resp.String())
|
|
|
|
var result temp
|
|
assert.NoError(t, resp.DecodeJSON(&result))
|
|
assert.Equal(t, "Test Name", result.Name)
|
|
}
|