2017-12-18 03:32:58 -05:00
|
|
|
const args = process.argv.slice(2);
|
|
|
|
|
|
|
|
if (args.length < 1 || args.length > 2) {
|
|
|
|
console.log("Expecting: node {smoke_test.js} {url}");
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = args[0];
|
|
|
|
|
|
|
|
console.log(`Starting Discourse Smoke Test for ${url}`);
|
|
|
|
|
|
|
|
const puppeteer = require('puppeteer');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
const browser = await puppeteer.launch({
|
2018-05-17 02:00:43 -04:00
|
|
|
// when debugging localy setting headless to "false" can be very helpful
|
2018-06-05 04:58:15 -04:00
|
|
|
headless: false,
|
2017-12-18 03:32:58 -05:00
|
|
|
args: ["--disable-local-storage"]
|
|
|
|
});
|
|
|
|
const page = await browser.newPage();
|
|
|
|
|
2018-05-27 22:58:36 -04:00
|
|
|
await page.setViewport({
|
2017-12-18 03:32:58 -05:00
|
|
|
width: 1366,
|
|
|
|
height: 768
|
2018-05-27 22:58:36 -04:00
|
|
|
});
|
2017-12-18 03:32:58 -05:00
|
|
|
|
2018-05-28 02:19:12 -04:00
|
|
|
const takeFailureScreenshot = function() {
|
2018-05-30 04:20:18 -04:00
|
|
|
const screenshotPath = `${process.env.SMOKE_TEST_SCREENSHOT_PATH || 'tmp/smoke-test-screenshots'}/smoke-test-${Date.now()}.png`;
|
2018-05-28 02:19:12 -04:00
|
|
|
console.log(`Screenshot of failure taken at ${screenshotPath}`);
|
|
|
|
return page.screenshot({ path: screenshotPath, fullPage: true });
|
|
|
|
};
|
|
|
|
|
2017-12-18 03:32:58 -05:00
|
|
|
const exec = (description, fn, assertion) => {
|
|
|
|
const start = +new Date();
|
|
|
|
|
2018-05-28 02:19:12 -04:00
|
|
|
return fn.call().then(async output => {
|
2017-12-18 03:32:58 -05:00
|
|
|
if (assertion) {
|
|
|
|
if (assertion.call(this, output)) {
|
|
|
|
console.log(`PASSED: ${description} - ${(+new Date()) - start}ms`);
|
|
|
|
} else {
|
|
|
|
console.log(`FAILED: ${description} - ${(+new Date()) - start}ms`);
|
2018-05-28 02:19:12 -04:00
|
|
|
await takeFailureScreenshot();
|
2017-12-18 03:32:58 -05:00
|
|
|
console.log("SMOKE TEST FAILED");
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.log(`PASSED: ${description} - ${(+new Date()) - start}ms`);
|
|
|
|
}
|
2018-05-28 02:19:12 -04:00
|
|
|
}).catch(async error => {
|
2017-12-18 03:32:58 -05:00
|
|
|
console.log(`ERROR (${description}): ${error.message} - ${(+new Date()) - start}ms`);
|
2018-05-28 02:19:12 -04:00
|
|
|
await takeFailureScreenshot();
|
2017-12-18 03:32:58 -05:00
|
|
|
console.log("SMOKE TEST FAILED");
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const assert = (description, fn, assertion) => {
|
|
|
|
return exec(description, fn, assertion);
|
|
|
|
};
|
|
|
|
|
2018-06-05 04:58:15 -04:00
|
|
|
page.on('console', msg => console.log(`PAGE LOG: ${msg.text()}`));
|
2017-12-18 03:32:58 -05:00
|
|
|
|
2018-05-17 02:00:43 -04:00
|
|
|
page.on('response', resp => {
|
2018-06-05 04:58:15 -04:00
|
|
|
if (resp.status() !== 200) {
|
|
|
|
console.log("FAILED HTTP REQUEST TO " + resp.url() + " Status is: " + resp.status());
|
2018-05-17 02:00:43 -04:00
|
|
|
}
|
|
|
|
return resp;
|
|
|
|
});
|
|
|
|
|
2018-01-03 01:24:06 -05:00
|
|
|
if (process.env.AUTH_USER && process.env.AUTH_PASSWORD) {
|
|
|
|
await exec("basic authentication", () => {
|
2018-01-04 08:30:04 -05:00
|
|
|
return page.setExtraHTTPHeaders({
|
|
|
|
'Authorization': `Basic ${new Buffer(`${process.env.AUTH_USER}:${process.env.AUTH_PASSWORD}`).toString('base64')}`
|
2018-01-03 01:24:06 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-20 21:32:14 -05:00
|
|
|
await exec("go to site", () => {
|
|
|
|
return page.goto(url);
|
|
|
|
});
|
2017-12-18 03:32:58 -05:00
|
|
|
|
|
|
|
await exec("expect a log in button in the header", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector("header .login-button", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("go to latest page", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.goto(path.join(url, 'latest'));
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("at least one topic shows up", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".topic-list tbody tr", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("go to categories page", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.goto(path.join(url, 'categories'));
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("can see categories on the page", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".category-list", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("navigate to 1st topic", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".main-link a.title:first-of-type");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("at least one post body", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".topic-post", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("click on the 1st user", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".topic-meta-data a:first-of-type");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("user has details", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector("#user-card .names", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!process.env.READONLY_TESTS) {
|
|
|
|
await exec("open login modal", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".login-button");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("login modal is open", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".login-modal", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("type in credentials & log in", () => {
|
|
|
|
let promise = page.type("#login-account-name", process.env.DISCOURSE_USERNAME || 'smoke_user');
|
|
|
|
|
|
|
|
promise = promise.then(() => {
|
|
|
|
return page.type("#login-account-password", process.env.DISCOURSE_PASSWORD || 'P4ssw0rd');
|
|
|
|
});
|
|
|
|
|
|
|
|
promise = promise.then(() => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".login-modal .btn-primary");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
});
|
|
|
|
|
|
|
|
await exec("is logged in", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".current-user", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("go home", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click("#site-logo, #site-text-logo");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("it shows a topic list", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".topic-list", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("we have a create topic button", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector("#create-topic", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("open composer", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click("#create-topic");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("the editor is visible", () => {
|
|
|
|
return page.waitForFunction(
|
2017-12-20 08:41:49 -05:00
|
|
|
"document.activeElement === document.getElementById('reply-title')"
|
2017-12-18 03:32:58 -05:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
await exec("compose new topic", () => {
|
|
|
|
const date = `(${(+new Date())})`;
|
|
|
|
const title = `This is a new topic ${date}`;
|
|
|
|
const post = `I can write a new topic inside the smoke test! ${date} \n\n`;
|
|
|
|
|
|
|
|
let promise = page.type("#reply-title", title);
|
|
|
|
|
|
|
|
promise = promise.then(() => {
|
|
|
|
return page.type("#reply-control .d-editor-input", post);
|
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
});
|
|
|
|
|
|
|
|
await exec("updates preview", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".d-editor-preview p", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("open upload modal", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".d-editor-button-bar .upload");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("upload modal is open", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
let promise = page.waitForSelector("#filename-input", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
|
|
|
|
promise.then(() => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".d-modal-cancel");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
});
|
|
|
|
|
|
|
|
await exec("submit the topic", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".submit-panel .create");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("topic is created", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector(".fancy-title", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("open the composer", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click(".post-controls:first-of-type .create");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("composer is open", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.waitForSelector("#reply-control .d-editor-input", { visible: true });
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await exec("compose reply", () => {
|
|
|
|
const post = `I can even write a reply inside the smoke test ;) (${(+new Date())})`;
|
|
|
|
return page.type("#reply-control .d-editor-input", post);
|
|
|
|
});
|
|
|
|
|
2018-06-05 04:58:15 -04:00
|
|
|
await exec("waiting for the preview", () => {
|
|
|
|
return page.waitForXPath("//div[contains(@class, 'd-editor-preview') and contains(.//p, 'I can even write a reply')]",
|
2017-12-20 08:41:49 -05:00
|
|
|
{ visible: true }
|
2017-12-18 03:32:58 -05:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
await exec("submit the topic", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
return page.click("#reply-control .create");
|
2017-12-18 03:32:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
await assert("reply is created", () => {
|
2017-12-20 08:41:49 -05:00
|
|
|
let promise = page.waitForSelector(".topic-post");
|
2017-12-18 03:32:58 -05:00
|
|
|
|
|
|
|
promise = promise.then(() => {
|
|
|
|
return page.evaluate(() => {
|
|
|
|
return document.querySelectorAll(".topic-post").length;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
}, output => {
|
|
|
|
return output === 2;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-22 20:29:22 -05:00
|
|
|
await exec("close browser", () => {
|
|
|
|
return browser.close();
|
|
|
|
});
|
2017-12-18 03:32:58 -05:00
|
|
|
|
|
|
|
console.log("ALL PASSED");
|
|
|
|
})();
|