@stanterprise/protobuf 0.0.8 → 0.0.10
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 +1298 -627
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1301 -626
- 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 +13 -14
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/common/common.d.ts +3 -1
- package/dist/lib/testsystem/v1/common/common.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/entities/{entities.d.ts → test_case.d.ts} +128 -150
- package/dist/lib/testsystem/v1/entities/test_case.d.ts.map +1 -0
- package/dist/lib/testsystem/v1/entities/test_suite.d.ts +176 -0
- package/dist/lib/testsystem/v1/entities/test_suite.d.ts.map +1 -0
- package/dist/lib/testsystem/v1/events/events.d.ts +42 -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 +39 -43
- package/lib/testsystem/v1/common/common.ts +3 -1
- package/lib/testsystem/v1/entities/{entities.ts → test_case.ts} +502 -560
- package/lib/testsystem/v1/entities/test_suite.ts +685 -0
- package/lib/testsystem/v1/events/events.ts +90 -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
|
}
|
|
@@ -618,6 +619,7 @@ export namespace testsystem.v1.events {
|
|
|
618
619
|
test_id?: string;
|
|
619
620
|
message?: string;
|
|
620
621
|
timestamp?: dependency_1.google.protobuf.Timestamp;
|
|
622
|
+
test_case_run_id?: string;
|
|
621
623
|
}) {
|
|
622
624
|
super();
|
|
623
625
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -631,6 +633,9 @@ export namespace testsystem.v1.events {
|
|
|
631
633
|
if ("timestamp" in data && data.timestamp != undefined) {
|
|
632
634
|
this.timestamp = data.timestamp;
|
|
633
635
|
}
|
|
636
|
+
if ("test_case_run_id" in data && data.test_case_run_id != undefined) {
|
|
637
|
+
this.test_case_run_id = data.test_case_run_id;
|
|
638
|
+
}
|
|
634
639
|
}
|
|
635
640
|
}
|
|
636
641
|
get test_id() {
|
|
@@ -654,10 +659,17 @@ export namespace testsystem.v1.events {
|
|
|
654
659
|
get has_timestamp() {
|
|
655
660
|
return pb_1.Message.getField(this, 3) != null;
|
|
656
661
|
}
|
|
662
|
+
get test_case_run_id() {
|
|
663
|
+
return pb_1.Message.getFieldWithDefault(this, 4, "") as string;
|
|
664
|
+
}
|
|
665
|
+
set test_case_run_id(value: string) {
|
|
666
|
+
pb_1.Message.setField(this, 4, value);
|
|
667
|
+
}
|
|
657
668
|
static fromObject(data: {
|
|
658
669
|
test_id?: string;
|
|
659
670
|
message?: string;
|
|
660
671
|
timestamp?: ReturnType<typeof dependency_1.google.protobuf.Timestamp.prototype.toObject>;
|
|
672
|
+
test_case_run_id?: string;
|
|
661
673
|
}): StdErrorEventRequest {
|
|
662
674
|
const message = new StdErrorEventRequest({});
|
|
663
675
|
if (data.test_id != null) {
|
|
@@ -669,6 +681,9 @@ export namespace testsystem.v1.events {
|
|
|
669
681
|
if (data.timestamp != null) {
|
|
670
682
|
message.timestamp = dependency_1.google.protobuf.Timestamp.fromObject(data.timestamp);
|
|
671
683
|
}
|
|
684
|
+
if (data.test_case_run_id != null) {
|
|
685
|
+
message.test_case_run_id = data.test_case_run_id;
|
|
686
|
+
}
|
|
672
687
|
return message;
|
|
673
688
|
}
|
|
674
689
|
toObject() {
|
|
@@ -676,6 +691,7 @@ export namespace testsystem.v1.events {
|
|
|
676
691
|
test_id?: string;
|
|
677
692
|
message?: string;
|
|
678
693
|
timestamp?: ReturnType<typeof dependency_1.google.protobuf.Timestamp.prototype.toObject>;
|
|
694
|
+
test_case_run_id?: string;
|
|
679
695
|
} = {};
|
|
680
696
|
if (this.test_id != null) {
|
|
681
697
|
data.test_id = this.test_id;
|
|
@@ -686,6 +702,9 @@ export namespace testsystem.v1.events {
|
|
|
686
702
|
if (this.timestamp != null) {
|
|
687
703
|
data.timestamp = this.timestamp.toObject();
|
|
688
704
|
}
|
|
705
|
+
if (this.test_case_run_id != null) {
|
|
706
|
+
data.test_case_run_id = this.test_case_run_id;
|
|
707
|
+
}
|
|
689
708
|
return data;
|
|
690
709
|
}
|
|
691
710
|
serialize(): Uint8Array;
|
|
@@ -698,6 +717,8 @@ export namespace testsystem.v1.events {
|
|
|
698
717
|
writer.writeString(2, this.message);
|
|
699
718
|
if (this.has_timestamp)
|
|
700
719
|
writer.writeMessage(3, this.timestamp, () => this.timestamp.serialize(writer));
|
|
720
|
+
if (this.test_case_run_id.length)
|
|
721
|
+
writer.writeString(4, this.test_case_run_id);
|
|
701
722
|
if (!w)
|
|
702
723
|
return writer.getResultBuffer();
|
|
703
724
|
}
|
|
@@ -716,6 +737,9 @@ export namespace testsystem.v1.events {
|
|
|
716
737
|
case 3:
|
|
717
738
|
reader.readMessage(message.timestamp, () => message.timestamp = dependency_1.google.protobuf.Timestamp.deserialize(reader));
|
|
718
739
|
break;
|
|
740
|
+
case 4:
|
|
741
|
+
message.test_case_run_id = reader.readString();
|
|
742
|
+
break;
|
|
719
743
|
default: reader.skipField();
|
|
720
744
|
}
|
|
721
745
|
}
|
|
@@ -734,6 +758,7 @@ export namespace testsystem.v1.events {
|
|
|
734
758
|
test_id?: string;
|
|
735
759
|
message?: string;
|
|
736
760
|
timestamp?: dependency_1.google.protobuf.Timestamp;
|
|
761
|
+
test_case_run_id?: string;
|
|
737
762
|
}) {
|
|
738
763
|
super();
|
|
739
764
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -747,6 +772,9 @@ export namespace testsystem.v1.events {
|
|
|
747
772
|
if ("timestamp" in data && data.timestamp != undefined) {
|
|
748
773
|
this.timestamp = data.timestamp;
|
|
749
774
|
}
|
|
775
|
+
if ("test_case_run_id" in data && data.test_case_run_id != undefined) {
|
|
776
|
+
this.test_case_run_id = data.test_case_run_id;
|
|
777
|
+
}
|
|
750
778
|
}
|
|
751
779
|
}
|
|
752
780
|
get test_id() {
|
|
@@ -770,10 +798,17 @@ export namespace testsystem.v1.events {
|
|
|
770
798
|
get has_timestamp() {
|
|
771
799
|
return pb_1.Message.getField(this, 3) != null;
|
|
772
800
|
}
|
|
801
|
+
get test_case_run_id() {
|
|
802
|
+
return pb_1.Message.getFieldWithDefault(this, 4, "") as string;
|
|
803
|
+
}
|
|
804
|
+
set test_case_run_id(value: string) {
|
|
805
|
+
pb_1.Message.setField(this, 4, value);
|
|
806
|
+
}
|
|
773
807
|
static fromObject(data: {
|
|
774
808
|
test_id?: string;
|
|
775
809
|
message?: string;
|
|
776
810
|
timestamp?: ReturnType<typeof dependency_1.google.protobuf.Timestamp.prototype.toObject>;
|
|
811
|
+
test_case_run_id?: string;
|
|
777
812
|
}): StdOutputEventRequest {
|
|
778
813
|
const message = new StdOutputEventRequest({});
|
|
779
814
|
if (data.test_id != null) {
|
|
@@ -785,6 +820,9 @@ export namespace testsystem.v1.events {
|
|
|
785
820
|
if (data.timestamp != null) {
|
|
786
821
|
message.timestamp = dependency_1.google.protobuf.Timestamp.fromObject(data.timestamp);
|
|
787
822
|
}
|
|
823
|
+
if (data.test_case_run_id != null) {
|
|
824
|
+
message.test_case_run_id = data.test_case_run_id;
|
|
825
|
+
}
|
|
788
826
|
return message;
|
|
789
827
|
}
|
|
790
828
|
toObject() {
|
|
@@ -792,6 +830,7 @@ export namespace testsystem.v1.events {
|
|
|
792
830
|
test_id?: string;
|
|
793
831
|
message?: string;
|
|
794
832
|
timestamp?: ReturnType<typeof dependency_1.google.protobuf.Timestamp.prototype.toObject>;
|
|
833
|
+
test_case_run_id?: string;
|
|
795
834
|
} = {};
|
|
796
835
|
if (this.test_id != null) {
|
|
797
836
|
data.test_id = this.test_id;
|
|
@@ -802,6 +841,9 @@ export namespace testsystem.v1.events {
|
|
|
802
841
|
if (this.timestamp != null) {
|
|
803
842
|
data.timestamp = this.timestamp.toObject();
|
|
804
843
|
}
|
|
844
|
+
if (this.test_case_run_id != null) {
|
|
845
|
+
data.test_case_run_id = this.test_case_run_id;
|
|
846
|
+
}
|
|
805
847
|
return data;
|
|
806
848
|
}
|
|
807
849
|
serialize(): Uint8Array;
|
|
@@ -814,6 +856,8 @@ export namespace testsystem.v1.events {
|
|
|
814
856
|
writer.writeString(2, this.message);
|
|
815
857
|
if (this.has_timestamp)
|
|
816
858
|
writer.writeMessage(3, this.timestamp, () => this.timestamp.serialize(writer));
|
|
859
|
+
if (this.test_case_run_id.length)
|
|
860
|
+
writer.writeString(4, this.test_case_run_id);
|
|
817
861
|
if (!w)
|
|
818
862
|
return writer.getResultBuffer();
|
|
819
863
|
}
|
|
@@ -832,6 +876,9 @@ export namespace testsystem.v1.events {
|
|
|
832
876
|
case 3:
|
|
833
877
|
reader.readMessage(message.timestamp, () => message.timestamp = dependency_1.google.protobuf.Timestamp.deserialize(reader));
|
|
834
878
|
break;
|
|
879
|
+
case 4:
|
|
880
|
+
message.test_case_run_id = reader.readString();
|
|
881
|
+
break;
|
|
835
882
|
default: reader.skipField();
|
|
836
883
|
}
|
|
837
884
|
}
|
|
@@ -847,7 +894,7 @@ export namespace testsystem.v1.events {
|
|
|
847
894
|
export class SuiteBeginEventRequest extends pb_1.Message {
|
|
848
895
|
#one_of_decls: number[][] = [];
|
|
849
896
|
constructor(data?: any[] | {
|
|
850
|
-
suite?:
|
|
897
|
+
suite?: dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
851
898
|
}) {
|
|
852
899
|
super();
|
|
853
900
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -858,26 +905,26 @@ export namespace testsystem.v1.events {
|
|
|
858
905
|
}
|
|
859
906
|
}
|
|
860
907
|
get suite() {
|
|
861
|
-
return pb_1.Message.getWrapperField(this,
|
|
908
|
+
return pb_1.Message.getWrapperField(this, dependency_4.testsystem.v1.entities.TestSuiteRun, 1) as dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
862
909
|
}
|
|
863
|
-
set suite(value:
|
|
910
|
+
set suite(value: dependency_4.testsystem.v1.entities.TestSuiteRun) {
|
|
864
911
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
865
912
|
}
|
|
866
913
|
get has_suite() {
|
|
867
914
|
return pb_1.Message.getField(this, 1) != null;
|
|
868
915
|
}
|
|
869
916
|
static fromObject(data: {
|
|
870
|
-
suite?: ReturnType<typeof
|
|
917
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
871
918
|
}): SuiteBeginEventRequest {
|
|
872
919
|
const message = new SuiteBeginEventRequest({});
|
|
873
920
|
if (data.suite != null) {
|
|
874
|
-
message.suite =
|
|
921
|
+
message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.fromObject(data.suite);
|
|
875
922
|
}
|
|
876
923
|
return message;
|
|
877
924
|
}
|
|
878
925
|
toObject() {
|
|
879
926
|
const data: {
|
|
880
|
-
suite?: ReturnType<typeof
|
|
927
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
881
928
|
} = {};
|
|
882
929
|
if (this.suite != null) {
|
|
883
930
|
data.suite = this.suite.toObject();
|
|
@@ -900,7 +947,7 @@ export namespace testsystem.v1.events {
|
|
|
900
947
|
break;
|
|
901
948
|
switch (reader.getFieldNumber()) {
|
|
902
949
|
case 1:
|
|
903
|
-
reader.readMessage(message.suite, () => message.suite =
|
|
950
|
+
reader.readMessage(message.suite, () => message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.deserialize(reader));
|
|
904
951
|
break;
|
|
905
952
|
default: reader.skipField();
|
|
906
953
|
}
|
|
@@ -917,7 +964,7 @@ export namespace testsystem.v1.events {
|
|
|
917
964
|
export class SuiteEndEventRequest extends pb_1.Message {
|
|
918
965
|
#one_of_decls: number[][] = [];
|
|
919
966
|
constructor(data?: any[] | {
|
|
920
|
-
suite?:
|
|
967
|
+
suite?: dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
921
968
|
}) {
|
|
922
969
|
super();
|
|
923
970
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [], this.#one_of_decls);
|
|
@@ -928,26 +975,26 @@ export namespace testsystem.v1.events {
|
|
|
928
975
|
}
|
|
929
976
|
}
|
|
930
977
|
get suite() {
|
|
931
|
-
return pb_1.Message.getWrapperField(this,
|
|
978
|
+
return pb_1.Message.getWrapperField(this, dependency_4.testsystem.v1.entities.TestSuiteRun, 1) as dependency_4.testsystem.v1.entities.TestSuiteRun;
|
|
932
979
|
}
|
|
933
|
-
set suite(value:
|
|
980
|
+
set suite(value: dependency_4.testsystem.v1.entities.TestSuiteRun) {
|
|
934
981
|
pb_1.Message.setWrapperField(this, 1, value);
|
|
935
982
|
}
|
|
936
983
|
get has_suite() {
|
|
937
984
|
return pb_1.Message.getField(this, 1) != null;
|
|
938
985
|
}
|
|
939
986
|
static fromObject(data: {
|
|
940
|
-
suite?: ReturnType<typeof
|
|
987
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
941
988
|
}): SuiteEndEventRequest {
|
|
942
989
|
const message = new SuiteEndEventRequest({});
|
|
943
990
|
if (data.suite != null) {
|
|
944
|
-
message.suite =
|
|
991
|
+
message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.fromObject(data.suite);
|
|
945
992
|
}
|
|
946
993
|
return message;
|
|
947
994
|
}
|
|
948
995
|
toObject() {
|
|
949
996
|
const data: {
|
|
950
|
-
suite?: ReturnType<typeof
|
|
997
|
+
suite?: ReturnType<typeof dependency_4.testsystem.v1.entities.TestSuiteRun.prototype.toObject>;
|
|
951
998
|
} = {};
|
|
952
999
|
if (this.suite != null) {
|
|
953
1000
|
data.suite = this.suite.toObject();
|
|
@@ -970,7 +1017,7 @@ export namespace testsystem.v1.events {
|
|
|
970
1017
|
break;
|
|
971
1018
|
switch (reader.getFieldNumber()) {
|
|
972
1019
|
case 1:
|
|
973
|
-
reader.readMessage(message.suite, () => message.suite =
|
|
1020
|
+
reader.readMessage(message.suite, () => message.suite = dependency_4.testsystem.v1.entities.TestSuiteRun.deserialize(reader));
|
|
974
1021
|
break;
|
|
975
1022
|
default: reader.skipField();
|
|
976
1023
|
}
|
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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"}
|