fix(core): update
This commit is contained in:
parent
af030ed013
commit
ad2866ae0b
@ -11,7 +11,7 @@
|
||||
"tstest": "./cli.js"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "(npm run cleanUp && npm run prepareTest && npm run tstest && npm run cleanUp)",
|
||||
"test": "(npm run cleanUp && npm run prepareTest && npm run tstest)",
|
||||
"prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install",
|
||||
"tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/ --web",
|
||||
"cleanUp": "rm -rf .nogit/sandbox-npmts",
|
||||
|
@ -88,35 +88,130 @@ export class TsTest {
|
||||
// lets create a server
|
||||
const server = new plugins.smartexpress.Server({
|
||||
cors: true,
|
||||
port: 3007
|
||||
port: 3007,
|
||||
});
|
||||
server.addRoute('/test', new plugins.smartexpress.Handler('GET', async (req, res) => {
|
||||
server.addRoute(
|
||||
'/test',
|
||||
new plugins.smartexpress.Handler('GET', async (req, res) => {
|
||||
res.type('.html');
|
||||
res.write(`
|
||||
<html>
|
||||
<head></head>
|
||||
<head>
|
||||
<script>
|
||||
globalThis.testdom = true;
|
||||
</script>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
||||
`);
|
||||
res.end();
|
||||
}));
|
||||
})
|
||||
);
|
||||
server.addRoute('*', new plugins.smartexpress.HandlerStatic(tsbundleCacheDirPath));
|
||||
await server.start();
|
||||
|
||||
// lets do the browser bit
|
||||
await this.smartbrowserInstance.start();
|
||||
const evaluation = await this.smartbrowserInstance.evaluateOnPage('http://localhost:3007/test', async () => {
|
||||
const logStore = 'hello';
|
||||
const evaluation = await this.smartbrowserInstance.evaluateOnPage(
|
||||
`http://localhost:3007/test?bundleName=${bundleFileName}`,
|
||||
async () => {
|
||||
let logStore = 'Starting log capture\n';
|
||||
// tslint:disable-next-line: max-classes-per-file
|
||||
class Deferred<T> {
|
||||
public promise: Promise<T>;
|
||||
public resolve;
|
||||
public reject;
|
||||
public status;
|
||||
|
||||
public startedAt: number;
|
||||
public stoppedAt: number;
|
||||
public get duration(): number {
|
||||
if (this.stoppedAt) {
|
||||
return this.stoppedAt - this.startedAt;
|
||||
} else {
|
||||
return Date.now() - this.startedAt;
|
||||
}
|
||||
}
|
||||
|
||||
constructor() {
|
||||
this.promise = new Promise<T>((resolve, reject) => {
|
||||
this.resolve = (valueArg: T | PromiseLike<T>) => {
|
||||
this.status = 'fulfilled';
|
||||
this.stoppedAt = Date.now();
|
||||
resolve(valueArg);
|
||||
};
|
||||
this.reject = (reason: any) => {
|
||||
this.status = 'rejected';
|
||||
this.stoppedAt = Date.now();
|
||||
reject(reason);
|
||||
};
|
||||
this.startedAt = Date.now();
|
||||
this.status = 'pending';
|
||||
});
|
||||
}
|
||||
}
|
||||
const done = new Deferred();
|
||||
const convertToText = (obj) => {
|
||||
// create an array that will later be joined into a string.
|
||||
const stringArray = [];
|
||||
|
||||
if (typeof obj === 'object' && obj.join === undefined) {
|
||||
stringArray.push('{');
|
||||
for (const prop of Object.keys(obj)) {
|
||||
stringArray.push(prop, ': ', convertToText(obj[prop]), ',');
|
||||
}
|
||||
stringArray.push('}');
|
||||
|
||||
// is array
|
||||
} else if (typeof obj === 'object' && !(obj.join === undefined)) {
|
||||
stringArray.push('[');
|
||||
for (const prop of Object.keys(obj)) {
|
||||
stringArray.push(convertToText(obj[prop]), ',');
|
||||
}
|
||||
stringArray.push(']');
|
||||
|
||||
// is function
|
||||
} else if (typeof obj === 'function') {
|
||||
stringArray.push(obj.toString());
|
||||
|
||||
// all other values can be done with JSON.stringify
|
||||
} else {
|
||||
stringArray.push(JSON.stringify(obj));
|
||||
}
|
||||
|
||||
return stringArray.join('');
|
||||
};
|
||||
const log = console.log.bind(console);
|
||||
console.log = (...args) => {
|
||||
log('My Console!!!');
|
||||
args = args.map((argument) => {
|
||||
return typeof argument !== 'string' ? convertToText(argument) : argument;
|
||||
});
|
||||
logStore += `${args}\n`;
|
||||
log(...args);
|
||||
};
|
||||
const script = document.createElement('script');
|
||||
script.src = '/test__test.browser.ts.js';
|
||||
document.head.appendChild(script);
|
||||
return logStore;
|
||||
const error = console.error;
|
||||
console.error = (...args) => {
|
||||
args = args.map((argument) => {
|
||||
return typeof argument !== 'string' ? convertToText(argument) : argument;
|
||||
});
|
||||
logStore += `${args}\n`;
|
||||
error(...args);
|
||||
};
|
||||
const bundle = await (await fetch('/test__test.browser.ts.js')).text();
|
||||
try {
|
||||
// tslint:disable-next-line: no-eval
|
||||
eval(bundle);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
setTimeout(() => {
|
||||
console.log(globalThis.testdom);
|
||||
done.resolve();
|
||||
}, 5000);
|
||||
await done.promise;
|
||||
return logStore;
|
||||
}
|
||||
);
|
||||
await plugins.smartdelay.delayFor(1000);
|
||||
await this.smartbrowserInstance.stop();
|
||||
console.log(`${cs('=> ', 'blue')} Stopped ${cs(fileNameArg, 'orange')} chromium instance.`);
|
||||
|
Loading…
Reference in New Issue
Block a user