gecko-dev/devtools/client/shadereditor/test/browser_se_programs-cache.js

42 строки
1.4 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests that program and shader actors are cached in the frontend.
*/
async function ifWebGLSupported() {
let { target, debuggee, panel } = await initShaderEditor(MULTIPLE_CONTEXTS_URL);
let { EVENTS, gFront, ShadersListView, ShadersEditorsView } = panel.panelWin;
reload(target);
let [[programActor]] = await promise.all([
getPrograms(gFront, 1),
once(panel.panelWin, EVENTS.SOURCES_SHOWN)
]);
let programItem = ShadersListView.selectedItem;
is(programItem.attachment.programActor, programActor,
"The correct program actor is cached for the selected item.");
is((await programActor.getVertexShader()),
(await programItem.attachment.vs),
"The cached vertex shader promise returns the correct actor.");
is((await programActor.getFragmentShader()),
(await programItem.attachment.fs),
"The cached fragment shader promise returns the correct actor.");
is((await (await programActor.getVertexShader()).getText()),
(await (await ShadersEditorsView._getEditor("vs")).getText()),
"The cached vertex shader promise returns the correct text.");
is((await (await programActor.getFragmentShader()).getText()),
(await (await ShadersEditorsView._getEditor("fs")).getText()),
"The cached fragment shader promise returns the correct text.");
await teardown(panel);
finish();
}