2021-11-26 14:28:50 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/tidwall/gjson"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSearchAlbums(t *testing.T) {
|
2022-10-13 22:11:02 +02:00
|
|
|
t.Run("Ok", func(t *testing.T) {
|
2021-11-26 14:28:50 +01:00
|
|
|
app, router, _ := NewApiTest()
|
|
|
|
SearchAlbums(router)
|
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums?count=10")
|
|
|
|
count := gjson.Get(r.Body.String(), "#")
|
|
|
|
assert.LessOrEqual(t, int64(3), count.Int())
|
|
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
|
|
})
|
2022-10-13 22:11:02 +02:00
|
|
|
t.Run("BadRequest", func(t *testing.T) {
|
2021-11-26 14:28:50 +01:00
|
|
|
app, router, _ := NewApiTest()
|
|
|
|
SearchAlbums(router)
|
|
|
|
r := PerformRequest(app, "GET", "/api/v1/albums?xxx=10")
|
|
|
|
assert.Equal(t, http.StatusBadRequest, r.Code)
|
|
|
|
})
|
|
|
|
}
|