Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add integration test for staging env w/ Puppeteer #843

Merged
merged 5 commits into from
Oct 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions helpers/integration-tests/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const { runStaticTests } = require('./staticUrls');
const { runScannerTest } = require('./scanner');

console.log('Integration tests are running...');

const runIntegrationTests = async () => {
let error = false;

for (const test of [runStaticTests, runScannerTest]) {
const errorFound = await test();

if (errorFound) {
error = true;
}
}

console.log(`${
error ?
'🚨 Integration tests completed with errors.' :
'🏁 Integration tests completed successfully!'
}`);
};

runIntegrationTests();
26 changes: 26 additions & 0 deletions helpers/integration-tests/scanner.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
const puppeteer = require('puppeteer');

const runScannerTest = async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();

await page.goto('https://sonarwhal-staging.azurewebsites.net/scanner/');
await page.type('#scanner-page-scan', 'https://leosl.github.io/');

const [response] = await Promise.all([
page.waitForNavigation(),
page.click('.button--red')
]);

await browser.close();

console.log(
`🧾 Scanner test executed with ${
response.status() === 200 ? '✅ success' : '❌ failure'
}! => Status: ${response.status()}`
);

return response.status() !== 200;
};

module.exports = { runScannerTest };
48 changes: 48 additions & 0 deletions helpers/integration-tests/staticUrls.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
const puppeteer = require('puppeteer');

const staticURLsToVerify = [
'https://sonarwhal-staging.azurewebsites.net/',
'https://sonarwhal-staging.azurewebsites.net/search/?q=bla',
'https://sonarwhal-staging.azurewebsites.net/about/changelog/1',
'https://sonarwhal-staging.azurewebsites.net/docs/user-guide/hints/'
];

const runPuppeteer = async (url) => {
const browser = await puppeteer.launch();

try {
const page = await browser.newPage();
const response = await page.goto(url);

console.log(
`${
response.status() === 200 ? '✅ Success' : '❌ Failure'
}! ${url} => Status: ${response.status()}`
);

await browser.close();

return response.status();
} catch (error) {
console.error('🚨 Something went wrong while executing Puppeteer: ', error);
await browser.close();

return 0;
}
};

const runStaticTests = async () => {
let errorFound = false;

for (const url of staticURLsToVerify) {
const resultStatus = await runPuppeteer(url);

if (resultStatus !== 200) {
errorFound = true;
}
}

return errorFound;
};

module.exports = { runStaticTests };
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"mktemp": "^1.0.0",
"normalize-path": "^3.0.0",
"npm-run-all": "^4.1.3",
"puppeteer": "1.20.0",
"remove-markdown": "^0.3.0",
"shelljs": "^0.8.3",
"stylelint": "^11.0.0",
Expand Down