@aj-shadow/z-plugin-protocol-server-actorjs-cs 0.0.0-aj-beta.221

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.
Files changed (31) hide show
  1. package/.gitattributes +26 -0
  2. package/LICENSE.txt +96 -0
  3. package/README.md +5 -0
  4. package/npm-shrinkwrap.json +13 -0
  5. package/package.json +10 -0
  6. package/project/clientServer/_build/Bundle-PluginProtocol-Server-Actorjs-cs.bld +23 -0
  7. package/project/clientServer/_build/Client-PluginProtocol-Server-Actorjs-cs.bld +10 -0
  8. package/project/clientServer/_build/Server-PluginProtocol-Server-Actorjs-cs.bld +12 -0
  9. package/project/clientServer/_build/z-plugin-protocol-server-actorjs-cs.prj +28 -0
  10. package/project/clientServer/deserializers/deserializer-message-execution-started.js +22 -0
  11. package/project/clientServer/deserializers/deserializer-message-execution-stopped.js +16 -0
  12. package/project/clientServer/deserializers/deserializer-message-test-case-log.js +140 -0
  13. package/project/clientServer/deserializers/deserializer-message-test-case-started.js +46 -0
  14. package/project/clientServer/deserializers/deserializer-message-test-case-state.js +23 -0
  15. package/project/clientServer/deserializers/deserializer-message-test-case-stopped.js +31 -0
  16. package/project/clientServer/deserializers/deserializer-message-test-stage-started.js +25 -0
  17. package/project/clientServer/deserializers/deserializer-message-test-stage-stopped.js +25 -0
  18. package/project/clientServer/deserializers/deserializer-message-test-suite-started.js +19 -0
  19. package/project/clientServer/deserializers/deserializer-message-test-suite-stopped.js +25 -0
  20. package/project/clientServer/plugin-protocol/plugin_protocol_actorjs.js +60 -0
  21. package/project/clientServer/serializers/serializer-message-execution-started.js +25 -0
  22. package/project/clientServer/serializers/serializer-message-execution-stopped.js +23 -0
  23. package/project/clientServer/serializers/serializer-message-test-case-log.js +144 -0
  24. package/project/clientServer/serializers/serializer-message-test-case-started.js +40 -0
  25. package/project/clientServer/serializers/serializer-message-test-case-state.js +26 -0
  26. package/project/clientServer/serializers/serializer-message-test-case-stopped.js +30 -0
  27. package/project/clientServer/serializers/serializer-message-test-stage-started.js +27 -0
  28. package/project/clientServer/serializers/serializer-message-test-stage-stopped.js +27 -0
  29. package/project/clientServer/serializers/serializer-message-test-suite-started.js +24 -0
  30. package/project/clientServer/serializers/serializer-message-test-suite-stopped.js +27 -0
  31. package/project/z-plugin-protocol-server-actorjs-cs.tree +31 -0
