status-go/services/wallet/thirdparty/opensea/client_test.go

78 lines
1.8 KiB
Go
Raw Normal View History

2023-02-21 09:05:16 +00:00
package opensea
import (
"encoding/json"
"math/big"
"net/http"
"net/http/httptest"
"testing"
"github.com/status-im/status-go/services/wallet/bigint"
"github.com/stretchr/testify/assert"
"github.com/ethereum/go-ethereum/common"
)
func TestFetchAllCollectionsByOwner(t *testing.T) {
expected := []OwnedCollection{{
Collection: Collection{
Name: "Rocky",
Slug: "rocky",
ImageURL: "ImageUrl",
},
OwnedAssetCount: &bigint.BigInt{Int: big.NewInt(1)},
}}
response, _ := json.Marshal(expected)
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
_, err := w.Write(response)
if err != nil {
return
}
}))
defer srv.Close()
2023-02-21 09:05:16 +00:00
opensea := &Client{
client: srv.Client(),
url: srv.URL,
}
2023-02-21 09:05:16 +00:00
res, err := opensea.FetchAllCollectionsByOwner(common.Address{1})
assert.Equal(t, expected, res)
assert.Nil(t, err)
}
func TestFetchAllAssetsByOwnerAndCollection(t *testing.T) {
expected := AssetContainer{
Assets: []Asset{{
ID: 1,
Name: "Rocky",
Description: "Rocky Balboa",
Permalink: "permalink",
ImageThumbnailURL: "ImageThumbnailURL",
ImageURL: "ImageUrl",
Contract: Contract{Address: "1"},
Collection: Collection{Name: "Rocky"},
}},
NextCursor: "",
PreviousCursor: "",
}
response, _ := json.Marshal(expected)
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
_, err := w.Write(response)
if err != nil {
return
}
}))
defer srv.Close()
2023-02-21 09:05:16 +00:00
opensea := &Client{
client: srv.Client(),
url: srv.URL,
}
res, err := opensea.FetchAllAssetsByOwnerAndCollection(common.Address{1}, "rocky", "", 200)
assert.Nil(t, err)
assert.Equal(t, expected, *res)
}