PLT-6115 adding unit tests for licensing (#5916)

* Adding test to license sql store

* PLT-6115 adding unit tests for licensing

* Removing unused test
Этот коммит содержится в:
Corey Hulen
2017-04-04 09:21:32 -07:00
коммит произвёл GitHub
родитель c7bdce8a66
Коммит e2a8b3d47e
3 изменённых файлов: 65 добавлений и 0 удалений

Просмотреть файл

@@ -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)
}
}