forked from benmanns/goworker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworker_test.go
More file actions
39 lines (36 loc) · 699 Bytes
/
Copy pathworker_test.go
File metadata and controls
39 lines (36 loc) · 699 Bytes
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 goworker
import (
"testing"
)
var workerMarshalJSONTests = []struct {
w worker
expected []byte
}{
{
worker{},
[]byte(`":0-:"`),
},
{
worker{
process: process{
Hostname: "hostname",
Pid: 12345,
ID: "123",
Queues: []string{"high", "low"},
},
},
[]byte(`"hostname:12345-123:high,low"`),
},
}
func TestWorkerMarshalJSON(t *testing.T) {
for _, tt := range workerMarshalJSONTests {
actual, err := tt.w.MarshalJSON()
if err != nil {
t.Errorf("Worker(%#v): error %s", tt.w, err)
} else {
if string(actual) != string(tt.expected) {
t.Errorf("Worker(%#v): expected %s, actual %s", tt.w, tt.expected, actual)
}
}
}
}