@stanterprise/protobuf 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2201 -444
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2197 -444
- package/dist/index.mjs.map +1 -1
- package/dist/lib/google/protobuf/duration.d.ts +33 -0
- package/dist/lib/google/protobuf/duration.d.ts.map +1 -0
- package/dist/lib/index.d.ts +8 -2
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/entities/test_case.d.ts +244 -0
- package/dist/lib/testsystem/v1/entities/test_case.d.ts.map +1 -0
- package/dist/lib/testsystem/v1/entities/test_suite.d.ts +166 -0
- package/dist/lib/testsystem/v1/entities/test_suite.d.ts.map +1 -0
- package/dist/lib/testsystem/v1/events/events.d.ts +216 -72
- package/dist/lib/testsystem/v1/events/events.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/observer/observer.d.ts +103 -15
- package/dist/lib/testsystem/v1/observer/observer.d.ts.map +1 -1
- package/lib/google/protobuf/duration.ts +98 -0
- package/lib/index.ts +16 -4
- package/lib/testsystem/v1/entities/test_case.ts +987 -0
- package/lib/testsystem/v1/entities/test_suite.ts +639 -0
- package/lib/testsystem/v1/events/events.ts +811 -303
- package/lib/testsystem/v1/observer/observer.ts +125 -21
- package/package.json +1 -1
- package/dist/lib/testsystem/v1/entities/entities.d.ts +0 -108
- package/dist/lib/testsystem/v1/entities/entities.d.ts.map +0 -1
- package/lib/testsystem/v1/entities/entities.ts +0 -405
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by the protoc-gen-ts. DO NOT EDIT!
|
|
3
|
+
* compiler version: 3.19.1
|
|
4
|
+
* source: google/protobuf/duration.proto
|
|
5
|
+
* git: https://github.com/thesayyn/protoc-gen-ts */
|
|
6
|
+
import * as pb_1 from "google-protobuf";
|
|
7
|
+
export declare namespace google.protobuf {
|
|
8
|
+
class Duration extends pb_1.Message {
|
|
9
|
+
#private;
|
|
10
|
+
constructor(data?: any[] | {
|
|
11
|
+
seconds?: number;
|
|
12
|
+
nanos?: number;
|
|
13
|
+
});
|
|
14
|
+
get seconds(): number;
|
|
15
|
+
set seconds(value: number);
|
|
16
|
+
get nanos(): number;
|
|
17
|
+
set nanos(value: number);
|
|
18
|
+
static fromObject(data: {
|
|
19
|
+
seconds?: number;
|
|
20
|
+
nanos?: number;
|
|
21
|
+
}): Duration;
|
|
22
|
+
toObject(): {
|
|
23
|
+
seconds?: number;
|
|
24
|
+
nanos?: number;
|
|
25
|
+
};
|
|
26
|
+
serialize(): Uint8Array;
|
|
27
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
28
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Duration;
|
|
29
|
+
serializeBinary(): Uint8Array;
|
|
30
|
+
static deserializeBinary(bytes: Uint8Array): Duration;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=duration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"duration.d.ts","sourceRoot":"","sources":["../../../../lib/google/protobuf/duration.ts"],"names":[],"mappings":"AAAA;;;;oDAIoD;AACpD,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,yBAAiB,MAAM,CAAC,QAAQ,CAAC;IAC7B,MAAa,QAAS,SAAQ,IAAI,CAAC,OAAO;;oBAE1B,IAAI,CAAC,EAAE,GAAG,EAAE,GAAG;YACvB,OAAO,CAAC,EAAE,MAAM,CAAC;YACjB,KAAK,CAAC,EAAE,MAAM,CAAC;SAClB;QAYD,IAAI,OAAO,IAGQ,MAAM,CADxB;QACD,IAAI,OAAO,CAAC,KAAK,EAAE,MAAM,EAExB;QACD,IAAI,KAAK,IAGQ,MAAM,CADtB;QACD,IAAI,KAAK,CAAC,KAAK,EAAE,MAAM,EAEtB;QACD,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE;YACpB,OAAO,CAAC,EAAE,MAAM,CAAC;YACjB,KAAK,CAAC,EAAE,MAAM,CAAC;SAClB,GAAG,QAAQ;QAUZ,QAAQ;sBAEU,MAAM;oBACR,MAAM;;QAUtB,SAAS,IAAI,UAAU;QACvB,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,YAAY,GAAG,IAAI;QAUrC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,CAAC,YAAY,GAAG,QAAQ;QAiBnE,eAAe,IAAI,UAAU;QAG7B,MAAM,CAAC,iBAAiB,CAAC,KAAK,EAAE,UAAU,GAAG,QAAQ;KAGxD;CACJ"}
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import * as googleTimestamp from '../lib/google/protobuf/timestamp';
|
|
2
2
|
import * as testsystemCommon from '../lib/testsystem/v1/common/common';
|
|
3
|
-
import * as
|
|
3
|
+
import * as testsystemEntitiesTestCase from '../lib/testsystem/v1/entities/test_case';
|
|
4
|
+
import * as testsystemEntitiesTestSuite from '../lib/testsystem/v1/entities/test_suite';
|
|
4
5
|
import * as testsystemEvents from '../lib/testsystem/v1/events/events';
|
|
5
6
|
import * as testsystemObserver from '../lib/testsystem/v1/observer/observer';
|
|
6
|
-
type TestsystemNS = typeof testsystemCommon.testsystem & typeof
|
|
7
|
+
type TestsystemNS = typeof testsystemCommon.testsystem & typeof testsystemEntitiesTestCase.testsystem & typeof testsystemEntitiesTestSuite.testsystem & typeof testsystemEvents.testsystem & typeof testsystemObserver.testsystem;
|
|
7
8
|
declare const testsystem: TestsystemNS;
|
|
9
|
+
declare const common: typeof testsystemCommon.testsystem.v1.common;
|
|
10
|
+
declare const entities: typeof testsystemEntitiesTestCase.testsystem.v1.entities & typeof testsystemEntitiesTestSuite.testsystem.v1.entities;
|
|
11
|
+
declare const events: typeof testsystemEvents.testsystem.v1.events;
|
|
12
|
+
declare const observer: typeof testsystemObserver.testsystem.v1.observer;
|
|
13
|
+
export { common, entities, events, observer };
|
|
8
14
|
export { testsystem };
|
|
9
15
|
export declare const google: typeof googleTimestamp.google;
|
|
10
16
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,eAAe,MAAM,kCAAkC,CAAC;AACpE,OAAO,KAAK,gBAAgB,MAAM,oCAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,eAAe,MAAM,kCAAkC,CAAC;AACpE,OAAO,KAAK,gBAAgB,MAAM,oCAAoC,CAAC;AAEvE,OAAO,KAAK,0BAA0B,MAAM,yCAAyC,CAAC;AACtF,OAAO,KAAK,2BAA2B,MAAM,0CAA0C,CAAC;AACxF,OAAO,KAAK,gBAAgB,MAAM,oCAAoC,CAAC;AACvE,OAAO,KAAK,kBAAkB,MAAM,wCAAwC,CAAC;AAE7E,KAAK,YAAY,GAAG,OAAO,gBAAgB,CAAC,UAAU,GACpD,OAAO,0BAA0B,CAAC,UAAU,GAC5C,OAAO,2BAA2B,CAAC,UAAU,GAC7C,OAAO,gBAAgB,CAAC,UAAU,GAClC,OAAO,kBAAkB,CAAC,UAAU,CAAC;AAkBvC,QAAA,MAAM,UAAU,EAAE,YAYD,CAAC;AAClB,QAAA,MAAM,MAAM,8CAAwC,CAAC;AACrD,QAAA,MAAM,QAAQ,sHAAyB,CAAC;AACxC,QAAA,MAAM,MAAM,8CAAwC,CAAC;AACrD,QAAA,MAAM,QAAQ,kDAA4C,CAAC;AAE3D,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,CAAC;AACtB,eAAO,MAAM,MAAM,+BAAyB,CAAC"}
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by the protoc-gen-ts. DO NOT EDIT!
|
|
3
|
+
* compiler version: 3.19.1
|
|
4
|
+
* source: testsystem/v1/entities/test_case.proto
|
|
5
|
+
* git: https://github.com/thesayyn/protoc-gen-ts */
|
|
6
|
+
import * as dependency_1 from "./../common/common";
|
|
7
|
+
import * as dependency_2 from "./../../../google/protobuf/timestamp";
|
|
8
|
+
import * as dependency_3 from "./../../../google/protobuf/duration";
|
|
9
|
+
import * as pb_1 from "google-protobuf";
|
|
10
|
+
export declare namespace testsystem.v1.entities {
|
|
11
|
+
class TestCaseSpec extends pb_1.Message {
|
|
12
|
+
#private;
|
|
13
|
+
constructor(data?: any[] | {
|
|
14
|
+
id?: string;
|
|
15
|
+
name?: string;
|
|
16
|
+
description?: string;
|
|
17
|
+
metadata?: Map<string, string>;
|
|
18
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
19
|
+
parent_suite_id?: string;
|
|
20
|
+
tags?: string[];
|
|
21
|
+
});
|
|
22
|
+
get id(): string;
|
|
23
|
+
set id(value: string);
|
|
24
|
+
get name(): string;
|
|
25
|
+
set name(value: string);
|
|
26
|
+
get description(): string;
|
|
27
|
+
set description(value: string);
|
|
28
|
+
get metadata(): Map<string, string>;
|
|
29
|
+
set metadata(value: Map<string, string>);
|
|
30
|
+
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
31
|
+
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
32
|
+
get parent_suite_id(): string;
|
|
33
|
+
set parent_suite_id(value: string);
|
|
34
|
+
get tags(): string[];
|
|
35
|
+
set tags(value: string[]);
|
|
36
|
+
static fromObject(data: {
|
|
37
|
+
id?: string;
|
|
38
|
+
name?: string;
|
|
39
|
+
description?: string;
|
|
40
|
+
metadata?: {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
44
|
+
parent_suite_id?: string;
|
|
45
|
+
tags?: string[];
|
|
46
|
+
}): TestCaseSpec;
|
|
47
|
+
toObject(): {
|
|
48
|
+
id?: string;
|
|
49
|
+
name?: string;
|
|
50
|
+
description?: string;
|
|
51
|
+
metadata?: {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
55
|
+
parent_suite_id?: string;
|
|
56
|
+
tags?: string[];
|
|
57
|
+
};
|
|
58
|
+
serialize(): Uint8Array;
|
|
59
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
60
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TestCaseSpec;
|
|
61
|
+
serializeBinary(): Uint8Array;
|
|
62
|
+
static deserializeBinary(bytes: Uint8Array): TestCaseSpec;
|
|
63
|
+
}
|
|
64
|
+
class TestCaseRun extends pb_1.Message {
|
|
65
|
+
#private;
|
|
66
|
+
constructor(data?: any[] | {
|
|
67
|
+
id?: string;
|
|
68
|
+
test_id?: string;
|
|
69
|
+
run_id?: string;
|
|
70
|
+
test_suite_run_id?: string;
|
|
71
|
+
title?: string;
|
|
72
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
73
|
+
start_time?: dependency_2.google.protobuf.Timestamp;
|
|
74
|
+
attachments?: dependency_1.testsystem.v1.common.Attachment[];
|
|
75
|
+
error_message?: string;
|
|
76
|
+
stack_trace?: string;
|
|
77
|
+
metadata?: Map<string, string>;
|
|
78
|
+
errors?: string[];
|
|
79
|
+
actual_tags?: string[];
|
|
80
|
+
});
|
|
81
|
+
get id(): string;
|
|
82
|
+
set id(value: string);
|
|
83
|
+
get test_id(): string;
|
|
84
|
+
set test_id(value: string);
|
|
85
|
+
get run_id(): string;
|
|
86
|
+
set run_id(value: string);
|
|
87
|
+
get test_suite_run_id(): string;
|
|
88
|
+
set test_suite_run_id(value: string);
|
|
89
|
+
get title(): string;
|
|
90
|
+
set title(value: string);
|
|
91
|
+
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
92
|
+
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
93
|
+
get start_time(): dependency_2.google.protobuf.Timestamp;
|
|
94
|
+
set start_time(value: dependency_2.google.protobuf.Timestamp);
|
|
95
|
+
get has_start_time(): boolean;
|
|
96
|
+
get attachments(): dependency_1.testsystem.v1.common.Attachment[];
|
|
97
|
+
set attachments(value: dependency_1.testsystem.v1.common.Attachment[]);
|
|
98
|
+
get error_message(): string;
|
|
99
|
+
set error_message(value: string);
|
|
100
|
+
get stack_trace(): string;
|
|
101
|
+
set stack_trace(value: string);
|
|
102
|
+
get metadata(): Map<string, string>;
|
|
103
|
+
set metadata(value: Map<string, string>);
|
|
104
|
+
get errors(): string[];
|
|
105
|
+
set errors(value: string[]);
|
|
106
|
+
get actual_tags(): string[];
|
|
107
|
+
set actual_tags(value: string[]);
|
|
108
|
+
static fromObject(data: {
|
|
109
|
+
id?: string;
|
|
110
|
+
test_id?: string;
|
|
111
|
+
run_id?: string;
|
|
112
|
+
test_suite_run_id?: string;
|
|
113
|
+
title?: string;
|
|
114
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
115
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
116
|
+
attachments?: ReturnType<typeof dependency_1.testsystem.v1.common.Attachment.prototype.toObject>[];
|
|
117
|
+
error_message?: string;
|
|
118
|
+
stack_trace?: string;
|
|
119
|
+
metadata?: {
|
|
120
|
+
[key: string]: string;
|
|
121
|
+
};
|
|
122
|
+
errors?: string[];
|
|
123
|
+
actual_tags?: string[];
|
|
124
|
+
}): TestCaseRun;
|
|
125
|
+
toObject(): {
|
|
126
|
+
id?: string;
|
|
127
|
+
test_id?: string;
|
|
128
|
+
run_id?: string;
|
|
129
|
+
test_suite_run_id?: string;
|
|
130
|
+
title?: string;
|
|
131
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
132
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
133
|
+
attachments?: ReturnType<typeof dependency_1.testsystem.v1.common.Attachment.prototype.toObject>[];
|
|
134
|
+
error_message?: string;
|
|
135
|
+
stack_trace?: string;
|
|
136
|
+
metadata?: {
|
|
137
|
+
[key: string]: string;
|
|
138
|
+
};
|
|
139
|
+
errors?: string[];
|
|
140
|
+
actual_tags?: string[];
|
|
141
|
+
};
|
|
142
|
+
serialize(): Uint8Array;
|
|
143
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
144
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TestCaseRun;
|
|
145
|
+
serializeBinary(): Uint8Array;
|
|
146
|
+
static deserializeBinary(bytes: Uint8Array): TestCaseRun;
|
|
147
|
+
}
|
|
148
|
+
class StepRun extends pb_1.Message {
|
|
149
|
+
#private;
|
|
150
|
+
constructor(data?: any[] | {
|
|
151
|
+
id?: string;
|
|
152
|
+
run_id?: string;
|
|
153
|
+
test_case_run_id?: string;
|
|
154
|
+
title?: string;
|
|
155
|
+
description?: string;
|
|
156
|
+
start_time?: dependency_2.google.protobuf.Timestamp;
|
|
157
|
+
duration?: dependency_3.google.protobuf.Duration;
|
|
158
|
+
type?: string;
|
|
159
|
+
metadata?: Map<string, string>;
|
|
160
|
+
parent_step_id?: string;
|
|
161
|
+
worker_index?: string;
|
|
162
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
163
|
+
error?: string;
|
|
164
|
+
errors?: string[];
|
|
165
|
+
location?: string;
|
|
166
|
+
});
|
|
167
|
+
get id(): string;
|
|
168
|
+
set id(value: string);
|
|
169
|
+
get run_id(): string;
|
|
170
|
+
set run_id(value: string);
|
|
171
|
+
get test_case_run_id(): string;
|
|
172
|
+
set test_case_run_id(value: string);
|
|
173
|
+
get title(): string;
|
|
174
|
+
set title(value: string);
|
|
175
|
+
get description(): string;
|
|
176
|
+
set description(value: string);
|
|
177
|
+
get start_time(): dependency_2.google.protobuf.Timestamp;
|
|
178
|
+
set start_time(value: dependency_2.google.protobuf.Timestamp);
|
|
179
|
+
get has_start_time(): boolean;
|
|
180
|
+
get duration(): dependency_3.google.protobuf.Duration;
|
|
181
|
+
set duration(value: dependency_3.google.protobuf.Duration);
|
|
182
|
+
get has_duration(): boolean;
|
|
183
|
+
get type(): string;
|
|
184
|
+
set type(value: string);
|
|
185
|
+
get metadata(): Map<string, string>;
|
|
186
|
+
set metadata(value: Map<string, string>);
|
|
187
|
+
get parent_step_id(): string;
|
|
188
|
+
set parent_step_id(value: string);
|
|
189
|
+
get worker_index(): string;
|
|
190
|
+
set worker_index(value: string);
|
|
191
|
+
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
192
|
+
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
193
|
+
get error(): string;
|
|
194
|
+
set error(value: string);
|
|
195
|
+
get errors(): string[];
|
|
196
|
+
set errors(value: string[]);
|
|
197
|
+
get location(): string;
|
|
198
|
+
set location(value: string);
|
|
199
|
+
static fromObject(data: {
|
|
200
|
+
id?: string;
|
|
201
|
+
run_id?: string;
|
|
202
|
+
test_case_run_id?: string;
|
|
203
|
+
title?: string;
|
|
204
|
+
description?: string;
|
|
205
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
206
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
207
|
+
type?: string;
|
|
208
|
+
metadata?: {
|
|
209
|
+
[key: string]: string;
|
|
210
|
+
};
|
|
211
|
+
parent_step_id?: string;
|
|
212
|
+
worker_index?: string;
|
|
213
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
214
|
+
error?: string;
|
|
215
|
+
errors?: string[];
|
|
216
|
+
location?: string;
|
|
217
|
+
}): StepRun;
|
|
218
|
+
toObject(): {
|
|
219
|
+
id?: string;
|
|
220
|
+
run_id?: string;
|
|
221
|
+
test_case_run_id?: string;
|
|
222
|
+
title?: string;
|
|
223
|
+
description?: string;
|
|
224
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
225
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
226
|
+
type?: string;
|
|
227
|
+
metadata?: {
|
|
228
|
+
[key: string]: string;
|
|
229
|
+
};
|
|
230
|
+
parent_step_id?: string;
|
|
231
|
+
worker_index?: string;
|
|
232
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
233
|
+
error?: string;
|
|
234
|
+
errors?: string[];
|
|
235
|
+
location?: string;
|
|
236
|
+
};
|
|
237
|
+
serialize(): Uint8Array;
|
|
238
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
239
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): StepRun;
|
|
240
|
+
serializeBinary(): Uint8Array;
|
|
241
|
+
static deserializeBinary(bytes: Uint8Array): StepRun;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
//# sourceMappingURL=test_case.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test_case.d.ts","sourceRoot":"","sources":["../../../../../lib/testsystem/v1/entities/test_case.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by the protoc-gen-ts. DO NOT EDIT!
|
|
3
|
+
* compiler version: 3.19.1
|
|
4
|
+
* source: testsystem/v1/entities/test_suite.proto
|
|
5
|
+
* git: https://github.com/thesayyn/protoc-gen-ts */
|
|
6
|
+
import * as dependency_1 from "./../common/common";
|
|
7
|
+
import * as dependency_2 from "./../../../google/protobuf/timestamp";
|
|
8
|
+
import * as dependency_3 from "./../../../google/protobuf/duration";
|
|
9
|
+
import * as pb_1 from "google-protobuf";
|
|
10
|
+
export declare namespace testsystem.v1.entities {
|
|
11
|
+
enum SuiteType {
|
|
12
|
+
ROOT = 0,
|
|
13
|
+
PROJECT = 1,
|
|
14
|
+
SUBSUITE = 2
|
|
15
|
+
}
|
|
16
|
+
class TestSuiteRun extends pb_1.Message {
|
|
17
|
+
#private;
|
|
18
|
+
constructor(data?: any[] | {
|
|
19
|
+
id?: string;
|
|
20
|
+
name?: string;
|
|
21
|
+
description?: string;
|
|
22
|
+
start_time?: dependency_2.google.protobuf.Timestamp;
|
|
23
|
+
end_time?: dependency_2.google.protobuf.Timestamp;
|
|
24
|
+
duration?: dependency_3.google.protobuf.Duration;
|
|
25
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
26
|
+
metadata?: Map<string, string>;
|
|
27
|
+
test_suite_spec_id?: string;
|
|
28
|
+
initiated_by?: string;
|
|
29
|
+
});
|
|
30
|
+
get id(): string;
|
|
31
|
+
set id(value: string);
|
|
32
|
+
get name(): string;
|
|
33
|
+
set name(value: string);
|
|
34
|
+
get description(): string;
|
|
35
|
+
set description(value: string);
|
|
36
|
+
get start_time(): dependency_2.google.protobuf.Timestamp;
|
|
37
|
+
set start_time(value: dependency_2.google.protobuf.Timestamp);
|
|
38
|
+
get has_start_time(): boolean;
|
|
39
|
+
get end_time(): dependency_2.google.protobuf.Timestamp;
|
|
40
|
+
set end_time(value: dependency_2.google.protobuf.Timestamp);
|
|
41
|
+
get has_end_time(): boolean;
|
|
42
|
+
get duration(): dependency_3.google.protobuf.Duration;
|
|
43
|
+
set duration(value: dependency_3.google.protobuf.Duration);
|
|
44
|
+
get has_duration(): boolean;
|
|
45
|
+
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
46
|
+
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
47
|
+
get metadata(): Map<string, string>;
|
|
48
|
+
set metadata(value: Map<string, string>);
|
|
49
|
+
get test_suite_spec_id(): string;
|
|
50
|
+
set test_suite_spec_id(value: string);
|
|
51
|
+
get initiated_by(): string;
|
|
52
|
+
set initiated_by(value: string);
|
|
53
|
+
static fromObject(data: {
|
|
54
|
+
id?: string;
|
|
55
|
+
name?: string;
|
|
56
|
+
description?: string;
|
|
57
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
58
|
+
end_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
59
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
60
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
61
|
+
metadata?: {
|
|
62
|
+
[key: string]: string;
|
|
63
|
+
};
|
|
64
|
+
test_suite_spec_id?: string;
|
|
65
|
+
initiated_by?: string;
|
|
66
|
+
}): TestSuiteRun;
|
|
67
|
+
toObject(): {
|
|
68
|
+
id?: string;
|
|
69
|
+
name?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
72
|
+
end_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
73
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
74
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
75
|
+
metadata?: {
|
|
76
|
+
[key: string]: string;
|
|
77
|
+
};
|
|
78
|
+
test_suite_spec_id?: string;
|
|
79
|
+
initiated_by?: string;
|
|
80
|
+
};
|
|
81
|
+
serialize(): Uint8Array;
|
|
82
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
83
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TestSuiteRun;
|
|
84
|
+
serializeBinary(): Uint8Array;
|
|
85
|
+
static deserializeBinary(bytes: Uint8Array): TestSuiteRun;
|
|
86
|
+
}
|
|
87
|
+
class TestSuiteSpec extends pb_1.Message {
|
|
88
|
+
#private;
|
|
89
|
+
constructor(data?: any[] | {
|
|
90
|
+
id?: string;
|
|
91
|
+
name?: string;
|
|
92
|
+
run_id?: string;
|
|
93
|
+
test_spec_ids?: string[];
|
|
94
|
+
sub_suite_ids?: string[];
|
|
95
|
+
description?: string;
|
|
96
|
+
location?: string;
|
|
97
|
+
metadata?: Map<string, string>;
|
|
98
|
+
type?: SuiteType;
|
|
99
|
+
parent_suite_id?: string;
|
|
100
|
+
author?: string;
|
|
101
|
+
owner?: string;
|
|
102
|
+
});
|
|
103
|
+
get id(): string;
|
|
104
|
+
set id(value: string);
|
|
105
|
+
get name(): string;
|
|
106
|
+
set name(value: string);
|
|
107
|
+
get run_id(): string;
|
|
108
|
+
set run_id(value: string);
|
|
109
|
+
get test_spec_ids(): string[];
|
|
110
|
+
set test_spec_ids(value: string[]);
|
|
111
|
+
get sub_suite_ids(): string[];
|
|
112
|
+
set sub_suite_ids(value: string[]);
|
|
113
|
+
get description(): string;
|
|
114
|
+
set description(value: string);
|
|
115
|
+
get location(): string;
|
|
116
|
+
set location(value: string);
|
|
117
|
+
get metadata(): Map<string, string>;
|
|
118
|
+
set metadata(value: Map<string, string>);
|
|
119
|
+
get type(): SuiteType;
|
|
120
|
+
set type(value: SuiteType);
|
|
121
|
+
get parent_suite_id(): string;
|
|
122
|
+
set parent_suite_id(value: string);
|
|
123
|
+
get author(): string;
|
|
124
|
+
set author(value: string);
|
|
125
|
+
get owner(): string;
|
|
126
|
+
set owner(value: string);
|
|
127
|
+
static fromObject(data: {
|
|
128
|
+
id?: string;
|
|
129
|
+
name?: string;
|
|
130
|
+
run_id?: string;
|
|
131
|
+
test_spec_ids?: string[];
|
|
132
|
+
sub_suite_ids?: string[];
|
|
133
|
+
description?: string;
|
|
134
|
+
location?: string;
|
|
135
|
+
metadata?: {
|
|
136
|
+
[key: string]: string;
|
|
137
|
+
};
|
|
138
|
+
type?: SuiteType;
|
|
139
|
+
parent_suite_id?: string;
|
|
140
|
+
author?: string;
|
|
141
|
+
owner?: string;
|
|
142
|
+
}): TestSuiteSpec;
|
|
143
|
+
toObject(): {
|
|
144
|
+
id?: string;
|
|
145
|
+
name?: string;
|
|
146
|
+
run_id?: string;
|
|
147
|
+
test_spec_ids?: string[];
|
|
148
|
+
sub_suite_ids?: string[];
|
|
149
|
+
description?: string;
|
|
150
|
+
location?: string;
|
|
151
|
+
metadata?: {
|
|
152
|
+
[key: string]: string;
|
|
153
|
+
};
|
|
154
|
+
type?: SuiteType;
|
|
155
|
+
parent_suite_id?: string;
|
|
156
|
+
author?: string;
|
|
157
|
+
owner?: string;
|
|
158
|
+
};
|
|
159
|
+
serialize(): Uint8Array;
|
|
160
|
+
serialize(w: pb_1.BinaryWriter): void;
|
|
161
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TestSuiteSpec;
|
|
162
|
+
serializeBinary(): Uint8Array;
|
|
163
|
+
static deserializeBinary(bytes: Uint8Array): TestSuiteSpec;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
//# sourceMappingURL=test_suite.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test_suite.d.ts","sourceRoot":"","sources":["../../../../../lib/testsystem/v1/entities/test_suite.ts"],"names":[],"mappings":"AAAA;;;;oDAIoD;AACpD,OAAO,KAAK,YAAY,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,YAAY,MAAM,sCAAsC,CAAC;AACrE,OAAO,KAAK,YAAY,MAAM,qCAAqC,CAAC;AACpE,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,yBAAiB,UAAU,CAAC,EAAE,CAAC,QAAQ,CAAC;IACpC,KAAY,SAAS;QACjB,IAAI,IAAI;QACR,OAAO,IAAI;QACX,QAAQ,IAAI;KACf;IACD,MAAa,YAAa,SAAQ,IAAI,CAAC,OAAO;;oBAE9B,IAAI,CAAC,EAAE,GAAG,EAAE,GAAG;YACvB,EAAE,CAAC,EAAE,MAAM,CAAC;YACZ,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,UAAU,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC;YACpD,QAAQ,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC;YAClD,QAAQ,CAAC,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC;YACjD,MAAM,CAAC,EAAE,YAAY,CAAC,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC;YACtD,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;YAC/B,kBAAkB,CAAC,EAAE,MAAM,CAAC;YAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;SACzB;QAsCD,IAAI,EAAE,IAGQ,MAAM,CADnB;QACD,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAEnB;QACD,IAAI,IAAI,IAGQ,MAAM,CADrB;QACD,IAAI,IAAI,CAAC,KAAK,EAAE,MAAM,EAErB;QACD,IAAI,WAAW,IAGQ,MAAM,CAD5B;QACD,IAAI,WAAW,CAAC,KAAK,EAAE,MAAM,EAE5B;QACD,IAAI,UAAU,IAGQ,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAD3D;QACD,IAAI,UAAU,CAAC,KAAK,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,EAE3D;QACD,IAAI,cAAc,YAEjB;QACD,IAAI,QAAQ,IAGQ,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CADzD;QACD,IAAI,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,EAEzD;QACD,IAAI,YAAY,YAEf;QACD,IAAI,QAAQ,IAGQ,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CADxD;QACD,IAAI,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAExD;QACD,IAAI,YAAY,YAEf;QACD,IAAI,MAAM,IAGQ,YAAY,CAAC,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,CAD7D;QACD,IAAI,MAAM,CAAC,KAAK,EAAE,YAAY,CAAC,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,EAE7D;QACD,IAAI,QAAQ,IAGQ,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CADtC;QACD,IAAI,QAAQ,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EAEtC;QACD,IAAI,kBAAkB,IAGQ,MAAM,CADnC;QACD,IAAI,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAEnC;QACD,IAAI,YAAY,IAGQ,MAAM,CAD7B;QACD,IAAI,YAAY,CAAC,KAAK,EAAE,MAAM,EAE7B;QACD,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE;YACpB,EAAE,CAAC,EAAE,MAAM,CAAC;YACZ,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,UAAU,CAAC,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;YAC1F,QAAQ,CAAC,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;YACxF,QAAQ,CAAC,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;YACvF,MAAM,CAAC,EAAE,YAAY,CAAC,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC;YACtD,QAAQ,CAAC,EAAE;gBACP,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;aACzB,CAAC;YACF,kBAAkB,CAAC,EAAE,MAAM,CAAC;YAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;SACzB,GAAG,YAAY;QAkChB,QAAQ;iBAEK,MAAM;mBACJ,MAAM;0BACC,MAAM;yBACP,UAAU,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC;uBAC9E,UAAU,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,CAAC;uBAC5E,UAAU,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,SAAS,CAAC,QAAQ,CAAC;qBAC7E,YAAY,CAAC,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU;uBAC1C;gBACP,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;aACzB;iCACoB,MAAM;2BACZ,MAAM;;QAkC7B,SAAS,IAAI,UAAU;QACvB,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,YAAY,GAAG,IAAI;QA8BrC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,CAAC,YAAY,GAAG,YAAY;QAyCvE,eAAe,IAAI,UAAU;QAG7B,MAAM,CAAC,iBAAiB,CAAC,KAAK,EAAE,UAAU,GAAG,YAAY;KAG5D;IACD,MAAa,aAAc,SAAQ,IAAI,CAAC,OAAO;;oBAE/B,IAAI,CAAC,EAAE,GAAG,EAAE,GAAG;YACvB,EAAE,CAAC,EAAE,MAAM,CAAC;YACZ,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;YACzB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;YACzB,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;YAClB,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;YAC/B,IAAI,CAAC,EAAE,SAAS,CAAC;YACjB,eAAe,CAAC,EAAE,MAAM,CAAC;YACzB,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,KAAK,CAAC,EAAE,MAAM,CAAC;SAClB;QA4CD,IAAI,EAAE,IAGQ,MAAM,CADnB;QACD,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAEnB;QACD,IAAI,IAAI,IAGQ,MAAM,CADrB;QACD,IAAI,IAAI,CAAC,KAAK,EAAE,MAAM,EAErB;QACD,IAAI,MAAM,IAGQ,MAAM,CADvB;QACD,IAAI,MAAM,CAAC,KAAK,EAAE,MAAM,EAEvB;QACD,IAAI,aAAa,IAGQ,MAAM,EAAE,CADhC;QACD,IAAI,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,EAEhC;QACD,IAAI,aAAa,IAGQ,MAAM,EAAE,CADhC;QACD,IAAI,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,EAEhC;QACD,IAAI,WAAW,IAGQ,MAAM,CAD5B;QACD,IAAI,WAAW,CAAC,KAAK,EAAE,MAAM,EAE5B;QACD,IAAI,QAAQ,IAGQ,MAAM,CADzB;QACD,IAAI,QAAQ,CAAC,KAAK,EAAE,MAAM,EAEzB;QACD,IAAI,QAAQ,IAGQ,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CADtC;QACD,IAAI,QAAQ,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EAEtC;QACD,IAAI,IAAI,IAGQ,SAAS,CADxB;QACD,IAAI,IAAI,CAAC,KAAK,EAAE,SAAS,EAExB;QACD,IAAI,eAAe,IAGQ,MAAM,CADhC;QACD,IAAI,eAAe,CAAC,KAAK,EAAE,MAAM,EAEhC;QACD,IAAI,MAAM,IAGQ,MAAM,CADvB;QACD,IAAI,MAAM,CAAC,KAAK,EAAE,MAAM,EAEvB;QACD,IAAI,KAAK,IAGQ,MAAM,CADtB;QACD,IAAI,KAAK,CAAC,KAAK,EAAE,MAAM,EAEtB;QACD,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE;YACpB,EAAE,CAAC,EAAE,MAAM,CAAC;YACZ,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;YACzB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;YACzB,WAAW,CAAC,EAAE,MAAM,CAAC;YACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;YAClB,QAAQ,CAAC,EAAE;gBACP,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;aACzB,CAAC;YACF,IAAI,CAAC,EAAE,SAAS,CAAC;YACjB,eAAe,CAAC,EAAE,MAAM,CAAC;YACzB,MAAM,CAAC,EAAE,MAAM,CAAC;YAChB,KAAK,CAAC,EAAE,MAAM,CAAC;SAClB,GAAG,aAAa;QAwCjB,QAAQ;iBAEK,MAAM;mBACJ,MAAM;qBACJ,MAAM;4BACC,MAAM,EAAE;4BACR,MAAM,EAAE;0BACV,MAAM;uBACT,MAAM;uBACN;gBACP,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;aACzB;mBACM,SAAS;8BACE,MAAM;qBACf,MAAM;oBACP,MAAM;;QAwCtB,SAAS,IAAI,UAAU;QACvB,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,YAAY,GAAG,IAAI;QAkCrC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,CAAC,YAAY,GAAG,aAAa;QA+CxE,eAAe,IAAI,UAAU;QAG7B,MAAM,CAAC,iBAAiB,CAAC,KAAK,EAAE,UAAU,GAAG,aAAa;KAG7D;CACJ"}
|