summaryrefslogtreecommitdiffstats
path: root/store/sql_license_store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sql_license_store_test.go')
-rw-r--r--store/sql_license_store_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/store/sql_license_store_test.go b/store/sql_license_store_test.go
index ad24a6af7..d91cff481 100644
--- a/store/sql_license_store_test.go
+++ b/store/sql_license_store_test.go
@@ -22,6 +22,12 @@ func TestLicenseStoreSave(t *testing.T) {
if err := (<-store.License().Save(&l1)).Err; err != nil {
t.Fatal("shouldn't fail on trying to save existing license record", err)
}
+
+ l1.Id = ""
+
+ if err := (<-store.License().Save(&l1)).Err; err == nil {
+ t.Fatal("should fail on invalid license", err)
+ }
}
func TestLicenseStoreGet(t *testing.T) {
@@ -40,4 +46,8 @@ func TestLicenseStoreGet(t *testing.T) {
t.Fatal("license bytes didn't match")
}
}
+
+ if err := (<-store.License().Get("missing")).Err; err == nil {
+ t.Fatal("should fail on get license", err)
+ }
}