blob: ddd1543385fb5cc999f80326c9f84be24374d2f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package model
import (
"fmt"
"os"
"path/filepath"
"testing"
)
func TestRecipesRead(t *testing.T) {
storagePath, err := os.MkdirTemp("", "ceres")
if err != nil {
fmt.Println("Error creating temporary directory:", err)
return
}
t.Logf("Storage path: %v\n", storagePath)
defer os.RemoveAll(storagePath)
storage := NewStorage(storagePath)
ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
defer DisconnectDatabase()
MigrateDatabase("dummy_version")
InjectExampleRecipes()
r := make(Recipes, 0)
err = r.Read()
if err != nil {
t.Fatalf("Failed to read Recipes: %v\n", err)
}
if len(r) != 2 { // TODO this needs to be aligned with model/testrecipes.go
t.Fatalf("Expected a list of one recipe but got %d", len(r))
}
}
|