-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
import contextlib | ||
import dataclasses | ||
from json import dumps, loads | ||
from logging import getLogger | ||
from pathlib import Path | ||
|
||
import exceptiongroup | ||
from nbconvert_html5.pytest_axe import inject_axe, run_axe_test | ||
from test_nbconvert_html5 import exporter | ||
|
||
|
||
from pytest import fixture, mark, param, xfail | ||
|
||
from tests.test_smoke import CONFIGURATIONS, NOTEBOOKS, SKIPCI, get_target_html | ||
|
||
TPL_NOT_ACCESSIBLE = mark.xfail(reason="template is not accessible") | ||
HERE = Path(__file__).parent | ||
EXPORTS = HERE / "exports" | ||
HTML = EXPORTS / "html" | ||
LOGGER = getLogger(__name__) | ||
AUDIT = EXPORTS / "audit" | ||
|
||
# ignore mathjax at the moment. we might be able to turne mathjax to have better | ||
# accessibility. https://github.com/Iota-School/notebooks-for-all/issues/81 | ||
MATHJAX = "[id^=MathJax]" | ||
NEEDS_WORK = "state needs work" | ||
|
||
|
||
aa_config_notebooks = mark.parametrize( | ||
"config,notebook", | ||
[ | ||
param( | ||
(CONFIGURATIONS / (a := "a11y")).with_suffix(".py"), | ||
(NOTEBOOKS / (b := "lorenz-executed")).with_suffix(".ipynb"), | ||
id="-".join((b, a)), | ||
), | ||
param( | ||
(CONFIGURATIONS / (a := "default")).with_suffix(".py"), | ||
(NOTEBOOKS / (b := "lorenz-executed")).with_suffix(".ipynb"), | ||
marks=[SKIPCI, TPL_NOT_ACCESSIBLE], | ||
id="-".join((b, a)), | ||
), | ||
], | ||
) | ||
|
||
aaa_config_notebooks = mark.parametrize( | ||
"config,notebook", | ||
[ | ||
param( | ||
(CONFIGURATIONS / (a := "a11y")).with_suffix(".py"), | ||
(NOTEBOOKS / (b := "lorenz-executed")).with_suffix(".ipynb"), | ||
id="-".join( | ||
(b, a), | ||
), | ||
marks=[TPL_NOT_ACCESSIBLE], | ||
) | ||
], | ||
) | ||
|
||
|
||
axe_config_aaa = { | ||
"runOnly": [ | ||
"act", | ||
"best-practice", | ||
"experimental", | ||
"wcag21a", | ||
"wcag21aa", | ||
"wcag22aa", | ||
"wcag2aaa", | ||
], | ||
"allowedOrigins": ["<same_origin>"], | ||
} | ||
|
||
|
||
@aa_config_notebooks | ||
def test_axe_aa(axe, config, notebook): | ||
target = get_target_html(config, notebook) | ||
audit = AUDIT / target.with_suffix(".json").name | ||
axe(Path.as_uri(target)).dump(audit).raises() | ||
|
||
|
||
@aaa_config_notebooks | ||
def test_axe_aaa(axe, config, notebook): | ||
target = get_target_html(config, notebook) | ||
audit = AUDIT / target.with_suffix(".json").name | ||
axe(Path.as_uri(target), axe_config=axe_config_aaa).dump(audit).raises() | ||
|
||
|
||
config_notebooks_dialog = mark.parametrize( | ||
"config,notebook", | ||
[ | ||
param( | ||
(CONFIGURATIONS / (a := "a11y")).with_suffix(".py"), | ||
(NOTEBOOKS / (b := "lorenz-executed")).with_suffix(".ipynb"), | ||
id="-".join( | ||
(b, a), | ||
), | ||
) | ||
], | ||
) | ||
|
||
|
||
@fixture(scope="function") | ||
def axe_page(page): | ||
def go(url): | ||
page.goto(url) | ||
inject_axe(page) | ||
return page | ||
|
||
return go | ||
|
||
|
||
@config_notebooks_dialog | ||
@mark.parametrize( | ||
"dialog", | ||
[ | ||
param("[aria-controls=nb-settings]", marks=mark.xfail(reason=NEEDS_WORK)), | ||
"[aria-controls=nb-help]", | ||
"[aria-controls=nb-metadata]", | ||
"[aria-controls=nb-audit]", | ||
param("[aria-controls=nb-expanded-dialog]", marks=mark.xfail(reason=NEEDS_WORK)), | ||
param("[aria-controls=nb-visibility-dialog]", marks=mark.xfail(reason=NEEDS_WORK)), | ||
param("nada", marks=mark.xfail(reason="no selector")), | ||
], | ||
) | ||
def test_dialogs(axe_page, config, notebook, dialog): | ||
page = axe_page(get_target_html(config, notebook).absolute().as_uri()) | ||
page.click(dialog) | ||
run_axe_test(page).raises() |