This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_test.go
96 lines (92 loc) · 2.09 KB
/
options_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
package couchdb
import (
"net/http"
"testing"
"gitlab.com/flimzy/testy"
)
func TestFullCommit(t *testing.T) {
tests := []struct {
name string
input map[string]interface{}
expected bool
status int
err string
}{
{
name: "new",
input: map[string]interface{}{OptionFullCommit: true},
expected: true,
},
{
name: "new error",
input: map[string]interface{}{OptionFullCommit: 123},
status: http.StatusBadRequest,
err: "kivik: option 'X-Couch-Full-Commit' must be bool, not int",
},
{
name: "none",
input: nil,
expected: false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := fullCommit(test.input)
testy.StatusError(t, test.err, test.status, err)
if result != test.expected {
t.Errorf("Unexpected result: %v", result)
}
if _, ok := test.input[OptionFullCommit]; ok {
t.Errorf("%s still set in options", OptionFullCommit)
}
})
}
}
func TestIfNoneMatch(t *testing.T) {
tests := []struct {
name string
opts map[string]interface{}
expected string
status int
err string
}{
{
name: "nil",
opts: nil,
expected: "",
},
{
name: "inm not set",
opts: map[string]interface{}{"foo": "bar"},
expected: "",
},
{
name: "wrong type",
opts: map[string]interface{}{OptionIfNoneMatch: 123},
status: http.StatusBadRequest,
err: "kivik: option 'If-None-Match' must be string, not int",
},
{
name: "valid",
opts: map[string]interface{}{OptionIfNoneMatch: "foo"},
expected: `"foo"`,
},
{
name: "valid, pre-quoted",
opts: map[string]interface{}{OptionIfNoneMatch: `"foo"`},
expected: `"foo"`,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := ifNoneMatch(test.opts)
testy.StatusError(t, test.err, test.status, err)
if result != test.expected {
t.Errorf("Unexpected result: %s", result)
}
if _, ok := test.opts[OptionIfNoneMatch]; ok {
t.Errorf("%s still set in options", OptionIfNoneMatch)
}
})
}
}