blob: 15b90b6bc0dca51c19251c99021edfa1ccdac290 (
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
38
39
|
package model
import (
"testing"
"os"
"fmt"
"path/filepath"
)
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)
if !storage.Exists() {
storage.Create()
}
InitDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
defer CloseDatabase()
InjectTestRecipes()
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))
}
}
|