-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegration_update_test.go
121 lines (98 loc) · 3.07 KB
/
integration_update_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
package main
import (
"bytes"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func testUpdate_SingleTable(t *testing.T, createTestContext func(t testing.TB) *TestContext) {
t.Run("NoTable", func(t *testing.T) {
t.Parallel()
tc := createTestContext(t)
defer tc.CleanUp(t)
client := tc.Client()
_, _, err := client.From("test").Update(map[string]interface{}{"id": 1}, "", "1").
Execute()
assert.Error(t, err)
assert.Contains(t, err.Error(), "no such table: test")
})
t.Run("UpdateRecords", func(t *testing.T) {
t.Parallel()
tc := createTestContext(t)
defer tc.CleanUp(t)
tc.ExecuteSQL(t, "CREATE TABLE test (id int, s text)")
tc.ExecuteSQL(t, `INSERT INTO test (id, s) VALUES (1, "a"), (1, "a"), (1, "a")`)
client := tc.Client()
_, _, err := client.From("test").Update(map[string]interface{}{"id": 2}, "", "3").
Execute()
assert.NoError(t, err)
res, _, err := client.From("test").Select("id", "", false).
Execute()
assert.NoError(t, err)
var rv []map[string]interface{}
tc.DecodeResult(t, res, &rv)
assert.Len(t, rv, 3)
for _, row := range rv {
assert.EqualValues(t, 2, row["id"])
}
})
t.Run("UpdateWithFilter", func(t *testing.T) {
t.Parallel()
tc := createTestContext(t)
defer tc.CleanUp(t)
tc.ExecuteSQL(t, "CREATE TABLE test (id int, s text)")
tc.ExecuteSQL(t, `INSERT INTO test (id, s) VALUES (1, "a"), (1, "a"), (1, "a")`)
client := tc.Client()
_, _, err := client.From("test").
Update(map[string]interface{}{"id": 2}, "", "3").
Eq("id", "100").
Execute()
assert.NoError(t, err)
res, _, err := client.From("test").Select("id", "", false).
Execute()
assert.NoError(t, err)
var rv []map[string]interface{}
tc.DecodeResult(t, res, &rv)
assert.Len(t, rv, 3)
for _, row := range rv {
assert.EqualValues(t, 1, row["id"])
}
})
t.Run("UpdateSingleEntry", func(t *testing.T) {
t.Parallel()
tc := createTestContext(t)
defer tc.CleanUp(t)
tc.ExecuteSQL(t, "CREATE TABLE test (id int, s text)")
tc.ExecuteSQL(t, `INSERT INTO test (id, s) VALUES (1, "a"), (2, "c")`)
b := bytes.NewBufferString(`{"id": 1, "s": "b"}`)
req := tc.NewRequest(t, http.MethodPut, "test", b)
req.Header.Set("Content-Type", "application/json")
q := req.URL.Query()
q.Set("id", "eq.1")
req.URL.RawQuery = q.Encode()
resp := tc.ExecuteRequest(t, req)
defer resp.Body.Close()
client := tc.Client()
res, _, err := client.From("test").Select("*", "", false).
Execute()
assert.NoError(t, err)
var rv []map[string]interface{}
tc.DecodeResult(t, res, &rv)
assert.Len(t, rv, 2)
for idx, row := range rv {
assert.EqualValues(t, idx+1, row["id"])
assert.EqualValues(t, string('b'+rune(idx)), row["s"])
}
})
}
func TestUpdate_SingleTable(t *testing.T) {
t.Run("in memory db", func(t *testing.T) {
testUpdate_SingleTable(t, createTestContextUsingInMemoryDB)
})
t.Run("HMAC token auth", func(t *testing.T) {
testUpdate_SingleTable(t, createTestContextWithHMACTokenAuth)
})
t.Run("RSA token auth", func(t *testing.T) {
testUpdate_SingleTable(t, createTestContextWithRSATokenAuth)
})
}