package/.gitattributes ADDED
@@ -0,0 +1,26 @@
1
+
2
+ # Set the default behavior, in case people don't have core.autocrlf set.
3
+ * text=auto
4
+
5
+ # Explicitly declare text files you want to always be normalized and converted
6
+ # to native line endings on checkout.
7
+ *.json text
8
+ *.js text
9
+ *.jsx text
10
+ *.txt text
11
+ *.md text
12
+ *.bld text
13
+ *.tsk text
14
+ *.css text
15
+ *.html text
16
+
17
+
18
+ # Declare files that will always have CRLF line endings on checkout.
19
+ #*.sln text eol=crlf
20
+
21
+ # Declare files that will always have LF line endings on checkout.
22
+ #*.txt text eol=lf
23
+
24
+ # Denote all files that are truly binary and should not be modified.
25
+ *.png binary
26
+ *.jpg binary
package/LICENSE.txt ADDED
@@ -0,0 +1,96 @@
1
+
2
+ LICENSE AGREEMENT
3
+
4
+ Effective: 1st of November 2020
5
+ This License Agreement is between Licensee and Hagnell Konsulting AB (a company incorporated in Sweden with
6
+ company registration number: 559476-0570) (“Hagnell Konsulting”) and governs the use by Licensee of ActorJs
7
+ (as defined below).
8
+ By installing the Software (as defined below), Licensee agrees to be bound by the terms of this License Agreement.
9
+
10
+ DEFENITIONS
11
+ ActorJs The test tool developed by Hagnell Konsulting, utilizing the Patent and the Software.
12
+ Derivative Works Any work, whether in source or object code, which is based on the Software and which
13
+ does not constitute a new and independent work pursuant to paragraph 2 of article 4 of
14
+ the Swedish Act (1960:729) on Copyright in Literary and Artistic Works.
15
+ Documentation The manuals and instruction materials furnished by Hagnell Konsulting in connection
16
+ with ActorJs.
17
+ Licensee The physical or legal person to which the License hereunder has been granted by
18
+ Hagnell Konsulting.
19
+ Patent The patent application for a system and method for testing of systems under test, patent
20
+ application number:19218798.7 (European Patent Office).
21
+ Software The software developed and owned by Hagnell Konsulting, identified as ActorJs.
22
+
23
+ § 1 - LICENSE
24
+ Licensee is hereby granted a limited, non-exclusive and non-transferable license to use ActorJs (including any
25
+ Derivative Works created by Licensee hereunder) (the “License”). The License is granted subject to the terms and
26
+ conditions set forth below.
27
+ The Software is licensed to Licensee on an open source basis. The License includes the right to create Derivative
28
+ Works pursuant to sub-clause 3 below.
29
+ ActorJs may be used only by Licensee himself/herself/itself, or (if, for instance, Licensee is a company), by the
30
+ employees and consultants of Licensee.
31
+ The License does not include any updates to the Software, or any support services. Notwithstanding the foregoing,
32
+ should Hagnell Konsulting furnish any updates to Licensee, such updates shall be subject to the License granted hereunder.
33
+ As regards the Documentation provided by Hagnell Konsulting, Licensee may use this Documentation for the purpose of
34
+ the License hereunder (only). Licensee shall not be entitled to distribute copies of the Documentation, or electronically
35
+ communicate the Documentation, to recipients who are not employees or consultants of Licensee.
36
+
37
+ § 2 - LICENSE RESTRICTIONS
38
+ Licensee may not:
39
+ i) Rent, lease, lend, sell, distribute, transfer or otherwise make available ActorJs (and/or a Derivative Work)
40
+ (whether for value or otherwise) to third parties without Hagnell Konsulting´s written approval. Any such approval
41
+ will be subject to the third party acknowledging in writing (vis-à-vis Hagnell Konsulting) that its use of ActorJs
42
+ (and/or the Derivative Work) shall be subject to the terms and conditions of this Agreement.
43
+
44
+ ii) Distribute copies of the Software (and/or a Derivate Work), or electronically communicate the Software
45
+ (and/or a Derivative Work), to recipients who are not employees or consultants of Licensee.
46
+
47
+ § 3 – DERITATIVE WORKS
48
+ Should Licensee, or (if applicable) any of its employees or consultants, create a Derivative Work, Licensee shall
49
+ inform Hagnell Konsulting thereof in writing (an e-mail shall be sufficient). Licensee may use the Derivative Work to the
50
+ same extent as it may use the Software hereunder, but Hagnell Konsulting shall be the sole and exclusive owner of any
51
+ and all rights in the Derivative Work, including the copyright. At the request of Hagnell Konsulting, Licensee and
52
+ Hagnell Konsulting shall formalize the rights transfer in a written contract, which shall, inter alia, confirm that all rights
53
+ in the Derivative Work have been irrevocably transferred to Hagnell Konsulting, that Hagnell Konsulting is be entitled to
54
+ exploit the Derivative Work without limitation in time or any other kind of limitation, that Hagnell Konsulting may transfer
55
+ its rights to the Derivative Work to third parties and that the rights transfer from Licensee to Hagnell Konsulting shall be
56
+ free of charge.
57
+
58
+ § 4 – IMPROVEMENTS TO THE PATENT
59
+ Any improvement to the Patent, whether patentable or not, which Licensee, or (if applicable) any of its employees or
60
+ consultants, may discover, create or develop or otherwise have at its disposal, directly or indirectly, without restraints
61
+ as to the use thereof (“Improvements”), shall be disclosed promptly to Hagnell Konsulting and Hagnell Konsulting shall
62
+ have the exclusive right of perpetual duration to use the Improvements as well as to grant the use thereof to other licensees
63
+ in the whole world without compensation to Licensee, except that Licensee shall during the life of this Agreement have
64
+ the non-exclusive right to use such Improvements including corresponding patents, if any, in accordance with the
65
+ provisions of this Agreement. If Licensee decides not to apply for a patent relating to an Improvement made by
66
+ Licensee or if Licensee no longer wishes to maintain such a patent or patent application then Hagnell Konsulting may in its
67
+ sole discretion and at its own expense apply for such a patent or maintain such a patent or patent application (as the
68
+ case may be).
69
+
70
+ § 5 - COPYRIGHT AND INTELLECTUAL PROPERTY RIGHTS
71
+ The Software, the Patent and the Documentation are protected by copyright and patent laws and international
72
+ copyright and patent treaties, as well other intellectual property laws and treaties. Any such intellectual property
73
+ rights are owned and especially reserved by Hagnell Konsulting, without limitation. For the avoidance of doubt, no
74
+ ownership rights are transferred to Licensee hereunder.
75
+ “ActorJs” is a registered trademark of Hagnell Konsulting. This Agreement does not include a license to use the
76
+ trademark “ActorJs”.
77
+
78
+ § 6 - LIMITITATION ON LIABILITY
79
+ ActorJs is licensed to Licensee “as is”. Hagnell Konsulting gives no guarantees as regards the use, functionality
80
+ or performance of ActorJs and assumes no liability (whatsoever) as regards any defaults in ActorJs or any possible
81
+ infringements on third party statutory or contractual rights. Hagnell Konsulting expressly disclaims any and all warranties
82
+ not expressly given in this Agreement, including any implied warranties of merchantability, satisfactory quality, fitness
83
+ for a particular purpose, title and non-infringement. Thus, the entire risk arising out of any use of ActorJs hereunder
84
+ remains with Licensee.
85
+ The limitation of liability hereunder shall be to the maximum extent permitted by applicable law. Under no
86
+ circumstances shall Hagnell Konsulting be liable for any cost of substitute products or services, for any indirect losses or
87
+ for any consequential damages (including any loss of profits, interruptions or loss of business information).
88
+
89
+ § 7 - MISCELLANEOUS
90
+ Licensee may not, either wholly or partly, assign or pledge its rights or obligations under this Agreement to any third
91
+ party without the prior written consent of Hagnell Konsulting.
92
+
93
+ § 8 - DISPUTES
94
+ This agreement shall be governed by Swedish law. Any dispute, controversy or claim arising out of or in connection
95
+ with this contract, or the breach, termination or invalidity thereof, shall be settled by the general courts of Sweden,
96
+ with the district court of Stockholm in the first instance.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # README #
2
+
3
+ # ActorJs
4
+
5
+ **Library used by @actorjs/actorjs**
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@aj-shadow/z-plugin-protocol-server-actorjs-cs",
3
+ "version": "0.0.0-aj-beta.221",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@aj-shadow/z-plugin-protocol-server-actorjs-cs",
9
+ "version": "0.0.0-aj-beta.221",
10
+ "license": "SEE LICENSE IN LICENSE.txt"
11
+ }
12
+ }
13
+ }
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@aj-shadow/z-plugin-protocol-server-actorjs-cs",
3
+ "version": "0.0.0-aj-beta.221",
4
+ "release-step": "delivery",
5
+ "description": "Library used by @actorjs/actorjs",
6
+ "author": "ActorJs",
7
+ "license": "SEE LICENSE IN LICENSE.txt",
8
+ "repository": "https://gitlab.com/actorjs-shadow-delivery-public/z-plugin-protocol-server-actorjs-cs.git",
9
+ "dependencies": {}
10
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "layer": "PluginProtocol",
3
+ "part": "Server-Actorjs-cs",
4
+ "source": {
5
+ "path": "./build/z-plugin-protocol-server-actorjs-cs/clientServer",
6
+ "filters": ["js"]
7
+ },
8
+ "dest": "./dist/scripts",
9
+ "_bundle": true,
10
+ "ignores": [],
11
+ "externals": [],
12
+ "externalGlobs": [
13
+ "./build/z-abs-funclayer-engine-cs/**/*.js",
14
+ "./build/z-abs-corelayer-cs/**/*.js"
15
+ ],
16
+ "exports": null,
17
+ "exportSource": true,
18
+ "dependencyNames": [
19
+ "Client:PluginProtocolLayer/Server-Actorjs-cs",
20
+ "Client:FuncLayer/Engine-cs",
21
+ "Client:CoreLayer/cs"
22
+ ]
23
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "layer": "PluginProtocol",
3
+ "part": "Server-Actorjs-cs",
4
+ "source": {
5
+ "path": "./project/clientServer",
6
+ "filters": ["js"]
7
+ },
8
+ "dest": "./build/z-plugin-protocol-server-actorjs-cs/clientServer",
9
+ "dependencyNames": []
10
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "layer": "PluginProtocol",
3
+ "part": "Server-Actorjs-cs",
4
+ "source": {
5
+ "path": "./project/clientServer",
6
+ "filters": ["js"]
7
+ },
8
+ "dest": "./dist/Layers/z-plugin-protocol-server-actorjs-cs/clientServer",
9
+ "replaceCondition": null,
10
+ "replaceHandle": null,
11
+ "dependencyNames": []
12
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "builds": [
3
+ {
4
+ "name": "Server:PluginProtocol-Server-Actorjs/cs",
5
+ "type": "server",
6
+ "fileName": "Server-PluginProtocol-Server-Actorjs-cs",
7
+ "requireName": "build-server-js",
8
+ "repo": "z-plugin-protocol-server-actorjs-cs",
9
+ "repoPath": "."
10
+ },
11
+ {
12
+ "name": "Client:PluginProtocol-Server-Actorjs/cs",
13
+ "type": "client",
14
+ "fileName": "Client-PluginProtocol-Server-Actorjs-cs",
15
+ "requireName": "build-client-js",
16
+ "repo": "z-plugin-protocol-server-actorjs-cs",
17
+ "repoPath": "."
18
+ },
19
+ {
20
+ "name": "Bundle:PluginProtocol-Server-Actorjs/cs",
21
+ "type": "client",
22
+ "fileName": "Bundle-PluginProtocol-Server-Actorjs-cs",
23
+ "requireName": "build-client-bundle",
24
+ "repo": null,
25
+ "repoPath": "."
26
+ }
27
+ ]
28
+ }
@@ -0,0 +1,22 @@
1
+
2
+
3
+ 'use strict';
4
+
5
+
6
+ class DeserializerMessageExecutionStarted {
7
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
8
+ const chosen = decoder.getUint8();
9
+ const clientLogSettings = decoder.getUint8();
10
+ const clientConsoleLogSettings = decoder.getUint8();
11
+ return {
12
+ msgId,
13
+ onRealtimeName,
14
+ chosen,
15
+ clientLogSettings,
16
+ clientConsoleLogSettings
17
+ };
18
+ }
19
+ }
20
+
21
+
22
+ module.exports = DeserializerMessageExecutionStarted;
@@ -0,0 +1,16 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageExecutionStopped{
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ decoder.getUint8();
8
+ return {
9
+ msgId,
10
+ onRealtimeName
11
+ };
12
+ }
13
+ }
14
+
15
+
16
+ module.exports = DeserializerMessageExecutionStopped;
@@ -0,0 +1,140 @@
1
+
2
+ 'use strict';
3
+
4
+ const LogType = require ('z-abs-funclayer-engine-cs/clientServer/log/log-type');
5
+ const LogDataAction = require('z-abs-funclayer-engine-cs/clientServer/log/log-data-action');
6
+
7
+
8
+ class DeserializerMessageTestCaseLog {
9
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
10
+ const logType = decoder.getUint8();
11
+ const date = decoder.getBigUint64();
12
+ const actor = decoder.getCtString();
13
+ const actorPath = decoder.getCtString();
14
+ const log = decoder.getString();
15
+ const group = decoder.getCtString();
16
+ const fileName = decoder.getCtString();
17
+ const lineNumber = decoder.getUint32();
18
+ const sourceType = decoder.getUint8();
19
+ const hasInners = !!decoder.getUint1_0(true);
20
+ let inners = hasInners ? decoder.getString() : null;
21
+ const data = this._readData(logType, decoder);
22
+ return {
23
+ msgId,
24
+ onRealtimeName,
25
+ type: logType,
26
+ date: date,
27
+ actor: actor,
28
+ actorPath,
29
+ log: log,
30
+ group,
31
+ fileName,
32
+ lineNumber,
33
+ sourceType,
34
+ inners,
35
+ data
36
+ };
37
+ }
38
+
39
+ _readData(logType, decoder) {
40
+ const hasData = !!decoder.getUint1_0(false);
41
+ if(!hasData) {
42
+ decoder.getUint1_0(true);
43
+ return null;
44
+ }
45
+ if(LogType.IP === logType) {
46
+ const hasCaption = !!decoder.getUint1_1(true);
47
+ const actionId = decoder.getUint8();
48
+ if(LogDataAction.STACK === actionId) {
49
+ const actorIndex = decoder.getUint16();
50
+ const type = decoder.getUint8();
51
+ const stackId = decoder.getUint32();
52
+ const stackType = decoder.getUint8();
53
+ const stack = decoder.getCtString();
54
+ return {
55
+ actionId,
56
+ actorIndex,
57
+ type,
58
+ stackId,
59
+ stackType,
60
+ stack
61
+ };
62
+ }
63
+ else {
64
+ const stackId = decoder.getUint32();
65
+ const stack = decoder.getCtString();
66
+ const caption = hasCaption ? decoder.getCtString() : null;
67
+ return {
68
+ actionId,
69
+ stackId,
70
+ stack,
71
+ caption,
72
+ local: this._readConnectionData(decoder),
73
+ remote: this._readConnectionData(decoder)
74
+ };
75
+ }
76
+ }
77
+ else if(LogType.GUI === logType) {
78
+ decoder.getUint1_0(true);
79
+ const actionId = decoder.getUint8();
80
+ const actorIndex = decoder.getUint16();
81
+ const type = decoder.getUint8();
82
+ const stackId = decoder.getUint32();
83
+ const stack = decoder.getCtString();
84
+ const name = decoder.getCtString();
85
+ const args = decoder.getString();
86
+ return {
87
+ actionId,
88
+ actorIndex,
89
+ type,
90
+ stackId,
91
+ stack,
92
+ data: {
93
+ name,
94
+ args
95
+ }
96
+ }
97
+ }
98
+ }
99
+
100
+ _readConnectionData(decoder) {
101
+ const header = decoder.getUint1_0(false);
102
+ if(0 === header) {
103
+ decoder.getUint1_0(true);
104
+ return null;
105
+ }
106
+ const family = 1 === decoder.getUint1_1(false) ? 'IPv6' : 'IPv4';
107
+ const type = 1 === decoder.getUint1_2(false) ? 'client' : 'server';
108
+ const isShared = 1 === decoder.getUint1_3(false);
109
+ const secure = 1 === decoder.getUint1_4(true);
110
+ const ownerId = decoder.getUint32();
111
+ const id = decoder.getUint32();
112
+ const actorIndex = decoder.getUint16() - 1;
113
+ const host = decoder.getCtString();
114
+ const port = decoder.getUint16();
115
+ const transportType = decoder.getUint8();
116
+ const name = decoder.getCtString();
117
+ const actionId = decoder.getUint2_1(true);
118
+ return {
119
+ ownerId,
120
+ id,
121
+ actorIndex,
122
+ actionId: 8 & header ? 1 : (16 & header ? 2 : 0), // CONNECTED : DISCONNECTED : NOT_CONNECTED
123
+ host,
124
+ port,
125
+ transportLayer: {
126
+ transportType: transportType,
127
+ transportProperties: 0
128
+ },
129
+ name,
130
+ family,
131
+ type,
132
+ isShared,
133
+ secure,
134
+ actionId
135
+ };
136
+ }
137
+ }
138
+
139
+
140
+ module.exports = DeserializerMessageTestCaseLog;
@@ -0,0 +1,46 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageTestCaseStarted {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const index = decoder.getInt32();
8
+ const iterationTs = decoder.getUint32();
9
+ const name = decoder.getCtString();
10
+ const sutName = decoder.getCtString();
11
+ const timestamp = decoder.getBigUint64();
12
+ const isExecuted = decoder.getUint8();
13
+ const nbrOfActors = decoder.getUint16();
14
+ const actors = [];
15
+ for(let i = 0; i < nbrOfActors; ++i) {
16
+ this._getActors(decoder, actors);
17
+ }
18
+ return {
19
+ msgId,
20
+ onRealtimeName,
21
+ index,
22
+ iterationTs,
23
+ name,
24
+ sutName,
25
+ timestamp,
26
+ isExecuted,
27
+ actors
28
+ };
29
+ }
30
+
31
+ _getActors(decoder, actors) {
32
+ const name = decoder.getCtString();
33
+ const node = decoder.getCtString();
34
+ const typeId = decoder.getUint16();
35
+ const phaseId = decoder.getUint16();
36
+ actors.push({
37
+ name,
38
+ node,
39
+ typeId,
40
+ phaseId
41
+ });
42
+ }
43
+ }
44
+
45
+
46
+ module.exports = DeserializerMessageTestCaseStarted;
@@ -0,0 +1,23 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageTestCaseState {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const actorIndex = decoder.getUint16(0);
8
+ const actorOrderIndex = decoder.getUint16(2);
9
+ const stateIndex = decoder.getUint8(4);
10
+ const stateResultIndex = decoder.getUint8(5);
11
+ return {
12
+ msgId,
13
+ onRealtimeName,
14
+ actorIndex,
15
+ actorOrderIndex,
16
+ stateIndex,
17
+ stateResultIndex
18
+ };
19
+ }
20
+ }
21
+
22
+
23
+ module.exports = DeserializerMessageTestCaseState;
@@ -0,0 +1,31 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializeMessageTestCaseStopped {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const index = decoder.getInt32();
8
+ const iterationTs = decoder.getUint32();
9
+ const duration = decoder.getBigUint64();
10
+ const resultId = decoder.getUint8();
11
+ const resultIdPre = decoder.getUint8();
12
+ const resultIdExec = decoder.getUint8();
13
+ const resultIdPost = decoder.getUint8();
14
+ const last = 0 === decoder.getUint8() ? false : true;
15
+ return {
16
+ msgId,
17
+ onRealtimeName,
18
+ index,
19
+ iterationTs,
20
+ duration,
21
+ resultId,
22
+ resultIdPre,
23
+ resultIdExec,
24
+ resultIdPost,
25
+ last
26
+ };
27
+ }
28
+ }
29
+
30
+
31
+ module.exports = DeserializeMessageTestCaseStopped;
@@ -0,0 +1,25 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageTestStageStarted {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const index = decoder.getInt32();
8
+ const type = decoder.getUint8();
9
+ const iterationTs = decoder.getUint16();
10
+ const timestamp = decoder.getBigUint64();
11
+ const isExecuted = 0 === decoder.getUint8() ? false : true;
12
+ return {
13
+ msgId,
14
+ onRealtimeName,
15
+ index,
16
+ type,
17
+ iterationTs,
18
+ timestamp,
19
+ isExecuted
20
+ };
21
+ }
22
+ }
23
+
24
+
25
+ module.exports = DeserializerMessageTestStageStarted;
@@ -0,0 +1,25 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageTestStageStopped {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const index = decoder.getInt32();
8
+ const type = decoder.getUint8();
9
+ const iterationTs = decoder.getUint16();
10
+ const duration = decoder.getBigUint64();
11
+ const resultId = decoder.getUint8();
12
+ return {
13
+ msgId,
14
+ onRealtimeName,
15
+ index,
16
+ type,
17
+ iterationTs,
18
+ duration,
19
+ resultId
20
+ };
21
+ }
22
+ }
23
+
24
+
25
+ module.exports = DeserializerMessageTestStageStopped;
@@ -0,0 +1,19 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageTestSuiteStarted {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const index = decoder.getInt32();
8
+ const timestamp = decoder.getBigUint64();
9
+ return {
10
+ msgId,
11
+ onRealtimeName,
12
+ index,
13
+ timestamp
14
+ };
15
+ }
16
+ }
17
+
18
+
19
+ module.exports = DeserializerMessageTestSuiteStarted;
@@ -0,0 +1,25 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class DeserializerMessageTestSuiteStopped {
6
+ do(msgId, onRealtimeName, decoder, isServiceAction) {
7
+ const index = decoder.getInt32();
8
+ const timestamp = decoder.getBigUint64();
9
+ const duration = decoder.getBigUint64();
10
+ const resultId = decoder.getUint8();
11
+ const last = 0 === decoder.getUint8() ? false : true;
12
+ return {
13
+ msgId,
14
+ onRealtimeName,
15
+ index,
16
+ timestamp,
17
+ duration,
18
+ resultId,
19
+ last
20
+ };
21
+ }
22
+ }
23
+
24
+
25
+ module.exports = DeserializerMessageTestSuiteStopped;
@@ -0,0 +1,60 @@
1
+
2
+ 'use strict';
3
+
4
+ const SerializerMessageTestCaseLog = require('../serializers/serializer-message-test-case-log');
5
+ const SerializerMessageExecutionStarted = require('../serializers/serializer-message-execution-started');
6
+ const SerializerMessageExecutionStopped = require('../serializers/serializer-message-execution-stopped');
7
+ const SerializerMessageTestCaseStarted = require('../serializers/serializer-message-test-case-started');
8
+ const SerializerMessageTestCaseStopped = require('../serializers/serializer-message-test-case-stopped');
9
+ const SerializerMessageTestCaseState = require('../serializers/serializer-message-test-case-state');
10
+ const SerializerMessageTestStageStarted = require('../serializers/serializer-message-test-stage-started');
11
+ const SerializerMessageTestStageStopped = require('../serializers/serializer-message-test-stage-stopped');
12
+ const SerializerMessageTestSuiteStarted = require('../serializers/serializer-message-test-suite-started');
13
+ const SerializerMessageTestSuiteStopped = require('../serializers/serializer-message-test-suite-stopped');
14
+ const DeserializerMessageExecutionStarted = require('../deserializers/deserializer-message-execution-started');
15
+ const DeserializerMessageExecutionStopped = require('../deserializers/deserializer-message-execution-stopped');
16
+ const DeserializerMessageTestCaseLog = require('../deserializers/deserializer-message-test-case-log');
17
+ const DeserializerMessageTestCaseStarted = require('../deserializers/deserializer-message-test-case-started');
18
+ const DeserializerMessageTestCaseState = require('../deserializers/deserializer-message-test-case-state');
19
+ const DeserializerMessageTestCaseStopped = require('../deserializers/deserializer-message-test-case-stopped');
20
+ const DeserializerMessageTestStageStarted = require('../deserializers/deserializer-message-test-stage-started');
21
+ const DeserializerMessageTestStageStopped = require('../deserializers/deserializer-message-test-stage-stopped');
22
+ const DeserializerMessageTestSuiteStarted = require('../deserializers/deserializer-message-test-suite-started');
23
+ const DeserializerMessageTestSuiteStopped = require('../deserializers/deserializer-message-test-suite-stopped');
24
+ const AppProtocolConst = require('z-abs-funclayer-engine-cs/clientServer/communication/app-protocol/app-protocol-const');
25
+
26
+
27
+ class Plugin {
28
+ constructor() {
29
+
30
+ }
31
+
32
+ registerSerializer(channelOutput) {
33
+ channelOutput.register(AppProtocolConst.LOG, new SerializerMessageTestCaseLog());
34
+ channelOutput.register(AppProtocolConst.EXECUTION_STARTED, new SerializerMessageExecutionStarted());
35
+ channelOutput.register(AppProtocolConst.EXECUTION_STOPPED, new SerializerMessageExecutionStopped());
36
+ channelOutput.register(AppProtocolConst.TEST_CASE_STARTED, new SerializerMessageTestCaseStarted());
37
+ channelOutput.register(AppProtocolConst.TEST_CASE_STOPPED, new SerializerMessageTestCaseStopped());
38
+ channelOutput.register(AppProtocolConst.TEST_CASE_STATE, new SerializerMessageTestCaseState());
39
+ channelOutput.register(AppProtocolConst.TEST_STAGE_STARTED, new SerializerMessageTestStageStarted());
40
+ channelOutput.register(AppProtocolConst.TEST_STAGE_STOPPED, new SerializerMessageTestStageStopped());
41
+ channelOutput.register(AppProtocolConst.TEST_SUITE_STARTED, new SerializerMessageTestSuiteStarted());
42
+ channelOutput.register(AppProtocolConst.TEST_SUITE_STOPPED, new SerializerMessageTestSuiteStopped());
43
+ }
44
+
45
+ registerDeserializer(channelInput) {
46
+ channelInput.register(AppProtocolConst.LOG, 'MessageTestCaseLog', new DeserializerMessageTestCaseLog());
47
+ channelInput.register(AppProtocolConst.EXECUTION_STARTED, 'MessageExecutionStarted', new DeserializerMessageExecutionStarted());
48
+ channelInput.register(AppProtocolConst.EXECUTION_STOPPED, 'MessageExecutionStopped', new DeserializerMessageExecutionStopped());
49
+ channelInput.register(AppProtocolConst.TEST_CASE_STARTED, 'MessageTestCaseStarted', new DeserializerMessageTestCaseStarted());
50
+ channelInput.register(AppProtocolConst.TEST_CASE_STATE, 'MessageTestCaseState', new DeserializerMessageTestCaseState());
51
+ channelInput.register(AppProtocolConst.TEST_CASE_STOPPED, 'MessageTestCaseStopped', new DeserializerMessageTestCaseStopped());
52
+ channelInput.register(AppProtocolConst.TEST_STAGE_STARTED, 'MessageTestStageStarted', new DeserializerMessageTestStageStarted());
53
+ channelInput.register(AppProtocolConst.TEST_STAGE_STOPPED, 'MessageTestStageStopped', new DeserializerMessageTestStageStopped());
54
+ channelInput.register(AppProtocolConst.TEST_SUITE_STARTED, 'MessageTestSuiteStarted', new DeserializerMessageTestSuiteStarted());
55
+ channelInput.register(AppProtocolConst.TEST_SUITE_STOPPED, 'MessageTestSuiteStopped', new DeserializerMessageTestSuiteStopped());
56
+ }
57
+ }
58
+
59
+
60
+ module.exports = Plugin;
@@ -0,0 +1,25 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageExecutionStarted {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(3);
17
+ encoder.setUint8(msg.chosen);
18
+ encoder.setUint8(msg.clientLogSettings);
19
+ encoder.setUint8(msg.clientConsoleLogSettings);
20
+ return buffer;
21
+ }
22
+ }
23
+
24
+
25
+ module.exports = SerializerMessageExecutionStarted;
@@ -0,0 +1,23 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageExecutionStopped {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(1);
17
+ encoder.setUint8(0x1);
18
+ return buffer;
19
+ }
20
+ }
21
+
22
+
23
+ module.exports = SerializerMessageExecutionStopped;
@@ -0,0 +1,144 @@
1
+
2
+ 'use strict';
3
+
4
+ const LogType = require ('z-abs-funclayer-engine-cs/clientServer/log/log-type');
5
+ const LogDataAction = require('z-abs-funclayer-engine-cs/clientServer/log/log-data-action');
6
+ const EncoderConst = require('z-abs-corelayer-cs/clientServer/communication/core-protocol/encoder-const');
7
+
8
+
9
+ class SerializerMessageTestCaseLog {
10
+ static LOG_SIZE_BIAS = EncoderConst.Uint8Size + EncoderConst.Uint64Size + EncoderConst.CtSize + EncoderConst.CtSize + EncoderConst.CtSize + EncoderConst.CtSize + EncoderConst.Uint32Size + EncoderConst.Uint8Size + EncoderConst.Uint8Size;
11
+ static DATA_SIZE_IP_BIAS = EncoderConst.Uint8Size + EncoderConst.Uint8Size + EncoderConst.Uint32Size + EncoderConst.CtSize;
12
+ static DATA_SIZE_STACK_BIAS = EncoderConst.Uint8Size + EncoderConst.Uint8Size + EncoderConst.Uint16Size + EncoderConst.Uint8Size + EncoderConst.Uint32Size + EncoderConst.Uint8Size + EncoderConst.CtSize;
13
+ static DATA_SIZE_GUI_BIAS = EncoderConst.Uint8Size + EncoderConst.Uint8Size + EncoderConst.Uint16Size + EncoderConst.Uint8Size + EncoderConst.Uint32Size + EncoderConst.CtSize + EncoderConst.CtSize;
14
+ static CONNECTION_DATA_SIZE_BIAS = EncoderConst.Uint8Size + EncoderConst.Uint32Size + EncoderConst.Uint32Size + EncoderConst.Uint16Size + EncoderConst.CtSize + EncoderConst.Uint16Size + EncoderConst.Uint8Size + EncoderConst.CtSize + EncoderConst.Uint8Size;
15
+
16
+ constructor() {
17
+ this.encoder = null;
18
+ }
19
+
20
+ init(encoder) {
21
+ this.encoder = encoder;
22
+ }
23
+
24
+ do(msg, cachedTexts) {
25
+ const encoder = this.encoder;
26
+ const logSize = encoder.getStringBytes(msg.log) + SerializerMessageTestCaseLog.LOG_SIZE_BIAS;
27
+ const inners = msg.inners ? JSON.stringify(msg.inners) : '';
28
+ let size = logSize + this._calculateData(msg, encoder);
29
+ if(inners) {
30
+ size += encoder.getStringBytes(inners);
31
+ }
32
+ const buffer = encoder.createBuffer(size);
33
+ encoder.setUint8(msg.type); // LOG TYPE
34
+ encoder.setBigUint64(msg.date); // DATE
35
+ encoder.setCtString(msg.actor, cachedTexts); // ACTOR
36
+ encoder.setCtString(msg.actorPath, cachedTexts); // ACTOR PATH
37
+ encoder.setString(msg.log); // LOG
38
+ encoder.setCtString(msg.group, cachedTexts); // GROUP
39
+ encoder.setCtString(msg.fileName, cachedTexts); // FILE NAME
40
+ encoder.setUint32(msg.lineNumber); // LINE NUMBER
41
+ encoder.setUint8(msg.sourceType); // SOURCE
42
+ encoder.setUint1_0(inners ? 1 : 0, true); // hasInners
43
+ if(inners) {
44
+ encoder.setString(inners);
45
+ }
46
+ this._writeData(msg, encoder, buffer, cachedTexts, inners);
47
+ return buffer;
48
+ }
49
+
50
+ _writeData(msg, encoder, buffer, cachedTexts, inners) {
51
+ const data = msg.data;
52
+ if(data) {
53
+ if(LogType.IP === msg.type) {
54
+ if(LogDataAction.STACK === data.actionId) {
55
+ encoder.setUint1_0(1, false); // hasData
56
+ encoder.setUint1_1(0, true); // hasCaption
57
+ encoder.setUint8(data.actionId);
58
+ encoder.setUint16(data.actorIndex);
59
+ encoder.setUint8(data.type);
60
+ encoder.setUint32(data.stackId ? data.stackId : 0);
61
+ encoder.setUint8(data.stackType);
62
+ encoder.setCtString(data.stack, cachedTexts);
63
+ return;
64
+ }
65
+ else {
66
+ encoder.setUint1_0(1, false); // hasData
67
+ encoder.setUint1_1(data.caption ? 1 : 0, true); // hasCaption
68
+ encoder.setUint8(data.actionId);
69
+ encoder.setUint32(data.stackId ? data.stackId : 0);
70
+ encoder.setCtString(data.stack, cachedTexts);
71
+ if(data.caption) {
72
+ encoder.setCtString(data.caption, cachedTexts);
73
+ }
74
+ this._writeConnectionData(encoder, buffer, data.local, cachedTexts);
75
+ this._writeConnectionData(encoder, buffer, data.remote, cachedTexts);
76
+ return;
77
+ }
78
+ }
79
+ else if(LogType.GUI === msg.type) {
80
+ encoder.setUint1_0(1, true); // hasData
81
+ encoder.setUint8(data.actionId);
82
+ encoder.setUint16(data.actorIndex);
83
+ encoder.setUint8(data.type);
84
+ encoder.setUint32(data.stackId ? data.stackId : 0);
85
+ encoder.setCtString(data.stack, cachedTexts);
86
+ encoder.setCtString(data.data.name, cachedTexts);
87
+ encoder.setString(data.data.args);
88
+ return;
89
+ }
90
+ }
91
+ encoder.setUint1_0(0, true);
92
+ }
93
+
94
+ _calculateData(msg, encoder) {
95
+ const data = msg.data;
96
+ if(data) {
97
+ if(LogType.IP === msg.type) {
98
+ if(LogDataAction.STACK === data.actionId) {
99
+ return SerializerMessageTestCaseLog.DATA_SIZE_STACK_BIAS;
100
+ }
101
+ else {
102
+ return SerializerMessageTestCaseLog.DATA_SIZE_IP_BIAS + this._calculateConnectionData(data.local) + this._calculateConnectionData(data.remote) + (data.caption ? EncoderConst.CtSize : 0);
103
+ }
104
+ }
105
+ else if(LogType.GUI === msg.type) {
106
+ return SerializerMessageTestCaseLog.DATA_SIZE_GUI_BIAS + encoder.getStringBytes(data.data.args);
107
+ }
108
+ }
109
+ return EncoderConst.Uint8Size;
110
+ }
111
+
112
+ _writeConnectionData(encoder, buffer, connectionData, cachedTexts) {
113
+ if(connectionData) {
114
+ encoder.setUint1_0(1, false);
115
+ encoder.setUint1_1('IPv6' === connectionData.family ? 1 : 0, false);
116
+ encoder.setUint1_2('client' === connectionData.type ? 1 : 0, false);
117
+ encoder.setUint1_3(connectionData.isShared ? 1 : 0, false);
118
+ encoder.setUint1_4(connectionData.secure ? 1 : 0, true);
119
+ encoder.setUint32(connectionData.ownerId);
120
+ encoder.setUint32(connectionData.id === -1 ? 0 : connectionData.id); // CONNECTION DATA - ID
121
+ encoder.setUint16(connectionData.actorIndex + 1);
122
+ encoder.setCtString(connectionData.host, cachedTexts);
123
+ encoder.setUint16(connectionData.port);
124
+ encoder.setUint8(connectionData.transportLayer.transportType);
125
+ encoder.setCtString(connectionData.addressName, cachedTexts);
126
+ encoder.setUint2_1(connectionData.actionId, true);
127
+ }
128
+ else {
129
+ encoder.setUint8(0);
130
+ }
131
+ }
132
+
133
+ _calculateConnectionData(connectionData) {
134
+ if(connectionData) {
135
+ return SerializerMessageTestCaseLog.CONNECTION_DATA_SIZE_BIAS;
136
+ }
137
+ else {
138
+ return EncoderConst.Uint8Size;
139
+ }
140
+ }
141
+ }
142
+
143
+
144
+ module.exports = SerializerMessageTestCaseLog;
@@ -0,0 +1,40 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestCaseStarted {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ let size = 23 + 8 * msg.actors.length;
17
+ const buffer = encoder.createBuffer(size);
18
+ encoder.setInt32(msg.index);
19
+ encoder.setUint32(msg.iterationTs);
20
+ encoder.setCtString(msg.name, cachedTexts);
21
+ encoder.setCtString(msg.sutName, cachedTexts);
22
+ encoder.setBigUint64(msg.timestamp);
23
+ encoder.setUint8(msg.isExecuted ? 1 : 0);
24
+ encoder.setUint16(msg.actors.length);
25
+ msg.actors.forEach((actor) => {
26
+ this._writeActor(encoder, actor, cachedTexts);
27
+ });
28
+ return buffer;
29
+ }
30
+
31
+ _writeActor(encoder, actor, cachedTexts) {
32
+ encoder.setCtString(actor.name, cachedTexts);
33
+ encoder.setCtString(actor.node, cachedTexts);
34
+ encoder.setUint16(actor.typeId);
35
+ encoder.setUint16(actor.phaseId);
36
+ }
37
+ }
38
+
39
+
40
+ module.exports = SerializerMessageTestCaseStarted;
@@ -0,0 +1,26 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestCaseState {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(6);
17
+ encoder.setUint16(msg.actorIndex);
18
+ encoder.setUint16(msg.actorOrderIndex);
19
+ encoder.setUint8(msg.stateIndex);
20
+ encoder.setUint8(msg.stateResultIndex);
21
+ return buffer;
22
+ }
23
+ }
24
+
25
+
26
+ module.exports = SerializerMessageTestCaseState;
@@ -0,0 +1,30 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestCaseStopped {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(21);
17
+ encoder.setInt32(msg.index);
18
+ encoder.setUint32(msg.iterationTs);
19
+ encoder.setBigUint64(msg.duration);
20
+ encoder.setUint8(msg.resultId);
21
+ encoder.setUint8(msg.resultIdPre);
22
+ encoder.setUint8(msg.resultIdExec);
23
+ encoder.setUint8(msg.resultIdPost);
24
+ encoder.setUint8(msg.last ? 1 : 0);
25
+ return buffer;
26
+ }
27
+ }
28
+
29
+
30
+ module.exports = SerializerMessageTestCaseStopped;
@@ -0,0 +1,27 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestSuiteStarted {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(16);
17
+ encoder.setInt32(msg.index);
18
+ encoder.setUint8(msg.type);
19
+ encoder.setUint16(msg.iterationTs);
20
+ encoder.setBigUint64(msg.timestamp);
21
+ encoder.setUint8(msg.isExecuted ? 1 : 0);
22
+ return buffer;
23
+ }
24
+ }
25
+
26
+
27
+ module.exports = SerializerMessageTestSuiteStarted;
@@ -0,0 +1,27 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestStageStopped {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(16);
17
+ encoder.setInt32(msg.index);
18
+ encoder.setUint8(msg.type);
19
+ encoder.setUint16(msg.iterationTs);
20
+ encoder.setBigUint64(msg.duration);
21
+ encoder.setUint8(msg.resultId);
22
+ return buffer;
23
+ }
24
+ }
25
+
26
+
27
+ module.exports = SerializerMessageTestStageStopped;
@@ -0,0 +1,24 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestSuiteStarted {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(12);
17
+ encoder.setInt32(msg.index);
18
+ encoder.setBigUint64(msg.timestamp);
19
+ return buffer;
20
+ }
21
+ }
22
+
23
+
24
+ module.exports = SerializerMessageTestSuiteStarted;
@@ -0,0 +1,27 @@
1
+
2
+ 'use strict';
3
+
4
+
5
+ class SerializerMessageTestSuiteStopped {
6
+ constructor() {
7
+ this.encoder = null;
8
+ }
9
+
10
+ init(encoder) {
11
+ this.encoder = encoder;
12
+ }
13
+
14
+ do(msg, cachedTexts) {
15
+ const encoder = this.encoder;
16
+ const buffer = encoder.createBuffer(22);
17
+ encoder.setInt32(msg.index);
18
+ encoder.setBigUint64(msg.timestamp);
19
+ encoder.setBigUint64(msg.duration);
20
+ encoder.setUint8(msg.resultId);
21
+ encoder.setUint8(msg.last ? 1 : 0);
22
+ return buffer;
23
+ }
24
+ }
25
+
26
+
27
+ module.exports = SerializerMessageTestSuiteStopped;
@@ -0,0 +1,31 @@
1
+ fce8532b-dd62-443b-bc09-669755fee127;;z-plugin-protocol-server-actorjs-cs;project_folder;.;[actorjs,js]
2
+ 3038a687-a81d-4008-b2be-a0a55d30ba7d;fce8532b-dd62-443b-bc09-669755fee127;clientServer;static_folder;./z-plugin-protocol-server-actorjs-cs;[js]
3
+ c7186736-d8dd-4ae5-9093-fb379e785e7f;3038a687-a81d-4008-b2be-a0a55d30ba7d;_build;static_folder;./z-plugin-protocol-server-actorjs-cs/clientServer;[bld]
4
+ 160feb3a-7331-4ac7-bce5-8df75b2182d6;c7186736-d8dd-4ae5-9093-fb379e785e7f;Bundle-PluginProtocol-Server-Actorjs-cs.bld;file;./z-plugin-protocol-server-actorjs-cs/clientServer/_build;bld
5
+ 41d91d9d-7474-43aa-b52a-64eb9fc76589;c7186736-d8dd-4ae5-9093-fb379e785e7f;Client-PluginProtocol-Server-Actorjs-cs.bld;file;./z-plugin-protocol-server-actorjs-cs/clientServer/_build;bld
6
+ 7fe3bc20-a1ed-4c73-a185-f86bb1acc2c9;c7186736-d8dd-4ae5-9093-fb379e785e7f;Server-PluginProtocol-Server-Actorjs-cs.bld;file;./z-plugin-protocol-server-actorjs-cs/clientServer/_build;bld
7
+ 674ea724-11a7-4646-8a0c-1ee4adbf82f3;c7186736-d8dd-4ae5-9093-fb379e785e7f;z-plugin-protocol-server-actorjs-cs.prj;file;./z-plugin-protocol-server-actorjs-cs/clientServer/_build;prj
8
+ 9765f69f-92b3-42cd-afd4-d70be049e61d;3038a687-a81d-4008-b2be-a0a55d30ba7d;deserializers;folder;./z-plugin-protocol-server-actorjs-cs/clientServer;[js]
9
+ 0cb1b1c0-2b28-49a1-99ef-9c5109f2bb5a;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-execution-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
10
+ c6791e99-c7d4-402a-966b-16e1f0d39d66;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-execution-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
11
+ 48e95bda-888e-41a6-966c-527bdfc9985a;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-case-log.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
12
+ f7d42ac1-1d69-490a-83ab-da8cbbc66ac1;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-case-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
13
+ f683741b-73e5-480d-b202-492931c642f5;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-case-state.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
14
+ c1cb97ed-9fa5-49c7-9f83-47f83d6f3170;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-case-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
15
+ c67fc3c7-6c34-4e08-8d94-568b16649d09;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-stage-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
16
+ ca1c6dd1-ed3a-49c5-a051-18f5234836d4;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-stage-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
17
+ ee6cc1c7-c0dc-410e-bcb2-0a805e3a3c31;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-suite-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
18
+ 3b0def29-aa43-40db-b4c2-73c1c7ba6b65;9765f69f-92b3-42cd-afd4-d70be049e61d;deserializer-message-test-suite-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/deserializers;js
19
+ ed7c08b4-7b7e-46c3-adad-7910fae9d76c;3038a687-a81d-4008-b2be-a0a55d30ba7d;plugin-protocol;folder;./z-plugin-protocol-server-actorjs-cs/clientServer;[js]
20
+ a47afe3f-92c3-4745-a64c-e8b7d49e6e32;ed7c08b4-7b7e-46c3-adad-7910fae9d76c;plugin_protocol_actorjs.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/plugin-protocol;js
21
+ 4dda3381-c11b-4c9d-98df-30accc5d74d8;3038a687-a81d-4008-b2be-a0a55d30ba7d;serializers;folder;./z-plugin-protocol-server-actorjs-cs/clientServer;[js]
22
+ f06a3fea-acb0-4fdd-8b31-08396e8c93b5;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-execution-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
23
+ e5eb6ba7-9fbb-40fa-822b-e198e54b369d;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-execution-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
24
+ 42727571-0431-48e5-a350-0148d8b6689a;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-case-log.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
25
+ 1702f541-70af-40dd-b1a8-4219e114165b;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-case-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
26
+ 3a02f0c0-6508-4ff8-ba82-440857da5d95;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-case-state.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
27
+ 9ecb3209-f2fb-49fb-92b9-7f8067bb9a94;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-case-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
28
+ 440a2972-495c-461a-bfca-f06268c5ac38;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-stage-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
29
+ 00e9c704-3a41-496b-9f48-72c02c7e363b;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-stage-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
30
+ 844584e9-3e37-46af-9fdd-31045d558bfa;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-suite-started.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js
31
+ 624c807b-9ebf-423c-982e-9462d0f9e59e;4dda3381-c11b-4c9d-98df-30accc5d74d8;serializer-message-test-suite-stopped.js;file;./z-plugin-protocol-server-actorjs-cs/clientServer/serializers;js