summaryrefslogtreecommitdiffstats
path: root/api4/brand_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/brand_test.go')
-rw-r--r--api4/brand_test.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/api4/brand_test.go b/api4/brand_test.go
index c1568c5cc..37169d99a 100644
--- a/api4/brand_test.go
+++ b/api4/brand_test.go
@@ -52,3 +52,30 @@ func TestUploadBrandImage(t *testing.T) {
_, resp = th.SystemAdminClient.UploadBrandImage(data)
CheckCreatedStatus(t, resp)
}
+
+func TestDeleteBrandImage(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer th.TearDown()
+
+ data, err := readTestFile("test.png")
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ _, resp := th.SystemAdminClient.UploadBrandImage(data)
+ CheckCreatedStatus(t, resp)
+
+ resp = th.Client.DeleteBrandImage()
+ CheckForbiddenStatus(t, resp)
+
+ th.Client.Logout()
+
+ resp = th.Client.DeleteBrandImage()
+ CheckUnauthorizedStatus(t, resp)
+
+ resp = th.SystemAdminClient.DeleteBrandImage()
+ CheckOKStatus(t, resp)
+
+ resp = th.SystemAdminClient.DeleteBrandImage()
+ CheckNotFoundStatus(t, resp)
+}