-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymbol_test.go
62 lines (48 loc) · 1.39 KB
/
symbol_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package tasty //nolint:testpackage // testing private field
import (
"fmt"
"net/http"
"testing"
"github.com/stretchr/testify/require"
)
func TestSymbolSearch(t *testing.T) {
setup()
defer teardown()
symbolSearch := "apple"
mux.HandleFunc(fmt.Sprintf("/symbols/search/%s", symbolSearch), func(writer http.ResponseWriter, request *http.Request) {
fmt.Fprint(writer, symbolSearchResp)
})
resp, httpResp, err := client.SymbolSearch(symbolSearch)
require.Nil(t, err)
require.NotNil(t, httpResp)
require.Equal(t, 2, len(resp))
aapl := resp[1]
require.Equal(t, "AAPL", aapl.Symbol)
require.Equal(t, "Apple Inc. - Common Stock", aapl.Description)
}
func TestSymbolSearchError(t *testing.T) {
setup()
defer teardown()
symbolSearch := "apple"
mux.HandleFunc(fmt.Sprintf("/symbols/search/%s", symbolSearch), func(writer http.ResponseWriter, request *http.Request) {
writer.WriteHeader(401)
fmt.Fprint(writer, tastyUnauthorizedError)
})
_, httpResp, err := client.SymbolSearch(symbolSearch)
expectedUnauthorized(t, err)
require.NotNil(t, httpResp)
}
const symbolSearchResp = `{
"data": {
"items": [
{
"symbol": "APLE",
"description": "Apple Hospitality REIT, Inc. Common Shares"
},
{
"symbol": "AAPL",
"description": "Apple Inc. - Common Stock"
}
]
}
}`