-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathtest-execution-service.ts
167 lines (140 loc) · 5.55 KB
/
test-execution-service.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import * as constants from "../constants";
import * as path from 'path';
import * as os from 'os';
import { RunController } from "../controllers/run-controller";
interface IKarmaConfigOptions {
debugBrk: boolean;
debugTransport: boolean;
appPath: string;
}
export class TestExecutionService implements ITestExecutionService {
private static CONFIG_FILE_NAME = `node_modules/${constants.TEST_RUNNER_NAME}/config.js`;
private static SOCKETIO_JS_FILE_NAME = `node_modules/${constants.TEST_RUNNER_NAME}/socket.io.js`;
constructor(
private $runController: RunController,
private $httpClient: Server.IHttpClient,
private $config: IConfiguration,
private $logger: ILogger,
private $fs: IFileSystem,
private $options: IOptions,
private $pluginsService: IPluginsService,
private $projectDataService: IProjectDataService,
private $childProcess: IChildProcess) { }
public platform: string;
public async startKarmaServer(platform: string, liveSyncInfo: ILiveSyncInfo, deviceDescriptors: ILiveSyncDeviceDescriptor[]): Promise<void> {
platform = platform.toLowerCase();
this.platform = platform;
const projectData = this.$projectDataService.getProjectData(liveSyncInfo.projectDir);
// We need the dependencies installed here, so we can start the Karma server.
await this.$pluginsService.ensureAllDependenciesAreInstalled(projectData);
const karmaConfig = this.getKarmaConfiguration(platform, projectData);
// In case you want to debug the unit test runner, add "--inspect-brk=<port>" as a first element in the array of args.
const karmaRunner = this.$childProcess.spawn(process.execPath, [path.join(__dirname, "karma-execution.js")], { stdio: ["inherit", "inherit", "inherit", "ipc"] });
const launchKarmaTests = async (karmaData: any) => {
this.$logger.trace("## Unit-testing: Parent process received message", karmaData);
let port: string;
if (karmaData.url) {
port = karmaData.url.port;
const socketIoJsUrl = `http://${karmaData.url.host}/socket.io/socket.io.js`;
const socketIoJs = (await this.$httpClient.httpRequest(socketIoJsUrl)).body;
this.$fs.writeFile(path.join(liveSyncInfo.projectDir, TestExecutionService.SOCKETIO_JS_FILE_NAME), socketIoJs);
}
if (karmaData.launcherConfig) {
const configOptions: IKarmaConfigOptions = JSON.parse(karmaData.launcherConfig);
const configJs = this.generateConfig(port, configOptions);
this.$fs.writeFile(path.join(liveSyncInfo.projectDir, TestExecutionService.CONFIG_FILE_NAME), configJs);
}
// Prepare the project AFTER the TestExecutionService.CONFIG_FILE_NAME file is created in node_modules
// so it will be sent to device.
await this.$runController.run({
liveSyncInfo,
deviceDescriptors
});
};
karmaRunner.on("message", (karmaData: any) => {
this.$logger.trace(`The received message from karma is: `, karmaData);
if (!karmaData.launcherConfig && !karmaData.url) {
return;
}
launchKarmaTests(karmaData)
.catch((result) => {
this.$logger.error(result);
process.exit(ErrorCodes.KARMA_FAIL);
});
});
return new Promise<void>((resolve, reject) => {
karmaRunner.on("exit", (exitCode: number) => {
if (exitCode !== 0) {
//End our process with a non-zero exit code
const testError = <any>new Error("Test run failed.");
reject(testError);
} else {
resolve();
}
});
karmaRunner.send({ karmaConfig: karmaConfig });
});
}
public async canStartKarmaServer(projectData: IProjectData): Promise<boolean> {
let canStartKarmaServer = true;
const requiredDependencies = ["karma", "nativescript-unit-test-runner"];
_.each(requiredDependencies, (dep) => {
if (!projectData.dependencies[dep] && !projectData.devDependencies[dep]) {
canStartKarmaServer = false;
return;
}
});
return canStartKarmaServer;
}
allowedParameters: ICommandParameter[] = [];
private generateConfig(port: string, options: any): string {
const nics = os.networkInterfaces();
const ips = Object.keys(nics)
.map(nicName => nics[nicName].filter((binding: any) => binding.family === 'IPv4')[0])
.filter(binding => binding)
.map(binding => binding.address);
const config = {
port,
ips,
options,
};
return 'module.exports = ' + JSON.stringify(config);
}
private getKarmaConfiguration(platform: string, projectData: IProjectData): any {
const karmaConfig: any = {
browsers: [platform],
configFile: path.join(projectData.projectDir, 'karma.conf.js'),
_NS: {
log: this.$logger.getLevel(),
path: this.$options.path,
tns: process.argv[1],
node: process.execPath,
options: {
debugTransport: this.$options.debugTransport,
debugBrk: this.$options.debugBrk,
watch: !!this.$options.watch,
bundle: true,
appDirectoryRelativePath: projectData.getAppDirectoryRelativePath()
}
},
};
if (this.$config.DEBUG || this.$logger.getLevel() === 'TRACE') {
karmaConfig.logLevel = 'DEBUG';
}
if (!this.$options.watch) {
// Setting singleRun to true will automatically start the tests when new browser (device in our case) is registered in karma.
karmaConfig.singleRun = true;
}
if (this.$options.debugBrk) {
karmaConfig.browserNoActivityTimeout = 1000000000;
}
karmaConfig.projectDir = projectData.projectDir;
karmaConfig.bundle = true;
karmaConfig.debugBrk = this.$options.debugBrk;
karmaConfig.appPath = projectData.getAppDirectoryRelativePath();
karmaConfig.platform = platform.toLowerCase();
this.$logger.debug(JSON.stringify(karmaConfig, null, 4));
return karmaConfig;
}
}
$injector.register('testExecutionService', TestExecutionService);