-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_test.pl
235 lines (212 loc) · 6.13 KB
/
server_test.pl
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
234
235
:- use_module(library(http/http_client)).
:- use_module(library(http/json)).
:- use_module(compat).
:- use_module(function/serde).
:- if(prolog_version_eight).
:- use_module(server).
:- endif.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Defining, searching, and deleting functions
%% Checks that posting parseInt55 works correctly
post_fn_ok(Port) :-
jsonify_fns([function(_, "parseInt55", [], ["str"], ["int"], "Hello world!")], [JsonFn]),
atom_json_dict(Fn, JsonFn, [as(atom)]),
http_post([
protocol(http),
host(localhost),
port(Port),
path('/func')
],
atom('application/json', Fn),
_{
msg:"Created func parseInt55",
uuid:_
},
[json_object(dict)]
).
%% Runs a request which gets parseInt55 and unfies the response with Rpely
get_fn(Port, Reply) :-
http_get([
protocol(http),
host(localhost),
port(Port),
path('/func?name=pant5&name_cmp=subseq')
],
Reply,
[json_object(dict)]
).
%% Runs a request which deletes parseInt55 and unfies the response with Rpely
delete_fn(Port, Uuid, Reply) :-
atom_concat('/func?uuid=', Uuid, Path),
http_delete([
protocol(http),
host(localhost),
port(Port),
path(Path)
],
Reply,
[json_object(dict)]
).
:- begin_tests('function endpoint tests', [condition(prolog_version_eight)]).
test(
"Trying to delete nonexistent uuid results in 404",
[
setup(server(Port, silent)),
error(existence_error(_, _)),
cleanup(shutdown(Port))
]) :-
% Should give status 404
delete_fn(Port, '0', _{
msg:"No matches found for provided query."
}).
test(
"Trying to get nonexistent function results in 404",
[
setup(server(Port, silent)),
error(existence_error(_, _)),
cleanup(shutdown(Port))
]) :-
get_fn(Port, _{
msg:"No matching func found: pant5 :: ? -> ? | none"
}).
test(
"Runs an example client session",
[
setup(server(Port, silent)),
nondet,
cleanup(shutdown(Port))
]) :-
post_fn_ok(Port),
post_fn_ok(Port),
get_fn(Port, _{msg:"Found functions", functions:[
_{
uuid:Uuid1,
name:"parseInt55",
generics:[],
inputs:["str"],
outputs:["int"],
docs:"Hello world!"
},
_{
uuid:Uuid2,
name:"parseInt55",
generics:[],
inputs:["str"],
outputs:["int"],
docs:"Hello world!"
}
]}),
% Delete all copies of parseInt55.
assertion(
delete_fn(Port, Uuid1, _{msg: "Removed", uuids:[Uuid1]})
),
assertion(
delete_fn(Port, Uuid2, _{msg: "Removed", uuids:[Uuid2]})
),
% Check that we did in fact delete parseInt55 - this should be 404
% If not, we don't throw an exception and read fail.
catch((get_fn(Port, _), fail), _, true).
:- end_tests('function endpoint tests').
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Defining, searching, and deleting types
%% Checks that posting AddSet<X: Add> works correctly
post_type_ok(Port, Uuid) :-
jsonify_type(type(_, "Set", [generic("X", ["Add"])], ["Add"], ""), JsonType),
atom_json_dict(Type, JsonType, [as(atom)]),
http_post([
protocol(http),
host(localhost),
port(Port),
path('/type')
],
atom('application/json', Type),
_{
msg:"Created type Set",
uuid:Uuids
},
[json_object(dict)]
),
atom_string(Uuid, Uuids).
%% Runs a request which gets parseInt55 and unfies the response with Rpely
get_type(Port, Uuid, Reply) :-
atom_concat('/type?uuid=', Uuid, Path),
http_get([
protocol(http),
host(localhost),
port(Port),
path(Path)
],
Reply,
[json_object(dict)]
).
%% Runs a request which deletes parseInt55 and unfies the response with Rpely
delete_type(Port, Uuid, Reply) :-
atom_concat('/type?uuid=', Uuid, Path),
http_delete([
protocol(http),
host(localhost),
port(Port),
path(Path)
],
Reply,
[json_object(dict)]
).
:- begin_tests('type endpoint tests', [condition(prolog_version_eight)]).
test(
"Trying to delete nonexistent type results in 404",
[
setup(server(Port, silent)),
error(existence_error(_, _)),
cleanup(shutdown(Port))
]) :-
% Should give status 404
delete_type(Port, 'not a real type', _{
msg:"Name not found",
name:'not a real type'
}).
test(
"Trying to get nonexistent function results in 404",
[
setup(server(Port, silent)),
error(existence_error(_, _)),
cleanup(shutdown(Port))
]) :-
get_type(Port, _{
msg:"No type with name Set found."
}).
test(
"Post succeeds",
[
setup(server(Port, silent)),
nondet,
cleanup(shutdown(Port))
]) :-
post_type_ok(Port, _).
test(
"Get succeeds after post",
[
setup(server(Port, silent)),
nondet,
cleanup(shutdown(Port))
]) :-
post_type_ok(Port, Uuid),
get_type(Port, Uuid, _{msg:"Found types", types:[_]}).
test(
"Runs an example client session",
[
setup(server(Port, silent)),
nondet,
cleanup(shutdown(Port))
]) :-
post_type_ok(Port, Uuid),
get_type(Port, Uuid, _{msg:"Found types", types:[JsonType]}),
% Delete all copies of Set.
assertion(
(jsonify_type(Ty, JsonType), Ty = type(Uuid, "Set", [generic("X", ["Add"])], ["Add"], ""))
),
atom_string(Uuid, Uuids),
delete_type(Port, Uuid, _{msg:"Removed type", uuid:Uuids}),
% Check that we did in fact delete parseInt55 - this should be 404
% If not, we don't throw an exception and read fail.
catch((get_type(Port, Uuid, _), fail), _, true).
:- end_tests('type endpoint tests').