-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathArrayTypeTests.cs
More file actions
233 lines (205 loc) · 6.24 KB
/
Copy pathArrayTypeTests.cs
File metadata and controls
233 lines (205 loc) · 6.24 KB
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
228
229
230
231
232
233
#pragma warning disable CS8602 // Dereference of a possibly null reference.
namespace NpgsqlRestTests;
public static partial class Database
{
public static void ArrayTypeTests()
{
script.Append("""""
create function case_return_int_array()
returns int[]
language plpgsql
as
$$
begin
return array[1,2,3];
end;
$$;
create function case_return_text_array()
returns text[]
language plpgsql
as
$$
begin
return array['a', 'bc', 'x,y', 'foo"bar"', '"foo","bar"', 'foo\bar'];
end;
$$;
create function case_return_bool_array()
returns boolean[]
language plpgsql
as
$$
begin
return array[true, false];
end;
$$;
create function case_return_setof_int_array()
returns setof int[]
language plpgsql
as
$$
begin
return query select a from (
values
(array[1,2,3]),
(array[4,5,6]),
(array[7,8,9])
) t(a);
end;
$$;
create function case_return_setof_bool_array()
returns setof boolean[]
language plpgsql
as
$$
begin
return query select a from (
values
(array[true,false]),
(array[false,true])
) t(a);
end;
$$;
create function case_return_setof_text_array()
returns setof text[]
language plpgsql
as
$$
begin
return query select a from (
values
(array['a','bc']),
(array['x','yz','foo','bar'])
) t(a);
end;
$$;
create function case_return_int_array_with_null()
returns int[]
language plpgsql
as
$$
begin
return array[4,5,6,null];
end;
$$;
create function case_return_array_edge_cases()
returns text[]
language plpgsql
as
$$
begin
return array[
'foo,bar',
'foo"bar',
'"foo"bar"',
'foo""bar',
'foo""""bar',
'foo"",""bar',
'foo\bar',
'foo/bar',
E'foo\nbar'
];
end;
$$;
""""");
}
}
[Collection("TestFixture")]
public class ArrayTypeTests(TestFixture test)
{
[Fact]
public async Task Test_case_return_int_array()
{
using var result = await test.Client.PostAsync("/api/case-return-int-array/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("[1,2,3]");
}
[Fact]
public async Task Test_case_return_text_array()
{
using var result = await test.Client.PostAsync("/api/case-return-text-array/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("""["a","bc","x,y","foo\"bar\"","\"foo\",\"bar\"","foo\\bar"]""");
var array = JsonNode.Parse(response).AsArray();
array.Count.Should().Be(6);
array[0].ToJsonString().Should().Be("\"a\"");
array[1].ToJsonString().Should().Be("\"bc\"");
array[2].ToJsonString().Should().Be("\"x,y\"");
array[3].ToJsonString().Should().Be("\"foo\\u0022bar\\u0022\"");
array[4].ToJsonString().Should().Be("\"\\u0022foo\\u0022,\\u0022bar\\u0022\"");
array[5].ToJsonString().Should().Be("\"foo\\\\bar\"");
}
[Fact]
public async Task Test_case_return_bool_array()
{
using var result = await test.Client.PostAsync("/api/case-return-bool-array/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("[true,false]");
}
[Fact]
public async Task Test_case_return_setof_int_array()
{
using var result = await test.Client.PostAsync("/api/case-return-setof-int-array/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("[[1,2,3],[4,5,6],[7,8,9]]");
}
[Fact]
public async Task Test_CaseReturnSetofBoolArray()
{
using var result = await test.Client.PostAsync("/api/case-return-setof-bool-array/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("[[true,false],[false,true]]");
}
[Fact]
public async Task Test_case_return_setof_bool_array()
{
using var result = await test.Client.PostAsync("/api/case-return-setof-text-array/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("""[["a","bc"],["x","yz","foo","bar"]]""");
}
[Fact]
public async Task Test_case_return_int_array_with_null()
{
using var result = await test.Client.PostAsync("/api/case-return-int-array-with-null/", null);
var response = await result.Content.ReadAsStringAsync();
result?.StatusCode.Should().Be(HttpStatusCode.OK);
result?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
response.Should().Be("[4,5,6,null]");
}
[Fact]
public async Task Test_case_return_array_edge_cases()
{
using var response = await test.Client.PostAsync("/api/case-return-array-edge-cases", null);
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content?.Headers?.ContentType?.MediaType.Should().Be("application/json");
var expextedContent = """""
[
"foo,bar",
"foo\"bar",
"\"foo\"bar\"",
"foo\"\"bar",
"foo\"\"\"\"bar",
"foo\"\",\"\"bar",
"foo\\bar",
"foo/bar",
"foo\nbar"
]
"""""
.Replace(" ", "")
.Replace("\r", "")
.Replace("\n", "");
content.Should().Be(expextedContent);
}
}