photoprism/internal/api/photos_test.go
Joey Zou c5ff44692f HTTP status code change (#78)
DislikePhoto and LikePhoto should return http.StatusOK (200) instead of http.StatusAccepted (202)
2018-12-07 13:48:15 +01:00

39 lines
725 B
Go

package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetPhotos(t *testing.T) {
app, router, conf := NewApiTest()
GetPhotos(router, conf)
result := PerformRequest(app, "GET", "/api/v1/photos?count=10")
assert.Equal(t, http.StatusOK, result.Code)
}
func TestLikePhoto(t *testing.T) {
app, router, conf := NewApiTest()
LikePhoto(router, conf)
result := PerformRequest(app, "POST", "/api/v1/photos/1/like")
assert.Equal(t, http.StatusOK, result.Code)
}
func TestDislikePhoto(t *testing.T) {
app, router, conf := NewApiTest()
DislikePhoto(router, conf)
result := PerformRequest(app, "DELETE", "/api/v1/photos/1/like")
assert.Equal(t, http.StatusOK, result.Code)
}