ruffle/web/packages/selfhosted/test/polyfill/iframes_provided/test.ts

48 lines
1.5 KiB
TypeScript

import { openTest } from "../../utils.js";
import { expect, use } from "chai";
import chaiHtml from "chai-html";
import fs from "fs";
use(chaiHtml);
describe("Flash inside iframe with provided ruffle", () => {
it("loads the test", async () => {
await openTest(browser, `polyfill/iframes_provided`);
});
it("polyfills inside an iframe", async () => {
await browser.switchToFrame(await browser.$("#test-frame"));
await browser.$("<ruffle-object />").waitForExist();
const actual = await browser.$("#test-container").getHTML(false);
const expected = fs.readFileSync(
`${import.meta.dirname}/expected.html`,
"utf8",
);
expect(actual).html.to.equal(expected);
});
it("polyfills even after a reload", async () => {
// Contaminate the old contents, to ensure we get a "fresh" state
await browser.execute(() => {
document.getElementById("test-container")?.remove();
});
// Then reload
await browser.switchToFrame(null);
await browser.$("#reload-link").click();
// And finally, check
await browser.switchToFrame(null);
await browser.switchToFrame(await browser.$("#test-frame"));
await browser.$("<ruffle-object />").waitForExist();
const actual = await browser.$("#test-container").getHTML(false);
const expected = fs.readFileSync(
`${import.meta.dirname}/expected.html`,
"utf8",
);
expect(actual).html.to.equal(expected);
});
});