-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathReturnTypeTests.cs
More file actions
142 lines (122 loc) · 5.32 KB
/
Copy pathReturnTypeTests.cs
File metadata and controls
142 lines (122 loc) · 5.32 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
namespace NpgsqlRestTests;
public static partial class Database
{
public static void ReturnSetTypeTests()
{
script.Append(@"
create type test_return_type as (
id int,
value text,
value2 text
);
create function get_test_return_type()
returns test_return_type
language sql as 'select row(1, ''test1'', ''test2'')::test_return_type';
create function get_setof_test_return_types()
returns setof test_return_type
language sql as 'select row(1, ''test1'', ''test2'')::test_return_type union all select row(2, ''test3'', ''test4'')::test_return_type';
create or replace function get_test_return_types_table()
returns table (
t test_return_type
)
language sql as
$$
select row(1, 'test1', 'test2')::test_return_type
union all
select row(2, 'test3', 'test4')::test_return_type
$$;
create or replace function get_test_return_types_table2()
returns table (
t1 text,
t2 test_return_type
)
language sql as
$$
select 'text1', row(1, 'test1', 'test2')::test_return_type
union all
select 'text2', row(2, 'test3', 'test4')::test_return_type
$$;
create or replace function get_test_return_types_table3()
returns table (
t1 test_return_type,
t2 text
)
language sql as
$$
select row(1, 'test1', 'test2')::test_return_type, 'text1'
union all
select row(2, 'test3', 'test4')::test_return_type, 'text2'
$$;
create or replace function get_test_return_types_table4()
returns table (
t1 text,
t2 test_return_type,
t3 text
)
language sql as
$$
select 'text1', row(1, 'test1', 'test2')::test_return_type, 'text2'
union all
select 'text3', row(2, 'test3', 'test4')::test_return_type, 'text4'
$$;
");
}
}
[Collection("TestFixture")]
public class ReturnSetTypeTests(TestFixture test)
{
[Fact]
public async Task Test_get_test_return_type()
{
using var response = await test.Client.GetAsync($"/api/get-test-return-type");
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content.Headers.ContentType?.MediaType.Should().Be("application/json");
content.Should().Be("{\"id\":1,\"value\":\"test1\",\"value2\":\"test2\"}");
}
[Fact]
public async Task Test_get_setof_test_return_types()
{
using var response = await test.Client.GetAsync($"/api/get-setof-test-return-types");
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content.Headers.ContentType?.MediaType.Should().Be("application/json");
content.Should().Be("[{\"id\":1,\"value\":\"test1\",\"value2\":\"test2\"},{\"id\":2,\"value\":\"test3\",\"value2\":\"test4\"}]");
}
[Fact]
public async Task Test_get_test_return_types_table()
{
using var response = await test.Client.GetAsync($"/api/get-test-return-types-table");
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content.Headers.ContentType?.MediaType.Should().Be("application/json");
content.Should().Be("[{\"id\":1,\"value\":\"test1\",\"value2\":\"test2\"},{\"id\":2,\"value\":\"test3\",\"value2\":\"test4\"}]");
}
[Fact]
public async Task Test_get_test_return_types_table2()
{
using var response = await test.Client.GetAsync($"/api/get-test-return-types-table2");
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content.Headers.ContentType?.MediaType.Should().Be("application/json");
content.Should().Be("[{\"t1\":\"text1\",\"id\":1,\"value\":\"test1\",\"value2\":\"test2\"},{\"t1\":\"text2\",\"id\":2,\"value\":\"test3\",\"value2\":\"test4\"}]");
}
[Fact]
public async Task Test_get_test_return_types_table3()
{
using var response = await test.Client.GetAsync($"/api/get-test-return-types-table3");
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content.Headers.ContentType?.MediaType.Should().Be("application/json");
content.Should().Be("[{\"id\":1,\"value\":\"test1\",\"value2\":\"test2\",\"t2\":\"text1\"},{\"id\":2,\"value\":\"test3\",\"value2\":\"test4\",\"t2\":\"text2\"}]");
}
[Fact]
public async Task Test_get_test_return_types_table4()
{
using var response = await test.Client.GetAsync($"/api/get-test-return-types-table4");
var content = await response.Content.ReadAsStringAsync();
response?.StatusCode.Should().Be(HttpStatusCode.OK);
response?.Content.Headers.ContentType?.MediaType.Should().Be("application/json");
content.Should().Be("[{\"t1\":\"text1\",\"id\":1,\"value\":\"test1\",\"value2\":\"test2\",\"t3\":\"text2\"},{\"t1\":\"text3\",\"id\":2,\"value\":\"test3\",\"value2\":\"test4\",\"t3\":\"text4\"}]");
}
}