summaryrefslogtreecommitdiffstats
path: root/app/license_test.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-04-04 09:21:32 -0700
committerGitHub <noreply@github.com>2017-04-04 09:21:32 -0700
commite2a8b3d47e76d30c43af2f4481e2c72eb6ca0e09 (patch)
tree8964e35815c3866cd2153e3459cfda9bb4a72f5c /app/license_test.go
parentc7bdce8a6641ed8d361a43b6004a351535c78423 (diff)
downloadchat-e2a8b3d47e76d30c43af2f4481e2c72eb6ca0e09.tar.gz
chat-e2a8b3d47e76d30c43af2f4481e2c72eb6ca0e09.tar.bz2
chat-e2a8b3d47e76d30c43af2f4481e2c72eb6ca0e09.zip
PLT-6115 adding unit tests for licensing (#5916)
* Adding test to license sql store * PLT-6115 adding unit tests for licensing * Removing unused test
Diffstat (limited to 'app/license_test.go')
-rw-r--r--app/license_test.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/license_test.go b/app/license_test.go
new file mode 100644
index 000000000..d7d851589
--- /dev/null
+++ b/app/license_test.go
@@ -0,0 +1,37 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package app
+
+import (
+ //"github.com/mattermost/platform/model"
+ "github.com/mattermost/platform/utils"
+ "testing"
+)
+
+func TestLoadLicense(t *testing.T) {
+ Setup()
+
+ LoadLicense()
+ if utils.IsLicensed {
+ t.Fatal("shouldn't have a valid license")
+ }
+}
+
+func TestSaveLicense(t *testing.T) {
+ Setup()
+
+ b1 := []byte("junk")
+
+ if _, err := SaveLicense(b1); err == nil {
+ t.Fatal("shouldn't have saved license")
+ }
+}
+
+func TestRemoveLicense(t *testing.T) {
+ Setup()
+
+ if err := RemoveLicense(); err != nil {
+ t.Fatal("should have removed license")
+ }
+}