-
Notifications
You must be signed in to change notification settings - Fork 51
/
server.proto
639 lines (565 loc) · 13.8 KB
/
server.proto
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
syntax = "proto3";
option go_package = "github.com/linuxsuren/api-testing/pkg/server";
package server;
import "google/protobuf/timestamp.proto";
import "google/api/annotations.proto";
service Runner {
// belong to a specific store
rpc Run (TestTask) returns (TestResult) {
option (google.api.http) = {
post: "/api/v1/run"
body: "*"
};
}
rpc RunTestSuite(stream TestSuiteIdentity) returns (stream TestResult) {
option (google.api.http) = {
post: "/api/v1/run/suite"
body: "*"
};
}
// test suites related
rpc GetSuites(Empty) returns (Suites) {
option (google.api.http) = {
get: "/api/v1/suites"
};
}
rpc CreateTestSuite(TestSuiteIdentity) returns (HelloReply) {
option (google.api.http) = {
post: "/api/v1/suites"
body: "*"
};
}
rpc ImportTestSuite(TestSuiteSource) returns (CommonResult) {
option (google.api.http) = {
post: "/api/v1/suites/import"
body: "*"
};
}
rpc GetTestSuite(TestSuiteIdentity) returns (TestSuite) {
option (google.api.http) = {
get: "/api/v1/suites/{name}"
};
}
rpc UpdateTestSuite(TestSuite) returns (HelloReply) {
option (google.api.http) = {
put: "/api/v1/suites/{name}"
body: "*"
};
}
rpc DeleteTestSuite(TestSuiteIdentity) returns (HelloReply) {
option (google.api.http) = {
delete: "/api/v1/suites/{name}"
};
}
rpc DuplicateTestSuite(TestSuiteDuplicate) returns (HelloReply) {
option (google.api.http) = {
post: "/api/v1/suites/{sourceSuiteName}/duplicate"
body: "*"
};
}
rpc RenameTestSuite(TestSuiteDuplicate) returns (HelloReply) {
option (google.api.http) = {
post: "/api/v1/suites/{sourceSuiteName}/rename"
body: "*"
};
}
rpc GetTestSuiteYaml(TestSuiteIdentity) returns (YamlData) {
option (google.api.http) = {
get: "/api/v1/suites/{name}/yaml"
};
}
// test cases related
rpc ListTestCase(TestSuiteIdentity) returns (Suite) {
option (google.api.http) = {
get: "/api/v1/suites/{name}/cases"
};
}
// run target test case of a specific test suite
rpc RunTestCase(TestCaseIdentity) returns (TestCaseResult) {
option (google.api.http) = {
post: "/api/v1/suites/{suite}/cases/{testcase}/run"
body: "*"
};
}
rpc BatchRun (stream BatchTestTask) returns (stream TestResult) {
option (google.api.http) = {
post: "/api/v1/batchRun"
body: "*"
};
}
rpc GetTestCase(TestCaseIdentity) returns (TestCase) {
option (google.api.http) = {
get: "/api/v1/suites/{suite}/cases/{testcase}"
};
}
rpc CreateTestCase(TestCaseWithSuite) returns (HelloReply) {
option (google.api.http) = {
post: "/api/v1/suites/{suiteName}/cases"
body: "*"
};
}
rpc UpdateTestCase(TestCaseWithSuite) returns (HelloReply) {
option (google.api.http) = {
put: "/api/v1/suites/{suiteName}/cases/{data.name}"
body: "*"
};
}
rpc DeleteTestCase(TestCaseIdentity) returns (HelloReply) {
option (google.api.http) = {
delete: "/api/v1/suites/{suite}/cases/{testcase}"
};
}
rpc DuplicateTestCase(TestCaseDuplicate) returns (HelloReply) {
option (google.api.http) = {
post: "/api/v1/suites/{sourceSuiteName}/cases/{sourceCaseName}/duplicate"
body: "*"
};
}
rpc RenameTestCase(TestCaseDuplicate) returns (HelloReply) {
option (google.api.http) = {
post: "/api/v1/suites/{sourceSuiteName}/cases/{sourceCaseName}/rename"
body: "*"
};
}
rpc GetSuggestedAPIs(TestSuiteIdentity) returns (TestCases) {
option (google.api.http) = {
get: "/api/v1/suggestedAPIs"
};
}
// history test related
rpc GetHistorySuites(Empty) returns (HistorySuites) {
option (google.api.http) = {
post: "/api/v1/historySuites"
};
}
rpc GetHistoryTestCaseWithResult(HistoryTestCase) returns (HistoryTestResult) {
option (google.api.http) = {
get: "/api/v1/historyTestCaseWithResult/{ID}"
};
}
rpc GetHistoryTestCase(HistoryTestCase) returns (HistoryTestCase) {
option (google.api.http) = {
get: "/api/v1/historyTestCase/{ID}"
};
}
rpc DeleteHistoryTestCase(HistoryTestCase) returns (HelloReply) {
option (google.api.http) = {
delete: "/api/v1/historyTestCase/{ID}"
};
}
rpc DeleteAllHistoryTestCase(HistoryTestCase) returns (HelloReply) {
option (google.api.http) = {
delete: "/api/v1/historySuites/{suiteName}/cases/{caseName}"
};
}
rpc GetTestCaseAllHistory(TestCase) returns (HistoryTestCases) {
option (google.api.http) = {
post: "/api/v1/suites/{suiteName}/cases/{name}"
};
}
// code generator
rpc ListCodeGenerator(Empty) returns (SimpleList) {
option (google.api.http) = {
get: "/api/v1/codeGenerators"
};
}
rpc GenerateCode(CodeGenerateRequest) returns (CommonResult) {
option (google.api.http) = {
post: "/api/v1/codeGenerators/generate"
body: "*"
};
}
rpc HistoryGenerateCode(CodeGenerateRequest) returns (CommonResult) {
option (google.api.http) = {
post: "/api/v1/codeGenerators/history/generate"
body: "*"
};
}
// converter
rpc ListConverter(Empty) returns (SimpleList) {
option (google.api.http) = {
get: "/api/v1/converters"
};
}
rpc ConvertTestSuite(CodeGenerateRequest) returns (CommonResult) {
option (google.api.http) = {
post: "/api/v1/converters/convert"
body: "*"
};
}
// common services
rpc PopularHeaders(Empty) returns (Pairs) {
option (google.api.http) = {
get: "/api/v1/popularHeaders"
};
}
rpc FunctionsQuery(SimpleQuery) returns (Pairs) {
option (google.api.http) = {
get: "/api/v1/functions"
};
}
rpc FunctionsQueryStream(stream SimpleQuery) returns (stream Pairs) {
option (google.api.http) = {
get: "/api/v1/functionsQuery"
};
}
rpc GetVersion(Empty) returns (Version) {
option (google.api.http) = {
get: "/api/v1/version"
};
}
rpc Sample(Empty) returns (HelloReply) {
option (google.api.http) = {
get: "/api/v1/sample"
};
}
rpc DownloadResponseFile(TestCase) returns (FileData) {
option (google.api.http) = {
post: "/api/v1/downloadFile/{response.body}"
body: "*"
};
}
// stores related interfaces
rpc GetStoreKinds(Empty) returns (StoreKinds) {
option (google.api.http) = {
get: "/api/v1/stores/kinds"
};
}
rpc GetStores(Empty) returns (Stores) {
option (google.api.http) = {
get: "/api/v1/stores"
};
}
rpc CreateStore(Store) returns (Store) {
option (google.api.http) = {
post: "/api/v1/stores"
body: "*"
};
}
rpc UpdateStore(Store) returns (Store) {
option (google.api.http) = {
put: "/api/v1/stores/{name}"
body: "*"
};
}
rpc DeleteStore(Store) returns (Store) {
option (google.api.http) = {
delete: "/api/v1/stores/{name}"
};
}
rpc VerifyStore(SimpleQuery) returns (ExtensionStatus) {
option (google.api.http) = {
post: "/api/v1/stores/verify"
body: "*"
};
}
// secret related interfaces
rpc GetSecrets(Empty) returns (Secrets) {
option (google.api.http) = {
get: "/api/v1/secrets"
};
}
rpc CreateSecret(Secret) returns (CommonResult) {
option (google.api.http) = {
post: "/api/v1/secrets"
body: "*"
};
}
rpc DeleteSecret(Secret) returns (CommonResult) {
option (google.api.http) = {
delete: "/api/v1/secrets/{Name}"
};
}
rpc UpdateSecret(Secret) returns (CommonResult) {
option (google.api.http) = {
put: "/api/v1/secrets/{Name}"
body: "*"
};
}
// extension
rpc PProf(PProfRequest) returns (PProfData) {}
}
service RunnerExtension {
rpc Run(TestSuiteWithCase) returns (CommonResult) {
option (google.api.http) = {
post: "/api/v1/extension/run"
body: "*"
};
}
}
message Suites {
map<string, Items> data = 1;
}
message Items {
repeated string data = 1;
string kind = 2;
}
message HistorySuites {
map<string, HistoryItems> data = 1;
}
message HistoryItems {
repeated HistoryCaseIdentity data = 1;
}
message HistoryCaseIdentity {
string suite = 1;
string testcase = 2;
string historySuiteName = 3;
string kind = 4;
string ID = 5;
}
message TestCaseIdentity {
string suite = 1;
string testcase = 2;
repeated Pair parameters = 3;
}
message TestSuiteSource {
string kind = 1;
string url = 2;
string data = 3;
}
message TestSuite {
string name = 1;
string api = 2;
repeated Pair param = 3;
APISpec spec = 4;
}
message TestSuiteWithCase {
TestSuite suite = 1;
TestCase case = 2;
}
message APISpec {
string kind = 1;
string url = 2;
RPC rpc = 3;
Secure secure = 4;
}
message Secure {
bool insecure = 1;
string cert = 2;
string ca = 3;
string serverName = 4;
string key = 5;
}
message RPC{
repeated string import = 1;
bool serverReflection = 2;
string protofile = 3;
string protoset = 4;
string raw = 5;
}
message TestSuiteIdentity {
string name = 1;
string api = 2;
string kind = 3;
}
message TestSuiteDuplicate {
string sourceSuiteName = 1;
string targetSuiteName = 2;
}
message TestCaseDuplicate {
string sourceSuiteName = 1;
string sourceCaseName = 2;
string targetSuiteName = 3;
string targetCaseName = 4;
}
message TestTask {
string data = 1;
string kind = 2;
string caseName = 3;
string level = 4;
map<string, string> env = 5;
repeated Pair parameters = 6;
}
message BatchTestTask {
string suiteName = 1;
string caseName = 2;
repeated Pair parameters = 3;
int32 count = 4;
string interval = 5;
}
message TestResult {
string message = 1;
string error = 2;
repeated TestCaseResult testCaseResult = 3;
}
message HistoryTestResult {
string message = 1;
string error = 2;
repeated TestCaseResult testCaseResult = 3;
HistoryTestCase data = 4;
google.protobuf.Timestamp createTime = 5;
}
message HelloReply {
string message = 1;
string error = 2;
}
message YamlData {
bytes data = 1;
}
message Suite {
string name = 1;
string api = 2;
repeated TestCase items = 3;
}
message TestCaseWithSuite {
string suiteName = 1;
TestCase data = 2;
}
message TestCases {
repeated TestCase data = 1;
}
message TestCase {
string name = 1;
string suiteName = 2;
Request request = 3;
Response response = 4;
string server = 5;
}
message HistoryTestCase {
string caseName = 1;
string suiteName = 2;
string historySuiteName = 3;
google.protobuf.Timestamp createTime = 4;
repeated Pair suiteParam = 5;
APISpec suiteSpec = 6;
string suiteApi = 7;
Request request = 8;
Response response = 9;
string ID = 10;
repeated Pair historyHeader = 11;
}
message HistoryTestCases{
repeated HistoryTestCase data = 1;
}
message Request {
string api = 1;
string method = 2;
repeated Pair header = 3;
repeated Pair query = 4;
repeated Pair cookie = 5;
repeated Pair form = 6;
string body = 7;
}
message Response {
int32 statusCode = 1;
string body = 2;
repeated Pair header = 3;
repeated Pair bodyFieldsExpect = 4;
repeated string verify = 5;
repeated ConditionalVerify ConditionalVerify = 6;
string schema = 7;
}
message ConditionalVerify {
repeated string condition = 1;
repeated string verify = 2;
}
message TestCaseResult {
int32 statusCode = 1;
string body = 2;
repeated Pair header = 3;
string error = 4;
string id = 5;
string output = 6;
}
message Pair {
string key = 1;
string value = 2;
string description = 3;
}
message Pairs {
repeated Pair data = 1;
}
message SimpleQuery {
string name = 1;
string kind = 2;
}
message Stores {
repeated Store data = 1;
}
message Store {
string name = 1;
string owner = 2;
string description = 3;
string url = 4;
string username = 5;
string password = 6;
repeated Pair properties = 7;
StoreKind kind = 8;
bool ready = 9;
bool readOnly = 10;
bool disabled = 11;
}
message StoreKinds {
repeated StoreKind data = 1;
}
message StoreKind {
string name = 1;
string url = 2;
bool enabled = 3;
}
message CommonResult {
bool success = 1;
string message = 2;
}
message SimpleList {
repeated Pair data = 1;
}
message SimpleName {
string name = 1;
}
message CodeGenerateRequest {
string TestSuite = 1;
string TestCase = 2;
string Generator = 3;
string ID = 4;
}
message Secrets {
repeated Secret data = 1;
}
message Secret {
string Name = 1;
string Value = 2;
string Description = 3;
}
message ExtensionStatus {
bool ready = 1;
bool readOnly = 2;
string version = 3;
string message = 4;
}
message PProfRequest {
string name = 1;
}
message PProfData {
bytes data = 1;
}
message FileData {
bytes data = 1;
string content_type = 2;
string filename = 3;
}
message Empty {
}
service Mock {
rpc Reload(MockConfig) returns (Empty) {
option (google.api.http) = {
post: "/api/v1/mock/reload"
body: "*"
};
}
rpc GetConfig(Empty) returns (MockConfig) {
option (google.api.http) = {
get: "/api/v1/mock/config"
};
}
}
message MockConfig {
string Prefix = 1;
string Config = 2;
int32 Port = 3;
}
message Version {
string version = 1;
string commit = 2;
string date = 3;
}