Skip to content

Commit e2c80a4

Browse files
committed
actualize current state of the process-rerun
1 parent 4d3ebd7 commit e2c80a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+874
-1452
lines changed

.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
node_modules
2-
allure-results
32
package-lock.json
4-
ex.js
5-
spa-report
63
.idea
7-
playground.*
4+
playground.*
5+
built
6+
coverage

.npmignore

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
a.js
2-
ex.js
3-
tsconfig.json
4-
po
1+
lib
52
specs
6-
util
7-
config
8-
node_modules
9-
allure-results
10-
protractor.conf.js
11-
package-lock.json
12-
unit_specs
13-
lol.js
3+
coverage
4+
playground.*
5+
tsconfig.json
6+
jest.config.js
7+
readme.md

bin/rerun

-61
This file was deleted.

config/protractor.conf.ts

-33
This file was deleted.

jest.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
testEnvironment: 'node',
4+
testTimeout: 10000
5+
};

lib/commandExecutorBuilder.js

-14
This file was deleted.

lib/commandExecutorBuilder.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import {buildExecRunner} from './execProc'
2+
// import {buildSpawnRunner} from './spawnProc';
3+
4+
function buildCommandExecutor(notRetriable, {spawn = false, ...runOpts}) {
5+
return buildExecRunner(notRetriable, runOpts)
6+
// TODO will be implemented
7+
// if (spawn) {
8+
// return buildSpawnRunner(notRetriable, runOpts)
9+
// } else {
10+
// }
11+
}
12+
13+
export {
14+
buildCommandExecutor
15+
}

lib/error.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class ProcessRerunError extends Error {
2+
constructor(type, message) {
3+
super(message);
4+
this.name = `${type}${this.constructor.name}`;
5+
Error.captureStackTrace(this, this.constructor);
6+
}
7+
}
8+
9+
export {
10+
ProcessRerunError
11+
}

lib/exec/index.ts

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import {exec} from 'child_process';
2+
import {millisecondsToMinutes} from '../utils'
3+
import {logger} from '../logger';
4+
import {ProcessRerunError} from '../error';
5+
6+
function execute(cmd: string, executionHolder: {stackTrace: string}, execOpts = {}, debugProcess) {
7+
const startTime = +Date.now();
8+
if ((typeof cmd) !== 'string') {
9+
throw new ProcessRerunError('Type', `cmd (first argument should be a string), current type is ${typeof cmd}`);
10+
}
11+
if ((typeof executionHolder) !== 'object') {
12+
throw new ProcessRerunError('Type', `executionHolder (second argument should be an object), current type is ${typeof executionHolder}`);
13+
}
14+
if (executionHolder === null) {
15+
throw new ProcessRerunError('Type', `executionHolder (second argument should be an object), current type is null`);
16+
}
17+
18+
const execProc = exec(cmd, execOpts, (error, stdout, stderr) => {
19+
20+
logger.info('___________________________________________________________________________');
21+
logger.info(`command for process: ${cmd}`);
22+
logger.info(`process duration: ${millisecondsToMinutes(+Date.now() - startTime)}`);
23+
logger.info(`PID: ${execProc.pid}`);
24+
logger.info(`stdout: ${stdout}`);
25+
if (stderr) logger.error(`stderr: ${stderr}`);
26+
if (error) logger.error(`error: ${error}`);
27+
logger.info('___________________________________________________________________________');
28+
29+
executionHolder.stackTrace += `${stdout}${stderr}`;
30+
});
31+
32+
return execProc;
33+
}
34+
35+
export {
36+
execute
37+
}

lib/execProc.js

-130
This file was deleted.

0 commit comments

Comments
 (0)