@stanterprise/protobuf 0.0.8 → 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 +1094 -590
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1094 -590
- 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 +4 -3
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/entities/{entities.d.ts → test_case.d.ts} +102 -150
- 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 +32 -31
- package/dist/lib/testsystem/v1/events/events.d.ts.map +1 -1
- package/lib/google/protobuf/duration.ts +98 -0
- package/lib/index.ts +11 -5
- package/lib/testsystem/v1/entities/{entities.ts → test_case.ts} +387 -563
- package/lib/testsystem/v1/entities/test_suite.ts +639 -0
- package/lib/testsystem/v1/events/events.ts +44 -43
- package/package.json +1 -1
- package/dist/lib/testsystem/v1/entities/entities.d.ts.map +0 -1
|
@@ -5,13 +5,14 @@
|
|
|
5
5
|
* git: https://github.com/thesayyn/protoc-gen-ts */
|
|
6
6
|
import * as dependency_1 from "./../../../google/protobuf/timestamp";
|
|
7
7
|
import * as dependency_2 from "./../common/common";
|
|
8
|
-
import * as dependency_3 from "./../entities/
|
|
8
|
+
import * as dependency_3 from "./../entities/test_case";
|
|
9
|
+
import * as dependency_4 from "./../entities/test_suite";
|
|
9
10
|
import * as pb_1 from "google-protobuf";
|
|
10
11
|
export namespace testsystem.v1.events {
|
|
11
12
|
export class TestBeginEventRequest extends pb_1.Message {
|
|
12
13
|
#one_of_decls: number[][] = [];
|
|
13
14
|
constructor(data?: any[] | {
|
|
14
|
-
test_case?: dependency_3.testsystem.v1.entities.
|
|
15
|
+
test_case?: dependency_3.testsystem.v1.entities.TestCaseRun;
|
|
15
16
|
}) {
|
|
16
17
|
super();
|
|
17
18
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -22,26 +23,26 @@ export namespace testsystem.v1.events {
|
|
|
22
23
|
}
|
|
23
24
|
}
|
|
24
25
|
get test_case() {
|
|
25
|
-
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.
|
|
26
|
+
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.TestCaseRun, 1) as dependency_3.testsystem.v1.entities.TestCaseRun;
|
|
26
27
|
}
|
|
27
|
-
set test_case(value: dependency_3.testsystem.v1.entities.
|
|
28
|
+
set test_case(value: dependency_3.testsystem.v1.entities.TestCaseRun) {
|
|
28
29
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
29
30
|
}
|
|
30
31
|
get has_test_case() {
|
|
31
32
|
return pb_1.Message.getField(this, 1) != null;
|
|
32
33
|
}
|
|
33
34
|
static fromObject(data: {
|
|
34
|
-
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
35
|
+
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.TestCaseRun.prototype.toObject>;
|
|
35
36
|
}): TestBeginEventRequest {
|
|
36
37
|
const message = new TestBeginEventRequest({});
|
|
37
38
|
if (data.test_case != null) {
|
|
38
|
-
message.test_case = dependency_3.testsystem.v1.entities.
|
|
39
|
+
message.test_case = dependency_3.testsystem.v1.entities.TestCaseRun.fromObject(data.test_case);
|
|
39
40
|
}
|
|
40
41
|
return message;
|
|
41
42
|
}
|
|
42
43
|
toObject() {
|
|
43
44
|
const data: {
|
|
44
|
-
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
45
|
+
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.TestCaseRun.prototype.toObject>;
|
|
45
46
|
} = {};
|
|
46
47
|
if (this.test_case != null) {
|
|
47
48
|
data.test_case = this.test_case.toObject();
|
|
@@ -64,7 +65,7 @@ export namespace testsystem.v1.events {
|
|
|
64
65
|
break;
|
|
65
66
|
switch (reader.getFieldNumber()) {
|
|
66
67
|
case 1:
|
|
67
|
-
reader.readMessage(message.test_case, () => message.test_case = dependency_3.testsystem.v1.entities.
|
|
68
|
+
reader.readMessage(message.test_case, () => message.test_case = dependency_3.testsystem.v1.entities.TestCaseRun.deserialize(reader));
|
|
68
69
|
break;
|
|
69
70
|
default: reader.skipField();
|
|
70
71
|
}
|
|
@@ -81,7 +82,7 @@ export namespace testsystem.v1.events {
|
|
|
81
82
|
export class TestEndEventRequest extends pb_1.Message {
|
|
82
83
|
#one_of_decls: number[][] = [];
|
|
83
84
|
constructor(data?: any[] | {
|
|
84
|
-
test_case?: dependency_3.testsystem.v1.entities.
|
|
85
|
+
test_case?: dependency_3.testsystem.v1.entities.TestCaseRun;
|
|
85
86
|
}) {
|
|
86
87
|
super();
|
|
87
88
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -92,26 +93,26 @@ export namespace testsystem.v1.events {
|
|
|
92
93
|
}
|
|
93
94
|
}
|
|
94
95
|
get test_case() {
|
|
95
|
-
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.
|
|
96
|
+
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.TestCaseRun, 1) as dependency_3.testsystem.v1.entities.TestCaseRun;
|
|
96
97
|
}
|
|
97
|
-
set test_case(value: dependency_3.testsystem.v1.entities.
|
|
98
|
+
set test_case(value: dependency_3.testsystem.v1.entities.TestCaseRun) {
|
|
98
99
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
99
100
|
}
|
|
100
101
|
get has_test_case() {
|
|
101
102
|
return pb_1.Message.getField(this, 1) != null;
|
|
102
103
|
}
|
|
103
104
|
static fromObject(data: {
|
|
104
|
-
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
105
|
+
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.TestCaseRun.prototype.toObject>;
|
|
105
106
|
}): TestEndEventRequest {
|
|
106
107
|
const message = new TestEndEventRequest({});
|
|
107
108
|
if (data.test_case != null) {
|
|
108
|
-
message.test_case = dependency_3.testsystem.v1.entities.
|
|
109
|
+
message.test_case = dependency_3.testsystem.v1.entities.TestCaseRun.fromObject(data.test_case);
|
|
109
110
|
}
|
|
110
111
|
return message;
|
|
111
112
|
}
|
|
112
113
|
toObject() {
|
|
113
114
|
const data: {
|
|
114
|
-
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
115
|
+
test_case?: ReturnType<typeof dependency_3.testsystem.v1.entities.TestCaseRun.prototype.toObject>;
|
|
115
116
|
} = {};
|
|
116
117
|
if (this.test_case != null) {
|
|
117
118
|
data.test_case = this.test_case.toObject();
|
|
@@ -134,7 +135,7 @@ export namespace testsystem.v1.events {
|
|
|
134
135
|
break;
|
|
135
136
|
switch (reader.getFieldNumber()) {
|
|
136
137
|
case 1:
|
|
137
|
-
reader.readMessage(message.test_case, () => message.test_case = dependency_3.testsystem.v1.entities.
|
|
138
|
+
reader.readMessage(message.test_case, () => message.test_case = dependency_3.testsystem.v1.entities.TestCaseRun.deserialize(reader));
|
|
138
139
|
break;
|
|
139
140
|
default: reader.skipField();
|
|
140
141
|
}
|
|
@@ -151,7 +152,7 @@ export namespace testsystem.v1.events {
|
|
|
151
152
|
export class StepBeginEventRequest extends pb_1.Message {
|
|
152
153
|
#one_of_decls: number[][] = [];
|
|
153
154
|
constructor(data?: any[] | {
|
|
154
|
-
step?: dependency_3.testsystem.v1.entities.
|
|
155
|
+
step?: dependency_3.testsystem.v1.entities.StepRun;
|
|
155
156
|
}) {
|
|
156
157
|
super();
|
|
157
158
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -162,26 +163,26 @@ export namespace testsystem.v1.events {
|
|
|
162
163
|
}
|
|
163
164
|
}
|
|
164
165
|
get step() {
|
|
165
|
-
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.
|
|
166
|
+
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.StepRun, 1) as dependency_3.testsystem.v1.entities.StepRun;
|
|
166
167
|
}
|
|
167
|
-
set step(value: dependency_3.testsystem.v1.entities.
|
|
168
|
+
set step(value: dependency_3.testsystem.v1.entities.StepRun) {
|
|
168
169
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
169
170
|
}
|
|
170
171
|
get has_step() {
|
|
171
172
|
return pb_1.Message.getField(this, 1) != null;
|
|
172
173
|
}
|
|
173
174
|
static fromObject(data: {
|
|
174
|
-
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
175
|
+
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.StepRun.prototype.toObject>;
|
|
175
176
|
}): StepBeginEventRequest {
|
|
176
177
|
const message = new StepBeginEventRequest({});
|
|
177
178
|
if (data.step != null) {
|
|
178
|
-
message.step = dependency_3.testsystem.v1.entities.
|
|
179
|
+
message.step = dependency_3.testsystem.v1.entities.StepRun.fromObject(data.step);
|
|
179
180
|
}
|
|
180
181
|
return message;
|
|
181
182
|
}
|
|
182
183
|
toObject() {
|
|
183
184
|
const data: {
|
|
184
|
-
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
185
|
+
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.StepRun.prototype.toObject>;
|
|
185
186
|
} = {};
|
|
186
187
|
if (this.step != null) {
|
|
187
188
|
data.step = this.step.toObject();
|
|
@@ -204,7 +205,7 @@ export namespace testsystem.v1.events {
|
|
|
204
205
|
break;
|
|
205
206
|
switch (reader.getFieldNumber()) {
|
|
206
207
|
case 1:
|
|
207
|
-
reader.readMessage(message.step, () => message.step = dependency_3.testsystem.v1.entities.
|
|
208
|
+
reader.readMessage(message.step, () => message.step = dependency_3.testsystem.v1.entities.StepRun.deserialize(reader));
|
|
208
209
|
break;
|
|
209
210
|
default: reader.skipField();
|
|
210
211
|
}
|
|
@@ -221,7 +222,7 @@ export namespace testsystem.v1.events {
|
|
|
221
222
|
export class StepEndEventRequest extends pb_1.Message {
|
|
222
223
|
#one_of_decls: number[][] = [];
|
|
223
224
|
constructor(data?: any[] | {
|
|
224
|
-
step?: dependency_3.testsystem.v1.entities.
|
|
225
|
+
step?: dependency_3.testsystem.v1.entities.StepRun;
|
|
225
226
|
}) {
|
|
226
227
|
super();
|
|
227
228
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -232,26 +233,26 @@ export namespace testsystem.v1.events {
|
|
|
232
233
|
}
|
|
233
234
|
}
|
|
234
235
|
get step() {
|
|
235
|
-
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.
|
|
236
|
+
return pb_1.Message.getWrapperField(this, dependency_3.testsystem.v1.entities.StepRun, 1) as dependency_3.testsystem.v1.entities.StepRun;
|
|
236
237
|
}
|
|
237
|
-
set step(value: dependency_3.testsystem.v1.entities.
|
|
238
|
+
set step(value: dependency_3.testsystem.v1.entities.StepRun) {
|
|
238
239
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
239
240
|
}
|
|
240
241
|
get has_step() {
|
|
241
242
|
return pb_1.Message.getField(this, 1) != null;
|
|
242
243
|
}
|
|
243
244
|
static fromObject(data: {
|
|
244
|
-
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
245
|
+
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.StepRun.prototype.toObject>;
|
|
245
246
|
}): StepEndEventRequest {
|
|
246
247
|
const message = new StepEndEventRequest({});
|
|
247
248
|
if (data.step != null) {
|
|
248
|
-
message.step = dependency_3.testsystem.v1.entities.
|
|
249
|
+
message.step = dependency_3.testsystem.v1.entities.StepRun.fromObject(data.step);
|
|
249
250
|
}
|
|
250
251
|
return message;
|
|
251
252
|
}
|
|
252
253
|
toObject() {
|
|
253
254
|
const data: {
|
|
254
|
-
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.
|
|
255
|
+
step?: ReturnType<typeof dependency_3.testsystem.v1.entities.StepRun.prototype.toObject>;
|
|
255
256
|
} = {};
|
|
256
257
|
if (this.step != null) {
|
|
257
258
|
data.step = this.step.toObject();
|
|
@@ -274,7 +275,7 @@ export namespace testsystem.v1.events {
|
|
|
274
275
|
break;
|
|
275
276
|
switch (reader.getFieldNumber()) {
|
|
276
277
|
case 1:
|
|
277
|
-
reader.readMessage(message.step, () => message.step = dependency_3.testsystem.v1.entities.
|
|
278
|
+
reader.readMessage(message.step, () => message.step = dependency_3.testsystem.v1.entities.StepRun.deserialize(reader));
|
|
278
279
|
break;
|
|
279
280
|
default: reader.skipField();
|
|
280
281
|
}
|
|
@@ -847,7 +848,7 @@ export namespace testsystem.v1.events {
|
|
|
847
848
|
export class SuiteBeginEventRequest extends pb_1.Message {
|
|
848
849
|
#one_of_decls: number[][] = [];
|
|
849
850
|
constructor(data?: any[] | {
|
|
850
|
-
suite?:
|
|
851
|
+
suite?: dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
851
852
|
}) {
|
|
852
853
|
super();
|
|
853
854
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -858,26 +859,26 @@ export namespace testsystem.v1.events {
|
|
|
858
859
|
}
|
|
859
860
|
}
|
|
860
861
|
get suite() {
|
|
861
|
-
return pb_1.Message.getWrapperField(this,
|
|
862
|
+
return pb_1.Message.getWrapperField(this, dependency_4.testsystem.v1.entities.TestSuiteRun, 1) as dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
862
863
|
}
|
|
863
|
-
set suite(value:
|
|
864
|
+
set suite(value: dependency_4.testsystem.v1.entities.TestSuiteRun) {
|
|
864
865
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
865
866
|
}
|
|
866
867
|
get has_suite() {
|
|
867
868
|
return pb_1.Message.getField(this, 1) != null;
|
|
868
869
|
}
|
|
869
870
|
static fromObject(data: {
|
|
870
|
-
suite?: ReturnType<typeof
|
|
871
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
871
872
|
}): SuiteBeginEventRequest {
|
|
872
873
|
const message = new SuiteBeginEventRequest({});
|
|
873
874
|
if (data.suite != null) {
|
|
874
|
-
message.suite =
|
|
875
|
+
message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.fromObject(data.suite);
|
|
875
876
|
}
|
|
876
877
|
return message;
|
|
877
878
|
}
|
|
878
879
|
toObject() {
|
|
879
880
|
const data: {
|
|
880
|
-
suite?: ReturnType<typeof
|
|
881
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
881
882
|
} = {};
|
|
882
883
|
if (this.suite != null) {
|
|
883
884
|
data.suite = this.suite.toObject();
|
|
@@ -900,7 +901,7 @@ export namespace testsystem.v1.events {
|
|
|
900
901
|
break;
|
|
901
902
|
switch (reader.getFieldNumber()) {
|
|
902
903
|
case 1:
|
|
903
|
-
reader.readMessage(message.suite, () => message.suite =
|
|
904
|
+
reader.readMessage(message.suite, () => message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.deserialize(reader));
|
|
904
905
|
break;
|
|
905
906
|
default: reader.skipField();
|
|
906
907
|
}
|
|
@@ -917,7 +918,7 @@ export namespace testsystem.v1.events {
|
|
|
917
918
|
export class SuiteEndEventRequest extends pb_1.Message {
|
|
918
919
|
#one_of_decls: number[][] = [];
|
|
919
920
|
constructor(data?: any[] | {
|
|
920
|
-
suite?:
|
|
921
|
+
suite?: dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
921
922
|
}) {
|
|
922
923
|
super();
|
|
923
924
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -928,26 +929,26 @@ export namespace testsystem.v1.events {
|
|
|
928
929
|
}
|
|
929
930
|
}
|
|
930
931
|
get suite() {
|
|
931
|
-
return pb_1.Message.getWrapperField(this,
|
|
932
|
+
return pb_1.Message.getWrapperField(this, dependency_4.testsystem.v1.entities.TestSuiteRun, 1) as dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
932
933
|
}
|
|
933
|
-
set suite(value:
|
|
934
|
+
set suite(value: dependency_4.testsystem.v1.entities.TestSuiteRun) {
|
|
934
935
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
935
936
|
}
|
|
936
937
|
get has_suite() {
|
|
937
938
|
return pb_1.Message.getField(this, 1) != null;
|
|
938
939
|
}
|
|
939
940
|
static fromObject(data: {
|
|
940
|
-
suite?: ReturnType<typeof
|
|
941
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
941
942
|
}): SuiteEndEventRequest {
|
|
942
943
|
const message = new SuiteEndEventRequest({});
|
|
943
944
|
if (data.suite != null) {
|
|
944
|
-
message.suite =
|
|
945
|
+
message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.fromObject(data.suite);
|
|
945
946
|
}
|
|
946
947
|
return message;
|
|
947
948
|
}
|
|
948
949
|
toObject() {
|
|
949
950
|
const data: {
|
|
950
|
-
suite?: ReturnType<typeof
|
|
951
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
951
952
|
} = {};
|
|
952
953
|
if (this.suite != null) {
|
|
953
954
|
data.suite = this.suite.toObject();
|
|
@@ -970,7 +971,7 @@ export namespace testsystem.v1.events {
|
|
|
970
971
|
break;
|
|
971
972
|
switch (reader.getFieldNumber()) {
|
|
972
973
|
case 1:
|
|
973
|
-
reader.readMessage(message.suite, () => message.suite =
|
|
974
|
+
reader.readMessage(message.suite, () => message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.deserialize(reader));
|
|
974
975
|
break;
|
|
975
976
|
default: reader.skipField();
|
|
976
977
|
}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../../../lib/testsystem/v1/entities/entities.ts"],"names":[],"mappings":"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"}
|