summaryrefslogtreecommitdiffstats
path: root/store/sqlstore/license_store_test.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-06 11:08:59 -0700
committerGitHub <noreply@github.com>2017-10-06 11:08:59 -0700
commit70e5f00241473c27a3008959ce08832c75e76ba8 (patch)
tree3afd074964c9220cc4a87210286a13dfd38c61d0 /store/sqlstore/license_store_test.go
parentd1958bdc49cd10277ca2e27bb2eea499c5994954 (diff)
downloadchat-70e5f00241473c27a3008959ce08832c75e76ba8.tar.gz
chat-70e5f00241473c27a3008959ce08832c75e76ba8.tar.bz2
chat-70e5f00241473c27a3008959ce08832c75e76ba8.zip
store/storetest package (#7588)
* prerequisites * storetest package
Diffstat (limited to 'store/sqlstore/license_store_test.go')
-rw-r--r--store/sqlstore/license_store_test.go49
1 files changed, 4 insertions, 45 deletions
diff --git a/store/sqlstore/license_store_test.go b/store/sqlstore/license_store_test.go
index 99b13a423..2ab8d4a54 100644
--- a/store/sqlstore/license_store_test.go
+++ b/store/sqlstore/license_store_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package sqlstore
@@ -6,50 +6,9 @@ package sqlstore
import (
"testing"
- "github.com/mattermost/mattermost-server/model"
- "github.com/mattermost/mattermost-server/store"
+ "github.com/mattermost/mattermost-server/store/storetest"
)
-func TestLicenseStoreSave(t *testing.T) {
- ss := Setup()
-
- l1 := model.LicenseRecord{}
- l1.Id = model.NewId()
- l1.Bytes = "junk"
-
- if err := (<-ss.License().Save(&l1)).Err; err != nil {
- t.Fatal("couldn't save license record", err)
- }
-
- if err := (<-ss.License().Save(&l1)).Err; err != nil {
- t.Fatal("shouldn't fail on trying to save existing license record", err)
- }
-
- l1.Id = ""
-
- if err := (<-ss.License().Save(&l1)).Err; err == nil {
- t.Fatal("should fail on invalid license", err)
- }
-}
-
-func TestLicenseStoreGet(t *testing.T) {
- ss := Setup()
-
- l1 := model.LicenseRecord{}
- l1.Id = model.NewId()
- l1.Bytes = "junk"
-
- store.Must(ss.License().Save(&l1))
-
- if r := <-ss.License().Get(l1.Id); r.Err != nil {
- t.Fatal("couldn't get license", r.Err)
- } else {
- if r.Data.(*model.LicenseRecord).Bytes != l1.Bytes {
- t.Fatal("license bytes didn't match")
- }
- }
-
- if err := (<-ss.License().Get("missing")).Err; err == nil {
- t.Fatal("should fail on get license", err)
- }
+func TestLicenseStore(t *testing.T) {
+ StoreTest(t, storetest.TestLicenseStore)
}