Skip to content

Commit

Permalink
define toggleColorTheme (TODO still have to handle "header")
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung committed Jul 5, 2024
1 parent 49dc5dc commit 02fbc96
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
39 changes: 20 additions & 19 deletions tests/js/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
setMobile,
setTablet,
click,
toggleColorTheme,
} from "./utils";

test.describe("top nav bar", () => {
Expand All @@ -32,11 +33,11 @@ test.describe("top nav bar", () => {
await page.goto("sphinx_guide/lists.html");
const pageToC = page.locator("div.content-icon-container");
await expect(pageToC).toHaveScreenshot();
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
await expect(pageToC).toHaveScreenshot();
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
await expect(pageToC).toHaveScreenshot();
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
await expect(pageToC).toHaveScreenshot();
});

Expand Down Expand Up @@ -71,7 +72,7 @@ test("right side bar is not broken by our page layout", async ({ page }) => {
test("right side bar is not broken by our page layout dark mode", async ({ page }) => {
// We intentionally use a short page to keep the screenshot shorter.
await page.goto("sphinx_guide/notebook.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const tocDrawer = page.locator(".toc-drawer");
await expect(tocDrawer).toHaveScreenshot();
});
Expand All @@ -87,7 +88,7 @@ test.describe("left side bar", () => {
test("renders correctly dark mode", async ({ page }) => {
// Go to a top-level page so that we can see how the expanded side bar looks.
await page.goto("apidoc/module.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const leftToC = page.locator(".sidebar-drawer");
await expect(leftToC).toHaveScreenshot();
});
Expand All @@ -101,7 +102,7 @@ test.describe("left side bar", () => {

test("translations are expandable dark mode", async ({ page }) => {
await page.goto("");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
await click(page, "div.qiskit-translations-container i");
const translations = page.locator("div.qiskit-translations-container");
await expect(translations).toHaveScreenshot();
Expand All @@ -118,7 +119,7 @@ test.describe("left side bar", () => {

test("previous releases are expandable dark mode", async ({ page }) => {
await page.goto("");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
await click(page, "div.qiskit-previous-releases-container i");
const previousReleases = page.locator(
"div.qiskit-previous-releases-container",
Expand All @@ -136,7 +137,7 @@ test.describe("api docs", () => {

test("module page dark mode", async ({ page }) => {
await page.goto("apidoc/module.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const content = page.locator("div.article-container");
await expect(content).toHaveScreenshot();
});
Expand All @@ -149,7 +150,7 @@ test.describe("api docs", () => {

test("class page dark mode", async ({ page }) => {
await page.goto("stubs/api_example.Electron.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const content = page.locator("div.article-container");
await expect(content).toHaveScreenshot();
});
Expand All @@ -162,7 +163,7 @@ test.describe("api docs", () => {

test("function page dark mode", async ({ page }) => {
await page.goto("stubs/api_example.my_function1.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const content = page.locator("div.article-container");
await expect(content).toHaveScreenshot();
});
Expand All @@ -175,7 +176,7 @@ test.describe("api docs", () => {

test("inline classes dark mode", async ({ page }) => {
await page.goto("apidoc/inline_classes.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const content = page.locator("div.article-container");
await expect(content).toHaveScreenshot();
});
Expand All @@ -189,7 +190,7 @@ test("tables align with qiskit", async ({ page }) => {

test("tables align with qiskit dark mode", async ({ page }) => {
await page.goto("sphinx_guide/tables.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const gridTablesSection = page.locator("section#grid-tables");
await expect(gridTablesSection).toHaveScreenshot();
});
Expand All @@ -202,7 +203,7 @@ test("tutorials do not have purple border", async ({ page }) => {

test("tutorials do not have purple border dark mode", async ({ page }) => {
await page.goto("sphinx_guide/notebook_gallery.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const tutorial = page.locator("div.nbsphinx-gallery");
await expect(tutorial).toHaveScreenshot();
});
Expand All @@ -215,7 +216,7 @@ test("admonitions use Carbon style", async ({ page }) => {

test("admonitions use Carbon style dark mode", async ({ page }) => {
await page.goto("sphinx_guide/paragraph.html#admonitions");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const admonitions = page.locator("section#admonitions");
await expect(admonitions).toHaveScreenshot();
});
Expand All @@ -228,7 +229,7 @@ test("deprecations look like warning", async ({ page }) => {

test("deprecations look like warning dark mode", async ({ page }) => {
await page.goto("sphinx_guide/paragraph.html#deprecation-note");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const deprecations = page.locator("section#deprecation-note");
await expect(deprecations).toHaveScreenshot();
});
Expand All @@ -242,7 +243,7 @@ test("Sphinx Design elements have no shadows", async ({ page }) => {

test("Sphinx Design elements have no shadows dark mode", async ({ page }) => {
await page.goto("sphinx_guide/panels.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
await page.locator(".sd-dropdown").first().click();
const pageContents = page.locator("section#panels");
await expect(pageContents).toHaveScreenshot();
Expand All @@ -258,7 +259,7 @@ test("Jupyter works with copybutton", async ({ page }) => {
test("Jupyter works with copybutton dark mode", async ({ page }) => {
// Regression test of https://github.com/Qiskit/qiskit_sphinx_theme/issues/306.
await page.goto("sphinx_guide/jupyter.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const pageContents = page.locator("section#jupyter");
await expect(pageContents).toHaveScreenshot();
});
Expand All @@ -280,7 +281,7 @@ test("custom directives", async ({ page }) => {

test("custom directives dark mode", async ({ page }) => {
await page.goto("sphinx_guide/custom_directives.html");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;

const cards = page.locator("section#qiskit-card");
await cards.hover();
Expand All @@ -302,7 +303,7 @@ test("inline table of contents have correct fonts", async ({ page }) => {

test("inline table of contents have correct fonts dark mode", async ({ page }) => {
await page.goto("");
await click(page, "div.theme-toggle-content button");
await toggleColorTheme(page);;
const contents = page.locator("section#example-docs");
await expect(contents).toHaveScreenshot();
});
6 changes: 6 additions & 0 deletions tests/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,15 @@ const click = async (page, selector) => {
await page.waitForTimeout(500);
};

const toggleColorTheme = async (page) => {
await click(page, "div.theme-toggle-content button");
// TODO handle theme-toggle-header
};

export {
setDesktop,
setMobile,
setTablet,
click,
toggleColorTheme,
};

0 comments on commit 02fbc96

Please sign in to comment.