-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice_test.go
69 lines (58 loc) · 1.62 KB
/
service_test.go
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
package main
import (
"context"
"errors"
"testing"
internaltesting "github.com/minond/captainslog/querier/testing"
)
func TestService_Error_MissingUserID(t *testing.T) {
service := NewService(nil)
req := &QueryRequest{}
_, err := service.Query(context.TODO(), req)
internaltesting.AssertEqual(t, ErrReqMissingUserID, err)
}
func TestService_Error_MissingQuery(t *testing.T) {
service := NewService(nil)
req := &QueryRequest{UserID: 1}
_, err := service.Query(context.TODO(), req)
internaltesting.AssertEqual(t, ErrReqMissingQuery, err)
}
func TestService_Error_SyntaxError(t *testing.T) {
service := NewService(nil)
req := &QueryRequest{UserID: 1, Query: "selec"}
_, err := service.Query(context.TODO(), req)
internaltesting.AssertEqual(t, ErrQuerySyntax, err)
}
func TestService_Error_QueryExecution(t *testing.T) {
repo := internaltesting.TestRepository{Err: errors.New("bad")}
req := &QueryRequest{UserID: 2, Query: "select 1"}
service := NewService(repo)
_, err := service.Query(context.TODO(), req)
internaltesting.AssertEqual(t, &QueryExecutionError{
Query: "select 1",
Err: errors.New("bad"),
}, err)
}
var (
columns = []string{"one", "two"}
results = [][]interface{}{
{"1", "2"},
{"3", "4"},
}
)
func TestService_HappyPath(t *testing.T) {
repo := internaltesting.TestRepository{
Cols: columns,
Rows: results,
}
req := &QueryRequest{UserID: 2, Query: "select 1"}
service := NewService(repo)
res, err := service.Query(context.TODO(), req)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
internaltesting.AssertEqual(t, res, &QueryResponse{
Columns: columns,
Results: results,
})
}