mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Tests: Add tests for internal/api
This commit is contained in:
@@ -16,12 +16,20 @@ func TestDeleteFile(t *testing.T) {
|
||||
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) {
|
||||
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.StatusInternalServerError, r.Code)
|
||||
})
|
||||
t.Run("try to delete file", func(t *testing.T) {
|
||||
app, router, _ := NewApiTest()
|
||||
|
||||
DeleteFile(router)
|
||||
|
||||
r := PerformRequest(app, "DELETE", "/api/v1/photos/pt9jtdre2lvl0yh8/files/ft9es39w45bnlqdw")
|
||||
assert.Equal(t, http.StatusNotFound, r.Code)
|
||||
})*/
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user