@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
|
@@ -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,15 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export
|
|
14
|
-
export declare const google: typeof googleTimestamp.google;
|
|
1
|
+
export * as google from './google/protobuf/timestamp';
|
|
2
|
+
export { testsystem as common } from './testsystem/v1/common/common';
|
|
3
|
+
export { testsystem as testCase } from './testsystem/v1/entities/test_case';
|
|
4
|
+
export { testsystem as testSuite } from './testsystem/v1/entities/test_suite';
|
|
5
|
+
export { testsystem as events } from './testsystem/v1/events/events';
|
|
6
|
+
export { testsystem as observer } from './testsystem/v1/observer/observer';
|
|
7
|
+
export type testsystem = typeof commonNS & typeof testCaseNS & typeof testSuiteNS & typeof eventsNS & typeof observerNS;
|
|
8
|
+
import { testsystem as commonNS } from './testsystem/v1/common/common';
|
|
9
|
+
import { testsystem as testCaseNS } from './testsystem/v1/entities/test_case';
|
|
10
|
+
import { testsystem as testSuiteNS } from './testsystem/v1/entities/test_suite';
|
|
11
|
+
import { testsystem as eventsNS } from './testsystem/v1/events/events';
|
|
12
|
+
import { testsystem as observerNS } from './testsystem/v1/observer/observer';
|
|
13
|
+
export declare const testsystem: testsystem;
|
|
15
14
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,MAAM,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,UAAU,IAAI,MAAM,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,IAAI,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AAC5E,OAAO,EAAE,UAAU,IAAI,SAAS,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAE,UAAU,IAAI,MAAM,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,IAAI,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAG3E,MAAM,MAAM,UAAU,GAAG,OAAO,QAAQ,GACtC,OAAO,UAAU,GACjB,OAAO,WAAW,GAClB,OAAO,QAAQ,GACf,OAAO,UAAU,CAAC;AAIpB,OAAO,EAAE,UAAU,IAAI,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACvE,OAAO,EAAE,UAAU,IAAI,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,UAAU,IAAI,WAAW,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAE,UAAU,IAAI,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AACvE,OAAO,EAAE,UAAU,IAAI,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE7E,eAAO,MAAM,UAAU,EAOlB,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../../lib/testsystem/v1/common/common.ts"],"names":[],"mappings":"AAAA;;;;oDAIoD;AACpD,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,yBAAiB,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC;IAClC,KAAY,UAAU;QAClB,OAAO,IAAI;QACX,MAAM,IAAI;QACV,MAAM,IAAI;QACV,OAAO,IAAI;QACX,MAAM,IAAI;
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../../lib/testsystem/v1/common/common.ts"],"names":[],"mappings":"AAAA;;;;oDAIoD;AACpD,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,yBAAiB,UAAU,CAAC,EAAE,CAAC,MAAM,CAAC;IAClC,KAAY,UAAU;QAClB,OAAO,IAAI;QACX,MAAM,IAAI;QACV,MAAM,IAAI;QACV,OAAO,IAAI;QACX,MAAM,IAAI;QACV,QAAQ,IAAI;QACZ,WAAW,IAAI;KAClB;IACD,MAAa,UAAW,SAAQ,IAAI,CAAC,OAAO;;oBAE5B,IAAI,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC;YACxB,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,SAAS,CAAC,EAAE,MAAM,CAAC;SACtB,GAAG,CAAC,CAAC;YACF,OAAO,CAAC,EAAE,UAAU,CAAC;YACrB,GAAG,CAAC,EAAE,KAAK,CAAC;SACf,GAAG;YACA,OAAO,CAAC,EAAE,KAAK,CAAC;YAChB,GAAG,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC,CAAC,CAAC;QAkBJ,IAAI,IAAI,IAGQ,MAAM,CADrB;QACD,IAAI,IAAI,CAAC,KAAK,EAAE,MAAM,EAErB;QACD,IAAI,SAAS,IAGQ,MAAM,CAD1B;QACD,IAAI,SAAS,CAAC,KAAK,EAAE,MAAM,EAE1B;QACD,IAAI,OAAO,IAGQ,UAAU,CAD5B;QACD,IAAI,OAAO,CAAC,KAAK,EAAE,UAAU,EAE5B;QACD,IAAI,WAAW,YAEd;QACD,IAAI,GAAG,IAGQ,MAAM,CADpB;QACD,IAAI,GAAG,CAAC,KAAK,EAAE,MAAM,EAEpB;QACD,IAAI,OAAO,YAEV;QACD,IAAI,OAAO,+BASV;QACD,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE;YACpB,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,SAAS,CAAC,EAAE,MAAM,CAAC;YACnB,OAAO,CAAC,EAAE,UAAU,CAAC;YACrB,GAAG,CAAC,EAAE,MAAM,CAAC;SAChB,GAAG,UAAU;QAgBd,QAAQ;mBAEO,MAAM;wBACD,MAAM;sBACR,UAAU;kBACd,MAAM;;QAgBpB,SAAS,IAAI,UAAU;QACvB,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,YAAY,GAAG,IAAI;QAcrC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,CAAC,YAAY,GAAG,UAAU;QAuBrE,eAAe,IAAI,UAAU;QAG7B,MAAM,CAAC,iBAAiB,CAAC,KAAK,EAAE,UAAU,GAAG,UAAU;KAG1D;CACJ"}
|
|
@@ -1,27 +1,23 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated by the protoc-gen-ts. DO NOT EDIT!
|
|
3
3
|
* compiler version: 3.19.1
|
|
4
|
-
* source: testsystem/v1/entities/
|
|
4
|
+
* source: testsystem/v1/entities/test_case.proto
|
|
5
5
|
* git: https://github.com/thesayyn/protoc-gen-ts */
|
|
6
6
|
import * as dependency_1 from "./../common/common";
|
|
7
7
|
import * as dependency_2 from "./../../../google/protobuf/timestamp";
|
|
8
|
+
import * as dependency_3 from "./../../../google/protobuf/duration";
|
|
8
9
|
import * as pb_1 from "google-protobuf";
|
|
9
10
|
export declare namespace testsystem.v1.entities {
|
|
10
|
-
|
|
11
|
-
ROOT = 0,
|
|
12
|
-
PROJECT = 1,
|
|
13
|
-
SUBSUITE = 2
|
|
14
|
-
}
|
|
15
|
-
class TestCase extends pb_1.Message {
|
|
11
|
+
class TestCaseSpec extends pb_1.Message {
|
|
16
12
|
#private;
|
|
17
13
|
constructor(data?: any[] | {
|
|
18
14
|
id?: string;
|
|
19
15
|
name?: string;
|
|
20
16
|
description?: string;
|
|
21
|
-
steps?: Step[];
|
|
22
17
|
metadata?: Map<string, string>;
|
|
23
18
|
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
24
|
-
|
|
19
|
+
parent_suite_id?: string;
|
|
20
|
+
tags?: string[];
|
|
25
21
|
});
|
|
26
22
|
get id(): string;
|
|
27
23
|
set id(value: string);
|
|
@@ -29,129 +25,173 @@ export declare namespace testsystem.v1.entities {
|
|
|
29
25
|
set name(value: string);
|
|
30
26
|
get description(): string;
|
|
31
27
|
set description(value: string);
|
|
32
|
-
get steps(): Step[];
|
|
33
|
-
set steps(value: Step[]);
|
|
34
28
|
get metadata(): Map<string, string>;
|
|
35
29
|
set metadata(value: Map<string, string>);
|
|
36
30
|
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
37
31
|
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
38
|
-
get
|
|
39
|
-
set
|
|
40
|
-
get
|
|
32
|
+
get parent_suite_id(): string;
|
|
33
|
+
set parent_suite_id(value: string);
|
|
34
|
+
get tags(): string[];
|
|
35
|
+
set tags(value: string[]);
|
|
41
36
|
static fromObject(data: {
|
|
42
37
|
id?: string;
|
|
43
38
|
name?: string;
|
|
44
39
|
description?: string;
|
|
45
|
-
steps?: ReturnType<typeof Step.prototype.toObject>[];
|
|
46
40
|
metadata?: {
|
|
47
41
|
[key: string]: string;
|
|
48
42
|
};
|
|
49
43
|
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
50
|
-
|
|
51
|
-
|
|
44
|
+
parent_suite_id?: string;
|
|
45
|
+
tags?: string[];
|
|
46
|
+
}): TestCaseSpec;
|
|
52
47
|
toObject(): {
|
|
53
48
|
id?: string;
|
|
54
49
|
name?: string;
|
|
55
50
|
description?: string;
|
|
56
|
-
steps?: ReturnType<typeof Step.prototype.toObject>[];
|
|
57
51
|
metadata?: {
|
|
58
52
|
[key: string]: string;
|
|
59
53
|
};
|
|
60
54
|
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
61
|
-
|
|
55
|
+
parent_suite_id?: string;
|
|
56
|
+
tags?: string[];
|
|
62
57
|
};
|
|
63
58
|
serialize(): Uint8Array;
|
|
64
59
|
serialize(w: pb_1.BinaryWriter): void;
|
|
65
|
-
static deserialize(bytes: Uint8Array | pb_1.BinaryReader):
|
|
60
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TestCaseSpec;
|
|
66
61
|
serializeBinary(): Uint8Array;
|
|
67
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
62
|
+
static deserializeBinary(bytes: Uint8Array): TestCaseSpec;
|
|
68
63
|
}
|
|
69
|
-
class
|
|
64
|
+
class TestCaseRun extends pb_1.Message {
|
|
70
65
|
#private;
|
|
71
66
|
constructor(data?: any[] | {
|
|
72
67
|
id?: string;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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;
|
|
78
77
|
metadata?: Map<string, string>;
|
|
79
|
-
|
|
80
|
-
|
|
78
|
+
errors?: string[];
|
|
79
|
+
actual_tags?: string[];
|
|
80
|
+
duration?: dependency_3.google.protobuf.Duration;
|
|
81
|
+
retry_count?: number;
|
|
82
|
+
retry_index?: number;
|
|
83
|
+
timeout?: number;
|
|
81
84
|
});
|
|
82
85
|
get id(): string;
|
|
83
86
|
set id(value: string);
|
|
84
|
-
get
|
|
85
|
-
set
|
|
86
|
-
get
|
|
87
|
-
set
|
|
88
|
-
get
|
|
89
|
-
set
|
|
90
|
-
get
|
|
91
|
-
set
|
|
92
|
-
get
|
|
93
|
-
set
|
|
87
|
+
get test_id(): string;
|
|
88
|
+
set test_id(value: string);
|
|
89
|
+
get run_id(): string;
|
|
90
|
+
set run_id(value: string);
|
|
91
|
+
get test_suite_run_id(): string;
|
|
92
|
+
set test_suite_run_id(value: string);
|
|
93
|
+
get title(): string;
|
|
94
|
+
set title(value: string);
|
|
95
|
+
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
96
|
+
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
97
|
+
get start_time(): dependency_2.google.protobuf.Timestamp;
|
|
98
|
+
set start_time(value: dependency_2.google.protobuf.Timestamp);
|
|
99
|
+
get has_start_time(): boolean;
|
|
100
|
+
get attachments(): dependency_1.testsystem.v1.common.Attachment[];
|
|
101
|
+
set attachments(value: dependency_1.testsystem.v1.common.Attachment[]);
|
|
102
|
+
get error_message(): string;
|
|
103
|
+
set error_message(value: string);
|
|
104
|
+
get stack_trace(): string;
|
|
105
|
+
set stack_trace(value: string);
|
|
94
106
|
get metadata(): Map<string, string>;
|
|
95
107
|
set metadata(value: Map<string, string>);
|
|
96
|
-
get
|
|
97
|
-
set
|
|
98
|
-
get
|
|
99
|
-
set
|
|
100
|
-
get
|
|
108
|
+
get errors(): string[];
|
|
109
|
+
set errors(value: string[]);
|
|
110
|
+
get actual_tags(): string[];
|
|
111
|
+
set actual_tags(value: string[]);
|
|
112
|
+
get duration(): dependency_3.google.protobuf.Duration;
|
|
113
|
+
set duration(value: dependency_3.google.protobuf.Duration);
|
|
114
|
+
get has_duration(): boolean;
|
|
115
|
+
get retry_count(): number;
|
|
116
|
+
set retry_count(value: number);
|
|
117
|
+
get retry_index(): number;
|
|
118
|
+
set retry_index(value: number);
|
|
119
|
+
get timeout(): number;
|
|
120
|
+
set timeout(value: number);
|
|
101
121
|
static fromObject(data: {
|
|
102
122
|
id?: string;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
123
|
+
test_id?: string;
|
|
124
|
+
run_id?: string;
|
|
125
|
+
test_suite_run_id?: string;
|
|
126
|
+
title?: string;
|
|
127
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
128
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
129
|
+
attachments?: ReturnType<typeof dependency_1.testsystem.v1.common.Attachment.prototype.toObject>[];
|
|
130
|
+
error_message?: string;
|
|
131
|
+
stack_trace?: string;
|
|
108
132
|
metadata?: {
|
|
109
133
|
[key: string]: string;
|
|
110
134
|
};
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
135
|
+
errors?: string[];
|
|
136
|
+
actual_tags?: string[];
|
|
137
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
138
|
+
retry_count?: number;
|
|
139
|
+
retry_index?: number;
|
|
140
|
+
timeout?: number;
|
|
141
|
+
}): TestCaseRun;
|
|
114
142
|
toObject(): {
|
|
115
143
|
id?: string;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
144
|
+
test_id?: string;
|
|
145
|
+
run_id?: string;
|
|
146
|
+
test_suite_run_id?: string;
|
|
147
|
+
title?: string;
|
|
148
|
+
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
149
|
+
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
150
|
+
attachments?: ReturnType<typeof dependency_1.testsystem.v1.common.Attachment.prototype.toObject>[];
|
|
151
|
+
error_message?: string;
|
|
152
|
+
stack_trace?: string;
|
|
121
153
|
metadata?: {
|
|
122
154
|
[key: string]: string;
|
|
123
155
|
};
|
|
124
|
-
|
|
125
|
-
|
|
156
|
+
errors?: string[];
|
|
157
|
+
actual_tags?: string[];
|
|
158
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
159
|
+
retry_count?: number;
|
|
160
|
+
retry_index?: number;
|
|
161
|
+
timeout?: number;
|
|
126
162
|
};
|
|
127
163
|
serialize(): Uint8Array;
|
|
128
164
|
serialize(w: pb_1.BinaryWriter): void;
|
|
129
|
-
static deserialize(bytes: Uint8Array | pb_1.BinaryReader):
|
|
165
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): TestCaseRun;
|
|
130
166
|
serializeBinary(): Uint8Array;
|
|
131
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
167
|
+
static deserializeBinary(bytes: Uint8Array): TestCaseRun;
|
|
132
168
|
}
|
|
133
|
-
class
|
|
169
|
+
class StepRun extends pb_1.Message {
|
|
134
170
|
#private;
|
|
135
171
|
constructor(data?: any[] | {
|
|
136
172
|
id?: string;
|
|
137
|
-
|
|
173
|
+
run_id?: string;
|
|
174
|
+
test_case_run_id?: string;
|
|
138
175
|
title?: string;
|
|
139
176
|
description?: string;
|
|
140
177
|
start_time?: dependency_2.google.protobuf.Timestamp;
|
|
178
|
+
duration?: dependency_3.google.protobuf.Duration;
|
|
141
179
|
type?: string;
|
|
142
|
-
duration?: number;
|
|
143
180
|
metadata?: Map<string, string>;
|
|
144
181
|
parent_step_id?: string;
|
|
145
|
-
sub_steps?: Step[];
|
|
146
182
|
worker_index?: string;
|
|
147
183
|
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
148
184
|
error?: string;
|
|
185
|
+
errors?: string[];
|
|
149
186
|
location?: string;
|
|
187
|
+
category?: string;
|
|
150
188
|
});
|
|
151
189
|
get id(): string;
|
|
152
190
|
set id(value: string);
|
|
153
|
-
get
|
|
154
|
-
set
|
|
191
|
+
get run_id(): string;
|
|
192
|
+
set run_id(value: string);
|
|
193
|
+
get test_case_run_id(): string;
|
|
194
|
+
set test_case_run_id(value: string);
|
|
155
195
|
get title(): string;
|
|
156
196
|
set title(value: string);
|
|
157
197
|
get description(): string;
|
|
@@ -159,134 +199,72 @@ export declare namespace testsystem.v1.entities {
|
|
|
159
199
|
get start_time(): dependency_2.google.protobuf.Timestamp;
|
|
160
200
|
set start_time(value: dependency_2.google.protobuf.Timestamp);
|
|
161
201
|
get has_start_time(): boolean;
|
|
202
|
+
get duration(): dependency_3.google.protobuf.Duration;
|
|
203
|
+
set duration(value: dependency_3.google.protobuf.Duration);
|
|
204
|
+
get has_duration(): boolean;
|
|
162
205
|
get type(): string;
|
|
163
206
|
set type(value: string);
|
|
164
|
-
get duration(): number;
|
|
165
|
-
set duration(value: number);
|
|
166
207
|
get metadata(): Map<string, string>;
|
|
167
208
|
set metadata(value: Map<string, string>);
|
|
168
209
|
get parent_step_id(): string;
|
|
169
210
|
set parent_step_id(value: string);
|
|
170
|
-
get sub_steps(): Step[];
|
|
171
|
-
set sub_steps(value: Step[]);
|
|
172
211
|
get worker_index(): string;
|
|
173
212
|
set worker_index(value: string);
|
|
174
213
|
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
175
214
|
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
176
215
|
get error(): string;
|
|
177
216
|
set error(value: string);
|
|
217
|
+
get errors(): string[];
|
|
218
|
+
set errors(value: string[]);
|
|
178
219
|
get location(): string;
|
|
179
220
|
set location(value: string);
|
|
221
|
+
get category(): string;
|
|
222
|
+
set category(value: string);
|
|
180
223
|
static fromObject(data: {
|
|
181
224
|
id?: string;
|
|
182
|
-
|
|
225
|
+
run_id?: string;
|
|
226
|
+
test_case_run_id?: string;
|
|
183
227
|
title?: string;
|
|
184
228
|
description?: string;
|
|
185
229
|
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
230
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
186
231
|
type?: string;
|
|
187
|
-
duration?: number;
|
|
188
232
|
metadata?: {
|
|
189
233
|
[key: string]: string;
|
|
190
234
|
};
|
|
191
235
|
parent_step_id?: string;
|
|
192
|
-
sub_steps?: ReturnType<typeof Step.prototype.toObject>[];
|
|
193
236
|
worker_index?: string;
|
|
194
237
|
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
195
238
|
error?: string;
|
|
239
|
+
errors?: string[];
|
|
196
240
|
location?: string;
|
|
197
|
-
|
|
241
|
+
category?: string;
|
|
242
|
+
}): StepRun;
|
|
198
243
|
toObject(): {
|
|
199
244
|
id?: string;
|
|
200
|
-
|
|
245
|
+
run_id?: string;
|
|
246
|
+
test_case_run_id?: string;
|
|
201
247
|
title?: string;
|
|
202
248
|
description?: string;
|
|
203
249
|
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
250
|
+
duration?: ReturnType<typeof dependency_3.google.protobuf.Duration.prototype.toObject>;
|
|
204
251
|
type?: string;
|
|
205
|
-
duration?: number;
|
|
206
252
|
metadata?: {
|
|
207
253
|
[key: string]: string;
|
|
208
254
|
};
|
|
209
255
|
parent_step_id?: string;
|
|
210
|
-
sub_steps?: ReturnType<typeof Step.prototype.toObject>[];
|
|
211
256
|
worker_index?: string;
|
|
212
257
|
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
213
258
|
error?: string;
|
|
214
|
-
location?: string;
|
|
215
|
-
};
|
|
216
|
-
serialize(): Uint8Array;
|
|
217
|
-
serialize(w: pb_1.BinaryWriter): void;
|
|
218
|
-
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): Step;
|
|
219
|
-
serializeBinary(): Uint8Array;
|
|
220
|
-
static deserializeBinary(bytes: Uint8Array): Step;
|
|
221
|
-
}
|
|
222
|
-
class TestResult extends pb_1.Message {
|
|
223
|
-
#private;
|
|
224
|
-
constructor(data?: any[] | {
|
|
225
|
-
id?: string;
|
|
226
|
-
test_id?: string;
|
|
227
|
-
title?: string;
|
|
228
|
-
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
229
|
-
start_time?: dependency_2.google.protobuf.Timestamp;
|
|
230
|
-
attachments?: dependency_1.testsystem.v1.common.Attachment[];
|
|
231
|
-
error_message?: string;
|
|
232
|
-
stack_trace?: string;
|
|
233
|
-
metadata?: Map<string, string>;
|
|
234
|
-
errors?: string[];
|
|
235
|
-
});
|
|
236
|
-
get id(): string;
|
|
237
|
-
set id(value: string);
|
|
238
|
-
get test_id(): string;
|
|
239
|
-
set test_id(value: string);
|
|
240
|
-
get title(): string;
|
|
241
|
-
set title(value: string);
|
|
242
|
-
get status(): dependency_1.testsystem.v1.common.TestStatus;
|
|
243
|
-
set status(value: dependency_1.testsystem.v1.common.TestStatus);
|
|
244
|
-
get start_time(): dependency_2.google.protobuf.Timestamp;
|
|
245
|
-
set start_time(value: dependency_2.google.protobuf.Timestamp);
|
|
246
|
-
get has_start_time(): boolean;
|
|
247
|
-
get attachments(): dependency_1.testsystem.v1.common.Attachment[];
|
|
248
|
-
set attachments(value: dependency_1.testsystem.v1.common.Attachment[]);
|
|
249
|
-
get error_message(): string;
|
|
250
|
-
set error_message(value: string);
|
|
251
|
-
get stack_trace(): string;
|
|
252
|
-
set stack_trace(value: string);
|
|
253
|
-
get metadata(): Map<string, string>;
|
|
254
|
-
set metadata(value: Map<string, string>);
|
|
255
|
-
get errors(): string[];
|
|
256
|
-
set errors(value: string[]);
|
|
257
|
-
static fromObject(data: {
|
|
258
|
-
id?: string;
|
|
259
|
-
test_id?: string;
|
|
260
|
-
title?: string;
|
|
261
|
-
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
262
|
-
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
263
|
-
attachments?: ReturnType<typeof dependency_1.testsystem.v1.common.Attachment.prototype.toObject>[];
|
|
264
|
-
error_message?: string;
|
|
265
|
-
stack_trace?: string;
|
|
266
|
-
metadata?: {
|
|
267
|
-
[key: string]: string;
|
|
268
|
-
};
|
|
269
|
-
errors?: string[];
|
|
270
|
-
}): TestResult;
|
|
271
|
-
toObject(): {
|
|
272
|
-
id?: string;
|
|
273
|
-
test_id?: string;
|
|
274
|
-
title?: string;
|
|
275
|
-
status?: dependency_1.testsystem.v1.common.TestStatus;
|
|
276
|
-
start_time?: ReturnType<typeof dependency_2.google.protobuf.Timestamp.prototype.toObject>;
|
|
277
|
-
attachments?: ReturnType<typeof dependency_1.testsystem.v1.common.Attachment.prototype.toObject>[];
|
|
278
|
-
error_message?: string;
|
|
279
|
-
stack_trace?: string;
|
|
280
|
-
metadata?: {
|
|
281
|
-
[key: string]: string;
|
|
282
|
-
};
|
|
283
259
|
errors?: string[];
|
|
260
|
+
location?: string;
|
|
261
|
+
category?: string;
|
|
284
262
|
};
|
|
285
263
|
serialize(): Uint8Array;
|
|
286
264
|
serialize(w: pb_1.BinaryWriter): void;
|
|
287
|
-
static deserialize(bytes: Uint8Array | pb_1.BinaryReader):
|
|
265
|
+
static deserialize(bytes: Uint8Array | pb_1.BinaryReader): StepRun;
|
|
288
266
|
serializeBinary(): Uint8Array;
|
|
289
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
267
|
+
static deserializeBinary(bytes: Uint8Array): StepRun;
|
|
290
268
|
}
|
|
291
269
|
}
|
|
292
|
-
//# sourceMappingURL=
|
|
270
|
+
//# 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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"}
|