summaryrefslogtreecommitdiffstats
path: root/theme/tests/test
diff options
context:
space:
mode:
authorgrowupboron <shankhoghosh123@gmail.com>2020-09-11 17:18:57 +0530
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-09-11 12:11:56 +0000
commit4aad369c9728061c97b3de792286e743ee884b09 (patch)
tree14bddddeab334e3fdbdcf29446a87aa11cf6cd97 /theme/tests/test
parent619a7e48085be1538c3b01eb93dcb9dc95bf0436 (diff)
Simplified doc-site generationjellyfish_9.99.4jellyfish/9.99.49.99.4
Updated theme to windmill Using Mkdocs static site generator Deployed on readthedocs Signed-off-by: growupboron <shankhoghosh123@gmail.com> Change-Id: If62eaaea1855c91b64f687900f54eba6bc1caee8 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25236 Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'theme/tests/test')
-rw-r--r--theme/tests/test/mocha.opts1
-rw-r--r--theme/tests/test/test_main.ts145
2 files changed, 146 insertions, 0 deletions
diff --git a/theme/tests/test/mocha.opts b/theme/tests/test/mocha.opts
new file mode 100644
index 0000000..23e391a
--- /dev/null
+++ b/theme/tests/test/mocha.opts
@@ -0,0 +1 @@
+--require ts-node/register
diff --git a/theme/tests/test/test_main.ts b/theme/tests/test/test_main.ts
new file mode 100644
index 0000000..cfa9b48
--- /dev/null
+++ b/theme/tests/test/test_main.ts
@@ -0,0 +1,145 @@
+import {ChildProcess, spawn} from 'child_process';
+import {assert, driver, IMochaServer, Key, useServer} from 'mocha-webdriver';
+import fetch from 'node-fetch';
+// tslint:disable:no-console
+
+class MkdocsServer implements IMochaServer {
+ public _proc?: ChildProcess;
+ private _exitPromise: Promise<number|string> = Promise.resolve("not-started");
+
+ public async start() {
+ this._proc = spawn(process.env.MKDOCS_BINARY || 'env/bin/mkdocs', ['serve', '-a', 'localhost:8000'],
+ {cwd: '..', stdio: 'inherit'});
+ this._exitPromise = exitPromise(this._proc);
+ await this.waitServerReady(20000);
+ }
+ public async stop() {
+ if (this._proc) {
+ this._proc.kill('SIGINT');
+ const res = await this._exitPromise;
+ if (res !== 0) { console.log("ERROR: could not run mkdocs: %s", res); }
+ }
+ }
+ /**
+ * Wait for the server to be up and responsitve, for up to `ms` milliseconds.
+ */
+ public async waitServerReady(ms: number): Promise<void> {
+ await driver.wait(() => Promise.race([
+ this.isServerReady(),
+ this._exitPromise.then(() => { throw new Error("Server exited while waiting for it"); }),
+ ]), ms);
+ }
+ public isServerReady(): Promise<boolean> {
+ return fetch(this.getHost()).then((r) => r.ok).catch(() => false);
+ }
+ public getHost() {
+ return "http://localhost:8000";
+ }
+}
+
+describe('mkdocs_windmill', () => {
+ const server = new MkdocsServer();
+ useServer(server);
+
+ before(async function() {
+ this.timeout(60000); // Set a longer default timeout.
+ await driver.get(server.getHost());
+ });
+
+ beforeEach(async () => {
+ await driver.switchTo().defaultContent();
+ });
+
+ it('should load the homepage', async () => {
+ // Menu has links for items, including the first one.
+ assert.equal(await driver.findContent('.wm-toc-pane .wm-toc-text', /Usage/).getTagName(), 'a');
+ assert.equal(await driver.findContent('.wm-toc-pane .wm-toc-text', /Cust/).getTagName(), 'a');
+
+ // In certain configurations, the first page isn't selected until clicked in
+ // (this could be fixed, but for now we just test that it works once clicked).
+ await driver.findContent('.wm-toc-pane .wm-article-link', /Cust/).click();
+ await driver.findContent('.wm-toc-pane .wm-article-link', /Usage/).click();
+ assert.equal(await driver.find('.wm-current').getText(), 'Usage');
+
+ // The page table-of-contents is expanded in the menu.
+ assert.includeMembers(await driver.findAll('.wm-page-toc .wm-article-link',
+ (el) => el.getText()), ['About', 'Installation']);
+
+ // Check that homepage is visible in iframe
+ await driver.switchTo().frame(driver.find('.wm-article'));
+ assert.equal(await driver.find('h1').getText(), 'Windmill theme');
+ });
+
+ it('should go through all pages with nav links', async function() {
+ await driver.switchTo().frame(driver.find('.wm-article'));
+ const next = () => driver.findContent('.wm-article-nav a', /Next/).click();
+ const prev = () => driver.findContent('.wm-article-nav a', /Previous/).click();
+ await next();
+ assert.equal(await driver.find('h1').getText(), 'Customization');
+ await next();
+ assert.equal(await driver.find('h1').getText(), 'Heading A');
+ await next();
+ assert.equal(await driver.find('h1').getText(), 'Heading A1');
+ await next();
+ assert.equal(await driver.find('h1').getText(), 'Heading A2');
+ await prev();
+ assert.equal(await driver.find('h1').getText(), 'Heading A1');
+ await prev();
+ assert.equal(await driver.find('h1').getText(), 'Heading A');
+ await prev();
+ assert.equal(await driver.find('h1').getText(), 'Customization');
+ await prev();
+ assert.equal(await driver.find('h1').getText(), 'Windmill theme');
+ });
+
+ it('should follow links in search dropdown', async function() {
+ await driver.find('#mkdocs-search-query').doSendKeys('extra');
+ await assert.includeMembers(await driver.findAll('#mkdocs-search-results .search-title',
+ (el) => el.getText()), ['Extra configuration options', 'Usage']);
+ await driver.findContent('#mkdocs-search-results .search-title', /Extra conf/).click();
+
+ await driver.switchTo().frame(driver.find('.wm-article'));
+ assert.match(await driver.find('h1').getText(), /Customization/);
+ await driver.switchTo().defaultContent();
+
+ await driver.navigate().back();
+ await driver.find('#mkdocs-search-query').doClick();
+ await driver.findContent('#mkdocs-search-results .search-title', /Usage/).click();
+
+ await driver.switchTo().frame(driver.find('.wm-article'));
+ assert.match(await driver.find('h1').getText(), /Windmill theme/);
+ await driver.switchTo().defaultContent();
+ });
+
+ it('should follow links in search results page', async function() {
+ await driver.find('#mkdocs-search-query').doClear().doSendKeys('extra', Key.ENTER);
+
+ // Switch to the iframe with results. The actual elements to interact with are similar to the
+ // case above, because the search code is actually reused.
+ await driver.switchTo().frame(driver.find('.wm-article'));
+
+ await assert.includeMembers(await driver.findAll('#mkdocs-search-results .search-title',
+ (el) => el.getText()), ['Extra configuration options', 'Usage']);
+ await driver.findContent('#mkdocs-search-results .search-title', /Extra conf/).click();
+
+ assert.match(await driver.find('h1').getText(), /Customization/);
+
+ await driver.switchTo().defaultContent();
+ await driver.navigate().back();
+
+ await driver.find('#mkdocs-search-query').doClick().doSendKeys(Key.ENTER);
+
+ await driver.switchTo().frame(driver.find('.wm-article'));
+ await driver.findContent('#mkdocs-search-results .search-title', /Usage/).click();
+
+ assert.match(await driver.find('h1').getText(), /Windmill theme/);
+ });
+});
+
+export function exitPromise(child: ChildProcess): Promise<number|string> {
+ return new Promise((resolve, reject) => {
+ // Called if process could not be spawned, or could not be killed(!), or sending a message failed.
+ child.on('error', reject);
+ child.on('exit', (code: number, signal: string) => resolve(signal || code));
+ });
+}