summaryrefslogtreecommitdiffstats
path: root/api4/system_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/system_test.go')
-rw-r--r--api4/system_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/api4/system_test.go b/api4/system_test.go
index a46e14782..57cc10343 100644
--- a/api4/system_test.go
+++ b/api4/system_test.go
@@ -356,3 +356,39 @@ func TestPostLog(t *testing.T) {
t.Fatal("should return the log message")
}
}
+
+func TestUploadLicenseFile(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+ Client := th.Client
+
+ ok, resp := Client.UploadLicenseFile([]byte{})
+ CheckForbiddenStatus(t, resp)
+ if ok {
+ t.Fatal("should fail")
+ }
+
+ ok, resp = th.SystemAdminClient.UploadLicenseFile([]byte{})
+ CheckBadRequestStatus(t, resp)
+ if ok {
+ t.Fatal("should fail")
+ }
+}
+
+func TestRemoveLicenseFile(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+ Client := th.Client
+
+ ok, resp := Client.RemoveLicenseFile()
+ CheckForbiddenStatus(t, resp)
+ if ok {
+ t.Fatal("should fail")
+ }
+
+ ok, resp = th.SystemAdminClient.RemoveLicenseFile()
+ CheckNoError(t, resp)
+ if !ok {
+ t.Fatal("should pass")
+ }
+}