mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
package storage
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/TwinProduction/gatus/storage/store/sql"
|
|
)
|
|
|
|
func TestGet(t *testing.T) {
|
|
store := Get()
|
|
if store == nil {
|
|
t.Error("store should've been automatically initialized")
|
|
}
|
|
}
|
|
|
|
func TestInitialize(t *testing.T) {
|
|
type Scenario struct {
|
|
Name string
|
|
Cfg *Config
|
|
ExpectedErr error
|
|
}
|
|
scenarios := []Scenario{
|
|
{
|
|
Name: "nil",
|
|
Cfg: nil,
|
|
ExpectedErr: nil,
|
|
},
|
|
{
|
|
Name: "blank",
|
|
Cfg: &Config{},
|
|
ExpectedErr: nil,
|
|
},
|
|
{
|
|
Name: "memory-no-file",
|
|
Cfg: &Config{Type: TypeMemory},
|
|
ExpectedErr: nil,
|
|
},
|
|
{
|
|
Name: "memory-with-file",
|
|
Cfg: &Config{Type: TypeMemory, File: t.TempDir() + "/TestInitialize_memory-with-file.db"},
|
|
ExpectedErr: nil,
|
|
},
|
|
{
|
|
Name: "sqlite-no-file",
|
|
Cfg: &Config{Type: TypeSQLite},
|
|
ExpectedErr: sql.ErrFilePathNotSpecified,
|
|
},
|
|
{
|
|
Name: "sqlite-with-file",
|
|
Cfg: &Config{Type: TypeSQLite, File: t.TempDir() + "/TestInitialize_sqlite-with-file.db"},
|
|
ExpectedErr: nil,
|
|
},
|
|
}
|
|
for _, scenario := range scenarios {
|
|
t.Run(scenario.Name, func(t *testing.T) {
|
|
err := Initialize(scenario.Cfg)
|
|
if err != scenario.ExpectedErr {
|
|
t.Errorf("expected %v, got %v", scenario.ExpectedErr, err)
|
|
}
|
|
if err != nil {
|
|
return
|
|
}
|
|
if cancelFunc == nil {
|
|
t.Error("cancelFunc shouldn't have been nil")
|
|
}
|
|
if ctx == nil {
|
|
t.Error("ctx shouldn't have been nil")
|
|
}
|
|
if provider == nil {
|
|
t.Fatal("provider shouldn't have been nit")
|
|
}
|
|
provider.Close()
|
|
// Try to initialize it again
|
|
err = Initialize(scenario.Cfg)
|
|
if err != scenario.ExpectedErr {
|
|
t.Errorf("expected %v, got %v", scenario.ExpectedErr, err)
|
|
return
|
|
}
|
|
provider.Close()
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestAutoSave(t *testing.T) {
|
|
file := t.TempDir() + "/TestAutoSave.db"
|
|
if err := Initialize(&Config{File: file}); err != nil {
|
|
t.Fatal("shouldn't have returned an error")
|
|
}
|
|
go autoSaveStore(ctx, provider, 3*time.Millisecond)
|
|
time.Sleep(15 * time.Millisecond)
|
|
cancelFunc()
|
|
time.Sleep(50 * time.Millisecond)
|
|
}
|