mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Backend: Add tests for api
This commit is contained in:
26
internal/api/file_delete_test.go
Normal file
26
internal/api/file_delete_test.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package api
|
||||
|
||||
import (
|
||||
"github.com/stretchr/testify/assert"
|
||||
"net/http"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestDeleteFile(t *testing.T) {
|
||||
t.Run("delete not existing file", func(t *testing.T) {
|
||||
app, router, _ := NewApiTest()
|
||||
|
||||
DeleteFile(router)
|
||||
|
||||
r := PerformRequest(app, "DELETE", "/api/v1/photos/5678/files/23456hbg")
|
||||
assert.Equal(t, http.StatusNotFound, r.Code)
|
||||
})
|
||||
/*t.Run("delete primary file", func(t *testing.T) {
|
||||
app, router, _ := NewApiTest()
|
||||
|
||||
DeleteFile(router)
|
||||
|
||||
r := PerformRequest(app, "DELETE", "/api/v1/photos/pt9jtdre2lvl0yh7/files/ft8es39w45bnlqdw")
|
||||
assert.Equal(t, http.StatusNotFound, r.Code)
|
||||
})*/
|
||||
}
|
||||
Reference in New Issue
Block a user