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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
package listing
import (
"errors"
"log/slog"
"os"
"slices"
"testing"
)
func TestMain(m *testing.M) {
slog.SetDefault(slog.New(slog.DiscardHandler))
os.Exit(m.Run())
}
func TestGetAll(t *testing.T) {
mock := NewRepositoryMock()
s := New(mock)
listings, err := s.GetAll()
if err != nil {
t.Error(err.Error())
}
if len(listings) != 3 {
t.Errorf("Listings lengths don't match. Have %d, want 3",
len(listings))
}
}
func TestGetAllWithError(t *testing.T) {
mock := &RepositoryMock{err: errors.New("db exploded")}
s := New(mock)
listings, err := s.GetAll()
if err == nil {
t.Error("No error returned from faulty GetAll call")
}
if listings != nil {
t.Error("Listings not nil when returned from faulty GetAll call")
}
}
func TestGetByCategory(t *testing.T) {
mock := NewRepositoryMock()
s := New(mock)
listings, err := s.GetByCategory("audi")
if err != nil {
t.Error(err.Error())
}
if len(listings) != 1 {
t.Errorf("Listings by category have wrong length. Have %d, want %d",
len(listings), 1)
}
if !slices.Contains(listings[0].category, "audi") {
t.Errorf("Returned listing has wrong category. Have %s, want audi",
listings[0].category)
}
}
func TestGetByCategoryNoMatches(t *testing.T) {
mock := &RepositoryMock{}
s := New(mock)
listings, err := s.GetByCategory("nonexistantcategory")
if err != nil {
t.Error(err.Error())
}
if listings != nil {
t.Error("Listings should be nil if no category matches")
}
}
func TestGetByCategoryWithError(t *testing.T) {
mock := &RepositoryMock{err: errors.New("datacenter hit by asteroid")}
s := New(mock)
listings, err := s.GetByCategory("mercedes")
if err == nil {
t.Error("Error nil when GetByCategory failed")
}
if listings != nil {
t.Error("Listings not nil when GetByCategory failed")
}
}
|