This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathevent_test.go
227 lines (179 loc) · 4.39 KB
/
event_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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package lunk
import (
"database/sql"
"fmt"
"reflect"
"testing"
"time"
)
func TestNewRootEventID(t *testing.T) {
id := NewRootEventID()
if id.Parent != 0 {
t.Errorf("Unexpected parent: %+v", id)
}
if id.ID == 0 {
t.Errorf("Zero ID: %+v", id)
}
if id.Root == 0 {
t.Errorf("Zero root: %+v", id)
}
if id.Root == id.ID {
t.Errorf("Duplicate IDs: %+v", id)
}
}
func TestNewEventID(t *testing.T) {
root := NewRootEventID()
id := NewEventID(root)
if id.Parent != root.ID {
t.Errorf("Unexpected parent: %+v", id)
}
if id.ID == 0 {
t.Errorf("Zero ID: %+v", id)
}
if id.Root != root.Root {
t.Errorf("Mismatched root: %+v", id)
}
}
func TestEventIDString(t *testing.T) {
id := EventID{
Root: 100,
ID: 300,
}
actual := id.String()
expected := "0000000000000064/000000000000012c"
if actual != expected {
t.Errorf("Was %#v, but expected %#v", actual, expected)
}
}
func TestEventIDStringWithParent(t *testing.T) {
id := EventID{
Root: 100,
Parent: 200,
ID: 300,
}
actual := id.String()
expected := "0000000000000064/000000000000012c/00000000000000c8"
if actual != expected {
t.Errorf("Was %#v, but expected %#v", actual, expected)
}
}
func TestEventIDFormat(t *testing.T) {
id := EventID{
Root: 100,
ID: 300,
}
actual := id.Format("/* %s */ %s", "SELECT 1")
expected := "/* 0000000000000064/000000000000012c */ SELECT 1"
if actual != expected {
t.Errorf("Was %#v, but expected %#v", actual, expected)
}
}
func ExampleEventID_Format() {
// Assume we're connected to a database.
var (
event EventID
db *sql.DB
userID int
)
// This passes the root ID and the parent event ID to the database, which
// allows us to correlate, for example, slow queries with the web requests
// which caused them.
query := event.Format(`/* %s/%s */ %s`, `SELECT email FROM users WHERE id = ?`)
r := db.QueryRow(query, userID)
if r == nil {
panic("user not found")
}
var email string
if err := r.Scan(&email); err != nil {
panic("couldn't read email")
}
fmt.Printf("User's email: %s\n", email)
}
func TestParseEventID(t *testing.T) {
id, err := ParseEventID("0000000000000064/000000000000012c")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if id.Root != 100 || id.ID != 300 {
t.Errorf("Unexpected event ID: %+v", id)
}
}
func TestParseEventIDWithParent(t *testing.T) {
id, err := ParseEventID("0000000000000064/000000000000012c/0000000000000096")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if id.Root != 100 || id.Parent != 150 || id.ID != 300 {
t.Errorf("Unexpected event ID: %+v", id)
}
}
func TestParseEventIDMalformed(t *testing.T) {
id, err := ParseEventID(`0000000000000064000000000000012c`)
if id != nil {
t.Errorf("Unexpected event ID: %+v", id)
}
if err != ErrBadEventID {
t.Errorf("Unexpected error: %v", err)
}
}
func TestParseEventIDBadRoot(t *testing.T) {
id, err := ParseEventID("0000000000g000064/000000000000012c")
if id != nil {
t.Errorf("Unexpected event ID: %+v", id)
}
if err != ErrBadEventID {
t.Errorf("Unexpected error: %v", err)
}
}
func TestParseEventIDBadID(t *testing.T) {
id, err := ParseEventID("0000000000000064/0000000000g00012c")
if id != nil {
t.Errorf("Unexpected event ID: %+v", id)
}
if err != ErrBadEventID {
t.Errorf("Unexpected error: %v", err)
}
}
func TestParseEventIDBadParent(t *testing.T) {
id, err := ParseEventID("0000000000000064/000000000000012c/00000000000g0096")
if id != nil {
t.Errorf("Unexpected event ID: %+v", id)
}
if err != ErrBadEventID {
t.Errorf("Unexpected error: %v", err)
}
}
func TestNewEntry(t *testing.T) {
id := NewRootEventID()
e := NewEntry(id, mockEvent{Example: "yay"})
if e.EventID != id {
t.Errorf("Was %v but expected %v", e.EventID, id)
}
if e.Schema != "example" {
t.Errorf("Unexpected schema: %v", e.Schema)
}
if time.Now().Sub(e.Time) > 5*time.Millisecond {
t.Errorf("Unexpectedly old timestamp: %v", e.Time)
}
if e.Time.Location() != time.UTC {
t.Errorf("Unexpectedly non-UTC timestamp: %v", e.Time)
}
if e.Host == "" {
t.Errorf("Blank hostname for meta data")
}
if e.PID == 0 {
t.Errorf("Blank PID for meta data")
}
expected := map[string]string{
"example": "yay",
}
if !reflect.DeepEqual(e.Properties, expected) {
t.Errorf("Was %+v, but expected %+v", e.Properties, expected)
}
}
type mockEvent struct {
Example string
}
func (mockEvent) Schema() string {
return "example"
}