1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
|
"""Generates Canvas tests from YAML file definitions.
See README.md for instructions on how to run this test generator and for how to
add or modify tests.
This code generatror was originally written by Philip Taylor for use at
http://philip.html5.org/tests/canvas/suite/tests/
It has been adapted for use with the Web Platform Test Suite suite at
https://github.com/web-platform-tests/wpt/
"""
from typing import Any, Callable, Container, DefaultDict, FrozenSet
from typing import List, Mapping, MutableMapping, Set, Tuple, Union
import re
import collections
import copy
import dataclasses
import enum
import importlib
import math
import os
import pathlib
import sys
import textwrap
import jinja2
try:
import cairocffi as cairo # type: ignore
except ImportError:
import cairo
try:
# Compatible and lots faster.
import syck as yaml # type: ignore
except ImportError:
import yaml
class Error(Exception):
"""Base class for all exceptions raised by this module"""
class InvalidTestDefinitionError(Error):
"""Raised on invalid test definition."""
class _CanvasType(str, enum.Enum):
HTML_CANVAS = 'HtmlCanvas'
OFFSCREEN_CANVAS = 'OffscreenCanvas'
WORKER = 'Worker'
class _TemplateType(str, enum.Enum):
REFERENCE = 'reference'
HTML_REFERENCE = 'html_reference'
CAIRO_REFERENCE = 'cairo_reference'
IMG_REFERENCE = 'img_reference'
TESTHARNESS = 'testharness'
_REFERENCE_TEMPLATES = (_TemplateType.REFERENCE,
_TemplateType.HTML_REFERENCE,
_TemplateType.CAIRO_REFERENCE,
_TemplateType.IMG_REFERENCE)
_TestParams = Mapping[str, Any]
_MutableTestParams = MutableMapping[str, Any]
# All parameters that test definitions can specify to control test generation.
# Some have defaults values, used if the test definition doesn't specify them.
_TEST_DEFINITION_PARAMS = {
# Base parameters:
# Test name, which ultimately is used as filename. File variant dimension
# names (i.e. the 'file_variant_names' property below) are appended to this
# to produce unique filenames.
'name': None,
# The implementation of the test body. This should be JavaScript code,
# drawing on the canvas via the provided `canvas` and `ctx` objects.
# `canvas` will be an `HTMLCanvasElement` instance for 'HtmlCanvas' test
# type, else it will be an `OffscreenCanvas` instance. `ctx` will be a '2d'
# rendering context.
'code': None,
# Whether this test variant is enabled. This can be used to generate sparse
# variant grids, by making this parameter resolve to `True` only for certain
# combinations of variant dimensions, e.g.:
# - enabled: {{ variant_names[1] in ['foo', 'bar'] }})
'enabled': 'true',
# Textual description for this test. This is used both as text in the
# generated HTML page, and as testharness.js test fixture description, for
# JavaScript tests (i.e. arguments to the `test()`, `async_test()` and
# `promise_test()` functions).
'desc': '',
# If specified, 'notes:' adds a `<p>` tag in the page showing this
# note.
'notes': '',
# Size of the canvas to use.
'size': (100, 50),
# Parameters controlling test runner execution:
# For reftests, specifies the tolerance in pixel difference allowed for the
# test to pass. By default, the test and reference must produce identical
# images. To allow a certain difference, specify as, for instance:
# fuzzy: maxDifference=0-2; totalPixels=0-1234
# In this example, up to 1234 pixels can differ by at most a difference of
# 2 on a any color channels.
'fuzzy': None,
# Used to control the test timeout, in case the test takes too long to
# complete. For instance: `timeout: long`.
'timeout': None,
# Parameters controlling what type of tests should be generated:
# List of the canvas types for which the test should be generated. Defaults
# to generating the test for all types. Options are:
# - 'HtmlCanvas': to test using an HTMLCanvasElement.
# - 'Offscreen': to test using an OffscreenCanvas on the main thread.
# - 'Worker': to test using an OffscreenCanvas in a worker.
'canvas_types': list(_CanvasType),
# Specifies the type of test fixture to generate.
#
# For testharness.js JavaScript tests, valid options are "sync", "async" or
# "promise", which produce standard `test()`, `async_test()` and
# `promise_test()` testharness fixtures respectively. For compatibility with
# old tests, leaving `test_type` unspecified produces a test using the
# legacy `_addTest` helper from canvas-tests.js. These are synchronous tests
# that can be made asynchronous by calling `deferTest()` and calling
# `t.done()` when the test completes. New tests should prefer specifying
# `test_type` explicitly.
#
# For reftests, generated tests are by default synchronous (if 'test_type'
# is not specified). Setting 'test_type' to "promise" makes it possible to
# use async/await syntax in the test body. In both cases, the test completes
# when the test body returns. Asynchronous APIs can be supported by wrapping
# them in promises awaiting on their completion.
'test_type': None,
# Causes the test generator to generate a reftest instead of a JavaScript
# test. Similarly to the `code:` parameter, 'reference:' should be set to
# JavaScript code drawing to a provided `canvas` object via a provided `ctx`
# 2D rendering context. The code generator will generate a reference HTML
# file that the test runner will use to validate the test result. Cannot be
# used in combination with 'html_reference:', 'cairo_reference:' or
# 'img_reference:'.
'reference': None,
# Similar to 'reference:', but the value is an HTML document instead of
# JavaScript drawing to a canvas. This is useful to use the DOM or an SVG
# drawing as a reference to compare the test result against. Cannot be used
# in combination with 'reference:', 'cairo_reference:' or 'img_reference:'.
'html_reference': None,
# Similar to 'reference:', but the value is Python code generating an image
# using the pycairo library. The Python code is provided with a `surface`
# and `cr` variable, instances of `cairo.ImageSurface` and `cairo.Context`
# respectively. Cannot be used in combination with 'reference:',
# 'html_reference:' or 'img_reference:'.
'cairo_reference': None,
# Similar to 'reference', but the value is the path to an image resource
# file to use as reference. When using 'cairo_reference:', the generated
# image path is assigned to 'img_reference:', for the template to use. A
# test could technically set 'img_reference:' directly, specifying a
# pre-generated image. This can be useful for plain and trivial images (e.g.
# '/images/green-100x50.png', but any non-trivial pre-generated image should
# be avoided because these can't easily be inspected and maintained if it
# needs to be revisited in the future. Cannot be used in combination with
# 'reference:', 'html_reference:' or 'cairo_reference:'.
'img_reference': None,
# Parameters adding HTML tags in the generated HTML files:
# Additional HTML attributes to pass to the '<canvas>' tag. e.g.:
# canvas: 'style="font-size: 144px"'
'canvas': None,
# If specified, the 'attribute' string is used as extra parameter to
# `canvas.getContext()`. For instance, using:
# attributes: '{alpha: False}'
# would create a context with:
# canvas.getContext('2d', {alpha: false})
'attributes': None,
# List of image filenames to add `<img>` tag for. The same name is used as
# id, which can be used to get the img element from the test body.
'images': [],
# List of image filenames to add SVG `<image>` tag for. The same name is
# used as id, which can be used to get the image element from the test body.
'svgimages': [],
# List of custom fonts to load, by adding a `@font-face` CSS statement.
# Fonts a specified by their base filename, not their full path. For
# instance `fonts: ['CanvasTest']` would have the test load the font
# '/fonts/CanvasTest.ttf'
'fonts': [],
# By default, the fonts added to the CSS via 'fonts:' are used in the test
# HTML page in a hidden `<span>`, to make sure the fonts get loaded. The
# `<span>` tags can be omitted by setting `font_unused_in_dom: True`,
# allowing the test to validate what happens if the fonts aren't used in the
# page.
'font_unused_in_dom': False,
# Python code generating an expected image using the pycairo library. This
# expected image is included in the HTML test result page for
# HTMLCanvasElement JavaScript tests, only for informational purposes and
# for allowing manual visual verifications. It is NOT used by the test
# runner to automatically check for test success. To automate test
# validation, use a reftest instead, using the `reference`,
# `html_reference`, `cairo_reference` or `img_reference` config.
#
# The Python script must start with the (non-Pythonic) magic line: size x y
# Where x and y are the size of the image to generate. The remaining is
# standard Python code, where the variables `surface` and `cr` are
# respectively providing the `cairo.ImageSurface` and `cairo.Context`
# objects to use for drawing the image.
#
# 'expected' accepts two special values: 'green' and 'clear'. These
# respectively resolve to the images '/images/green-100x50.png' and
# '/images/clear-100x50.png'. The test definitions can alternatively pass an
# image filename explicitly by using `expected_img`.
'expected': None,
# When using the 'expected' option above, the name of the file that gets
# generated is stored in 'expected_img', for the template to use. Test
# definitions can alternatively specify a value for 'expected_img' directly,
# without using 'expected', by passing it a filename to an image resource,
# e.g. '/images/green-100x50.png'.
'expected_img': None,
# Test variants:
# List of dictionaries, defining the dimensions of a test variant grid. Each
# dictionary defines a variant dimension, with the dictionary keys
# corresponding to different variant names and the values corresponding to
# the parameters this variant should use.
#
# If only a single dictionary is provided, a different test will be
# generated for each entries of this dictionary. For instance, the following
# config will generate 2 tests:
# - name: 2d.example
# code: ctx.fillStyle = '{{ color }}';
# variants:
# - red: {color: '#F00'}
# blue: {color: '#00F'}
#
# Will generate:
# 1) '2d.example.red', with the code: `ctx.fillStyle = '#F00'`
# 2) '2d.example.blue', with the code: `ctx.fillStyle = '#00F'`
#
# If more than one dictionaries are provided, each dictionary corresponds to
# a dimension in a multi-dimensional variant grid. For instance, the
# following config will generate 4 tests (using `variant_names[0]` to avoid
# duplicating the same string in the variant name and parameter):
# - name: 2d.grid
# code: ctx.{{ variant_names[0] }} = '{{ color }}';
# variants:
# - fillStyle:
# shadowColor:
# - red: {color: '#F00'}
# blue: {color: '#00F'}
#
# Will generate:
# 1) '2d.grid.fillStyle.red', code: `ctx.fillStyle = '#F00';`
# 2) '2d.grid.fillStyle.blue', code: `ctx.fillStyle = '#00F';`
# 3) '2d.grid.shadowColor.red', code: `ctx.shadowColor = '#F00';`
# 4) '2d.grid.shadowColor.blue', code: `ctx.shadowColor = '#00F';`
#
# The parameters of a variant (e.g. the 'color' parameter in the example
# above) get merged over the base test parameter. For instance, a variant
# could have the property 'code:', which overrides the 'code:' property in
# the base test definition, if defined there:
# - name: 2d.parameter-override
# code: // Base code implementation.
# variants:
# - variant1:
# code: // Overrides base code implementation.
'variants': None,
# By default, each variant is generated to a different file. By using
# 'variants_layout:', variants can be generated as multiple tests in the
# same test file. If specified, 'variants_layout:' must be a list the same
# length as the 'variants:' list, that is, as long as there are variant
# dimensions. Each item in the `variants_layout` list indicate how that
# particular variant dimension should be expanded. Possible values are:
#
# - multi_files
# This the default behavior: the variants along this dimension get
# generated to different files.
#
# - single_file
# The variants in this dimension get rendered to the same file.
#
# If multiple dimensions are marked as 'single_file', these variants get
# laid-out in a grid whose width defaults to the number of variants in the
# first 'single_file' dimension (the grid width can be customized using
# 'grid_width:'). For instance:
#
# - name: grid-example
# variants:
# - A1:
# A2:
# - B1:
# B2:
# - C1:
# C2:
# - D1:
# D2:
# - E1:
# E2:
# variants_layout:
# - single_file
# - multi_files
# - single_file
# - multi_files
# - single_file
#
# Because this test has 2 'multi_files' dimensions with two variants each, 4
# files would be generated:
# - grid-example.B1.D1
# - grid-example.B1.D2
# - grid-example.B2.D1
# - grid-example.B2.D2
#
# Then, the 3 'single_file' dimensions would produce 2x2x2 = 8 tests in each
# of these files. For JavaScript tests, each of these tests would be
# generated in sequence, each with their own `test()`, `async_test()` or
# `promise_test()` fixture. Reftests on the other hand would produce a 2x2x2
# grid, as follows:
# A1.C1.E1 A2.C1.E1
# A1.C2.E1 A2.C2.E1
# A1.C1.E2 A2.C1.E2
# A1.C2.E2 A2.C2.E2
'variants_layout': None,
# The width of the grid generated by the 'single_file' variant_layout. If
# not specified, the size of the first 'single_file' variant dimension
# is used as grid width.
'grid_width': None,
# If `True`, the file variant dimension names (i.e. the `file_variant_names`
# property below) get appended to the test name. Setting this to `False` is
# useful if a custom name format is desired, for instance:
# name: my_test.{{ file_variant_name }}.tentative
'append_variants_to_name': True,
}
# Parameters automatically populated by the test generator. Test definitions
# cannot manually specify a value for these, but they can be used in parameter
# values using Jinja templating.
_GENERATED_PARAMS = {
# Set to either 'HtmlCanvas', 'Offscreen' or 'Worker' when rendering
# templates for the corresponding canvas type. Test definitions can use this
# parameter in Jinja `if` conditions to generate different code for
# different canvas types.
'canvas_type': None,
# List holding the file variant dimension names. These get appended to
# 'name' to form the test file name.
'file_variant_names': [],
# List of this variant grid dimension names. This uniquely identifies a
# single variant in a variant grid file.
'grid_variant_names': [],
# List of this variant dimension names, including both file and grid
# dimensions.
'variant_names': [],
# Same as `file_variant_names`, but concatenated into a single string. This
# is a useful to easily identify a variant file.
'file_variant_name': '',
# Same as `grid_variant_names`, but concatenated into a single string. This
# is a useful to easily identify a variant in a grid.
'grid_variant_name': '',
# Same as `variant_names`, but concatenated into a single string. This is a
# useful shorthand for tests having a single variant dimension.
'variant_name': '',
# For reftests, this is the reference file name that the test file links to.
'reference_file_link': None,
# Numerical ID uniquely identifying this variant in a variant grid. This can
# be used in `id` HTML attributes to allow each variant in a variant grid
# to have uniquely identifiable HTML tags. For instance, an `html_reference`
# with SVG code could give each variant a uniquely identifiable `<filter>`
# tags by doing:
# <filter id="my_filter{{ id }}">
'id': 0,
# The file name of the test file being generated.
'file_name': None,
# Set to one of the enum values in `_TemplateType`, identifying the template
# being used to generate the test.
'template_type': None,
}
def _double_quote_escape(string: str) -> str:
return string.replace('\\', '\\\\').replace('"', '\\"')
def _escape_js(string: str) -> str:
string = _double_quote_escape(string)
# Kind of an ugly hack, for nicer failure-message output.
string = re.sub(r'\[(\w+)\]', r'[\\""+(\1)+"\\"]', string)
return string
def _expand_nonfinite(method: str, argstr: str, tail: str) -> str:
"""
>>> print _expand_nonfinite('f', '<0 a>, <0 b>', ';')
f(a, 0);
f(0, b);
f(a, b);
>>> print _expand_nonfinite('f', '<0 a>, <0 b c>, <0 d>', ';')
f(a, 0, 0);
f(0, b, 0);
f(0, c, 0);
f(0, 0, d);
f(a, b, 0);
f(a, b, d);
f(a, 0, d);
f(0, b, d);
"""
# argstr is "<valid-1 invalid1-1 invalid2-1 ...>, ..." (where usually
# 'invalid' is Infinity/-Infinity/NaN).
args = []
for arg in argstr.split(', '):
match = re.match('<(.*)>', arg)
if match is None:
raise InvalidTestDefinitionError(
f'Expected arg to match format "<(.*)>", but was: {arg}')
a = match.group(1)
args.append(a.split(' '))
calls = []
# Start with the valid argument list.
call = [args[j][0] for j in range(len(args))]
# For each argument alone, try setting it to all its invalid values:
for i, arg in enumerate(args):
for a in arg[1:]:
c2 = call[:]
c2[i] = a
calls.append(c2)
# For all combinations of >= 2 arguments, try setting them to their
# first invalid values. (Don't do all invalid values, because the
# number of combinations explodes.)
def f(c: List[str], start: int, depth: int) -> None:
for i in range(start, len(args)):
if len(args[i]) > 1:
a = args[i][1]
c2 = c[:]
c2[i] = a
if depth > 0:
calls.append(c2)
f(c2, i + 1, depth + 1)
f(call, 0, 0)
str_calls = (', '.join(c) for c in calls)
return '\n'.join(f'{method}({params}){tail}' for params in str_calls)
def _get_test_sub_dir(name: str, name_to_sub_dir: Mapping[str, str]) -> str:
for prefix in sorted(name_to_sub_dir.keys(), key=len, reverse=True):
if name.startswith(prefix):
return name_to_sub_dir[prefix]
raise InvalidTestDefinitionError(
f'Test "{name}" has no defined target directory mapping')
def _remove_extra_newlines(text: str) -> str:
"""Remove newlines if a backslash is found at end of line."""
# Lines ending with '\' gets their newline character removed.
text = re.sub(r'\\\n', '', text, flags=re.MULTILINE | re.DOTALL)
# Lines ending with '\-' gets their newline and any leading white spaces on
# the following line removed.
text = re.sub(r'\\-\n\s*', '', text, flags=re.MULTILINE | re.DOTALL)
return text
def _expand_test_code(code: str) -> str:
code = _remove_extra_newlines(code)
code = re.sub(r' @moz-todo', '', code)
code = re.sub(r'@moz-UniversalBrowserRead;', '', code)
code = re.sub(r'@nonfinite ([^(]+)\(([^)]+)\)(.*)', lambda m:
_expand_nonfinite(m.group(1), m.group(2), m.group(3)),
code) # Must come before '@assert throws'.
code = re.sub(r'@assert pixel (\d+,\d+) == (\d+,\d+,\d+,\d+);',
r'_assertPixel(canvas, \1, \2);', code)
code = re.sub(r'@assert pixel (\d+,\d+) ==~ (\d+,\d+,\d+,\d+);',
r'_assertPixelApprox(canvas, \1, \2, 2);', code)
code = re.sub(r'@assert pixel (\d+,\d+) ==~ (\d+,\d+,\d+,\d+) \+/- (\d+);',
r'_assertPixelApprox(canvas, \1, \2, \3);', code)
code = re.sub(r'@assert throws (\S+_ERR) (.*?);$',
r'assert_throws_dom("\1", function() { \2; });', code,
flags=re.MULTILINE | re.DOTALL)
code = re.sub(r'@assert throws (\S+Error) (.*?);$',
r'assert_throws_js(\1, function() { \2; });', code,
flags=re.MULTILINE | re.DOTALL)
code = re.sub(
r'@assert (.*) === (.*);', lambda m:
(f'_assertSame({m.group(1)}, {m.group(2)}, '
f'"{_escape_js(m.group(1))}", "{_escape_js(m.group(2))}");'), code)
code = re.sub(
r'@assert (.*) !== (.*);', lambda m:
(f'_assertDifferent({m.group(1)}, {m.group(2)}, '
f'"{_escape_js(m.group(1))}", "{_escape_js(m.group(2))}");'), code)
code = re.sub(
r'@assert (.*) =~ (.*);',
lambda m: f'assert_regexp_match({m.group(1)}, {m.group(2)});', code)
code = re.sub(
r'@assert (.*);',
lambda m: f'_assert({m.group(1)}, "{_escape_js(m.group(1))}");', code)
assert '@' not in code
return code
class MutableDictLoader(jinja2.BaseLoader):
"""Loads Jinja templates from a `dict` that can be updated.
This is essentially a version of `jinja2.DictLoader` whose content can be
changed. `jinja2.DictLoader` accepts a `dict` at construction time and that
`dict` cannot be changed. The templates served by `MutableDictLoader` on the
other hand can be updated by calling `set_templates(new_templates)`. This is
needed because we reuse the environment to render different tests and
variants, each of which will have different templates.
"""
def __init__(self) -> None:
self._templates = dict() # type: Mapping[str, Any]
def set_templates(self, new_templates: Mapping[str, Any]) -> None:
"""Changes the dict from which templates are loaded."""
self._templates = new_templates
def get_source(
self, environment: jinja2.Environment, template: str
) -> Tuple[str, str, Callable[[], bool]]:
"""Loads a template from the current template dict."""
del environment # Unused.
source = self._templates.get(template)
if source is None:
raise jinja2.TemplateNotFound(template)
if not isinstance(source, str):
raise InvalidTestDefinitionError(
f'Param "{template}" must be an str to be usable as Jinja '
'template.')
return source, template, lambda: source == self._templates.get(template)
class TemplateLoaderActivator:
"""Helper class used to set a given params dict in a MutableDictLoader.
Jinja requires custom loaders to be registered in the environment and thus,
we can't dynamically change them. We would need this to allow different test
variants to have different templates. Using a `TemplateLoaderActivator`,
the code can "activate" the templates for a given variant before rendering
strings for that variant. For instance:
loader = MutableDictLoader()
jinja_env = jinja2.Environment(loader=[loader])
templates1 = {'macros': '{% macro foo() %}foo{% endmacro %}'}
activator1 = TemplateLoaderActivator(loader, templates1)
templates2 = {'macros': '{% macro foo() %}bar{% endmacro %}'}
activator2 = TemplateLoaderActivator(loader, templates2)
main_template = '''
{% import 'macros' as t %}
{{ t.foo() }}
'''
# Render `main_template`, loading 'macros' from `templates1.
activator1.activate()
jinja_env.from_string(main_template).render(params1))
# Render `main_template`, loading 'macros' from `templates2.
activator2.activate()
jinja_env.from_string(main_template).render(params2))
"""
def __init__(self, loader: MutableDictLoader, params: _TestParams) -> None:
self._loader = loader
self._params = params
def activate(self):
self._loader.set_templates(self._params)
class _LazyRenderedStr(collections.UserString):
"""A custom str type that renders it's content with Jinja when accessed.
This is an str-like type, storing a Jinja template, but returning the
rendered version of that template when the string is accessed. The rendered
result is cached and returned on subsequent accesses.
This allows template parameters to be themselves templates. Template
parameters can then refer to each other and they'll be rendered in the right
order, in reverse order of access.
For instance:
params = {}
make_lazy = lambda value: _LazyRenderedStr(
jinja_env, loader_activator, params, value)
params.update({
'expected_value': make_lazy('rgba({{ color | join(", ") }})'),
'color': [0, 255, 0, make_lazy('{{ alpha }}')],
'alpha': 0.5,
})
main_template = 'assert value == "{{ expected_value }}"'
result = jinja_env.from_string(main_template).render(params)
In this example, upon rendering `main_template`, Jinja will first read
`expected_value`, which reads `color`, which reads `alpha`. These will be
rendered in reverse order, with `color` resolving to `[0, 255, 0, '0.5']`,
`expected_value` resolving to 'rgba(0, 255, 0, 0.5)' and the final render
resolving to: 'assert value == "rgba(0, 255, 0, 0.5)"'
"""
def __init__(self, jinja_env: jinja2.Environment,
loader_activator: TemplateLoaderActivator,
params: _TestParams, value: str):
# Don't call `super().__init__`, because we want to override `self.data`
# to be a property instead of a member variable.
# pylint: disable=super-init-not-called
self._jinja_env = jinja_env
self._loader_activator = loader_activator
self._params = params
self._value = value
self._rendered = None
@property
def data(self):
"""Property returning the content of the `UserString`.
This `_LazyRenderedStr` will be rendered on the first access. The
rendered result is cached and returned directly on subsequent
accesses."""
if self._rendered is None:
self._loader_activator.activate()
self._rendered = (
self._jinja_env.from_string(self._value).render(self._params))
return self._rendered
@property
def __class__(self):
"""Makes `UserString` return any newly created strings as `str` objects.
`UserString` functions returning a new string (e.g. `strip()`,
`lower()`, etc.) normally return a string of the same type as the input
`UserString`. It does do by using `__class__` to know the actual user
string type. In our case, the result of these operations will always
return a plain `str`, since any templating will have been rendered when
reading the input string via `self.data`."""
return str
def _make_lazy_rendered(jinja_env: jinja2.Environment,
loader_activator: TemplateLoaderActivator,
params: _TestParams,
value: Any) -> Any:
"""Recursively converts `value` to a _LazyRenderedStr.
If `value` is a data structure, this function recurses into that structure
and converts leaf objects. Any `str` found containing Jinja tags are
converted to _LazyRenderedStr.
"""
if isinstance(value, str) and ('{{' in value or '{%' in value):
return _LazyRenderedStr(jinja_env, loader_activator, params, value)
if isinstance(value, list):
return [_make_lazy_rendered(jinja_env, loader_activator, params, v)
for v in value]
if isinstance(value, tuple):
return tuple(_make_lazy_rendered(jinja_env, loader_activator, params, v)
for v in value)
if isinstance(value, dict):
return {k: _make_lazy_rendered(jinja_env, loader_activator, params, v)
for k, v in value.items()}
return value
def _ensure_rendered(value: Any) -> Any:
"""Recursively makes sure that all _LazyRenderedStr in `value` are rendered.
If `value` is a data structure, this function recurses into that structure
and renders any _LazyRenderedStr found."""
if isinstance(value, _LazyRenderedStr):
return str(value)
if isinstance(value, list):
return [_ensure_rendered(v) for v in value]
if isinstance(value, tuple):
return tuple(_ensure_rendered(v) for v in value)
if isinstance(value, dict):
return {k: _ensure_rendered(v) for k, v in value.items()}
return value
@dataclasses.dataclass
class _OutputPaths:
element: pathlib.Path
offscreen: pathlib.Path
def sub_path(self, sub_dir: str):
"""Create a new _OutputPaths that is a subpath of this _OutputPath."""
return _OutputPaths(
element=self.element / _ensure_rendered(sub_dir),
offscreen=self.offscreen / _ensure_rendered(sub_dir))
def path_for_canvas_type(self, canvas_type: _CanvasType) -> pathlib.Path:
return (self.element if canvas_type == _CanvasType.HTML_CANVAS
else self.offscreen)
def mkdir(self) -> None:
"""Creates element and offscreen directories, if they don't exist."""
self.element.mkdir(parents=True, exist_ok=True)
self.offscreen.mkdir(parents=True, exist_ok=True)
def _check_reserved_params(test: _TestParams):
for param in _GENERATED_PARAMS:
if test.get(param) is not None:
raise InvalidTestDefinitionError(
f'Parameter "{param}:" is reserved and cannot be manually '
'specified in test definitions.')
def _validate_test(test: _TestParams):
for param in ['name', 'code']:
if test.get(param) is None:
raise InvalidTestDefinitionError(
f'Test parameter "{param}" must be specified.')
if test.get('expected', '') == 'green' and re.search(
r'@assert pixel .* 0,0,0,0;', test['code']):
print(f'Probable incorrect pixel test in {test["name"]}')
if 'size' in test and (not isinstance(test['size'], tuple)
or len(test['size']) != 2):
raise InvalidTestDefinitionError(
f'Invalid canvas size "{test["size"]}" in test {test["name"]}. '
'Expected an array with two numbers.')
if test['template_type'] == _TemplateType.TESTHARNESS:
valid_test_types = {'sync', 'async', 'promise'}
else:
valid_test_types = {'promise'}
test_type = test.get('test_type')
if test_type is not None and test_type not in valid_test_types:
raise InvalidTestDefinitionError(
f'Invalid test_type: {test_type}. '
f'Valid values are: {valid_test_types}.')
def _render(jinja_env: jinja2.Environment,
template_name: str,
params: _TestParams, output_file_name: str):
template = jinja_env.get_template(template_name)
file_content = template.render(params)
pathlib.Path(output_file_name).write_text(file_content, 'utf-8')
def _write_cairo_images(pycairo_code: str, output_file: pathlib.Path) -> None:
"""Creates a png from pycairo code and write it to `output_file`."""
full_code = (f'{pycairo_code}\n'
f'surface.write_to_png("{output_file}")\n')
eval(compile(full_code, '<string>', 'exec'), {
'cairo': cairo,
'math': math,
})
class _Variant():
def __init__(self, params: _MutableTestParams) -> None:
# Raw parameters, as specified in YAML, defining this test variant.
self._params = params # type: _MutableTestParams
# Parameters rendered for each enabled canvas types.
self._canvas_type_params = {
} # type: MutableMapping[_CanvasType, _MutableTestParams]
@property
def params(self) -> _MutableTestParams:
"""Returns this variant's raw param dict, as it's defined in YAML."""
return self._params
@property
def canvas_type_params(self) -> MutableMapping[_CanvasType,
_MutableTestParams]:
"""Returns this variant's param dict for different canvas types."""
return self._canvas_type_params
@staticmethod
def create_with_defaults(test: _TestParams) -> '_Variant':
"""Create a _Variant from the specified params.
Default values are added for certain parameters, if missing."""
# Pick up all default values from the parameter definition constants,
# but drop all `None` values as they are only there as placeholders, to
# allow all parameters to be listed for documentation purposes.
params = {k: v
for defaults in (_TEST_DEFINITION_PARAMS, _GENERATED_PARAMS)
for k, v in defaults.items()
if v is not None}
params.update(test)
if 'variants' in params:
del params['variants']
return _Variant(params)
def merge_params(self, params: _TestParams) -> '_Variant':
"""Returns a new `_Variant` that merges `self.params` and `params`."""
new_params = copy.deepcopy(self._params)
new_params.update(params)
return _Variant(new_params)
def _add_variant_name(self, name: str) -> None:
self._params['variant_name'] += (
('.' if self.params['variant_name'] else '') + name)
self._params['variant_names'] += [name]
def with_grid_variant_name(self, name: str) -> '_Variant':
"""Addend a variant name to include in the grid element label."""
self._add_variant_name(name)
self._params['grid_variant_name'] += (
('.' if self.params['grid_variant_name'] else '') + name)
self._params['grid_variant_names'] += [name]
return self
def with_file_variant_name(self, name: str) -> '_Variant':
"""Addend a variant name to include in the generated file name."""
self._add_variant_name(name)
self._params['file_variant_name'] += (
('.' if self.params['file_variant_name'] else '') + name)
self._params['file_variant_names'] += [name]
if self.params.get('append_variants_to_name', True):
self._params['name'] += '.' + name
return self
def _get_file_name(self) -> str:
file_name = self.params['name']
if 'manual' in self.params:
file_name += '-manual'
return file_name
def _get_canvas_types(self) -> FrozenSet[_CanvasType]:
canvas_types = self.params.get('canvas_types', _CanvasType)
invalid_types = {
type
for type in canvas_types if type not in list(_CanvasType)
}
if invalid_types:
raise InvalidTestDefinitionError(
f'Invalid canvas_types: {list(invalid_types)}. '
f'Accepted values are: {[t.value for t in _CanvasType]}')
return frozenset(_CanvasType(t) for t in canvas_types)
def _get_template_type(self) -> _TemplateType:
reference_types = sum(t in self.params for t in _REFERENCE_TEMPLATES)
if reference_types > 1:
raise InvalidTestDefinitionError(
f'Test {self.params["name"]} is invalid, only one of '
f'{[t.value for t in _REFERENCE_TEMPLATES]} can be specified '
'at the same time.')
for template_type in _REFERENCE_TEMPLATES:
if template_type.value in self.params:
return template_type
return _TemplateType.TESTHARNESS
def finalize_params(self, jinja_env: jinja2.Environment,
variant_id: int,
params_template_loader: MutableDictLoader) -> None:
"""Finalize this variant by adding computed param fields."""
self._params['id'] = variant_id
self._params['file_name'] = self._get_file_name()
self._params['canvas_types'] = self._get_canvas_types()
self._params['template_type'] = self._get_template_type()
if isinstance(self._params['size'], list):
self._params['size'] = tuple(self._params['size'])
loader_activator = TemplateLoaderActivator(params_template_loader,
self._params)
for canvas_type in self.params['canvas_types']:
params = {'canvas_type': canvas_type}
params.update(
{k: _make_lazy_rendered(jinja_env, loader_activator, params, v)
for k, v in self._params.items()})
self._canvas_type_params[canvas_type] = params
for name in ('code', 'reference', 'html_reference',
'cairo_reference'):
param = params.get(name)
if param is not None:
params[name] = _expand_test_code(_ensure_rendered(param))
_validate_test(self._params)
def generate_expected_image(self, output_dirs: _OutputPaths) -> None:
"""Creates an expected image using Cairo and save filename in params."""
# Expected images are only needed for HTML canvas tests.
params = self._canvas_type_params.get(_CanvasType.HTML_CANVAS)
if not params:
return
expected = _ensure_rendered(params['expected'])
if expected == 'green':
params['expected_img'] = '/images/green-100x50.png'
return
if expected == 'clear':
params['expected_img'] = '/images/clear-100x50.png'
return
expected = re.sub(
r'^size (\d+) (\d+)',
r'surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, \1, \2)'
r'\ncr = cairo.Context(surface)', expected)
img_filename = f'{params["name"]}.png'
_write_cairo_images(expected, output_dirs.element / img_filename)
params['expected_img'] = img_filename
class _VariantGrid:
def __init__(self, variants: List[_Variant], grid_width: int) -> None:
self._variants = variants
self._grid_width = grid_width
# Parameters rendered for each enabled canvas types.
self._canvas_type_params = {
} # type: Mapping[_CanvasType, _MutableTestParams]
self._enabled = None
self._file_name = None
self._canvas_types = None
self._template_type = None
@property
def variants(self) -> List[_Variant]:
"""Read only getter for the list of variant in this grid."""
return self._variants
@property
def enabled(self) -> bool:
"""File name to which this grid will be written."""
if self._enabled is None:
enabled_str = self._unique_param(_CanvasType, 'enabled')
self._enabled = (enabled_str.strip().lower() == 'true')
return self._enabled
@property
def file_name(self) -> str:
"""File name to which this grid will be written."""
if self._file_name is None:
self._file_name = self._unique_param(_CanvasType, 'file_name')
return self._file_name
@property
def canvas_types(self) -> FrozenSet[_CanvasType]:
"""Returns the set of all _CanvasType used by this grid's variants."""
if self._canvas_types is None:
self._canvas_types = self._param_set(_CanvasType, 'canvas_types')
return self._canvas_types
@property
def template_type(self) -> _TemplateType:
"""Returns the type of Jinja template needed to render this grid."""
if self._template_type is None:
self._template_type = self._unique_param(_CanvasType,
'template_type')
return self._template_type
def finalize(self, jinja_env: jinja2.Environment,
params_template_loader: MutableDictLoader):
"""Finalize this grid's variants, adding computed params fields."""
for variant_id, variant in enumerate(self.variants):
variant.finalize_params(jinja_env, variant_id,
params_template_loader)
if len(self.variants) == 1:
self._canvas_type_params = self.variants[0].canvas_type_params
else:
self._canvas_type_params = self._get_grid_params()
def add_dimension(self, variants: Mapping[str,
_TestParams]) -> '_VariantGrid':
"""Adds a variant dimension to this variant grid.
If the grid currently has N variants, adding a dimension with M variants
results in a grid containing N*M variants. Of course, we can't display
more than 2 dimensions on a 2D screen, so adding dimensions beyond 2
repeats all previous dimensions down vertically, with the grid width
set to the number of variants of the first dimension (unless overridden
by setting `grid_width`). For instance, a 3D variant space with
dimensions 3 x 2 x 2 will result in this layout:
000 100 200
010 110 210
001 101 201
011 111 211
"""
new_variants = [
old_variant.merge_params(params or {}).with_grid_variant_name(name)
for name, params in variants.items()
for old_variant in self.variants
]
# The first dimension dictates the grid-width, unless it was specified
# beforehand via the test params.
new_grid_width = (self._grid_width
if self._grid_width > 1 else len(variants))
return _VariantGrid(variants=new_variants, grid_width=new_grid_width)
def merge_params(self, name: str, params: _TestParams) -> '_VariantGrid':
"""Merges the specified `params` into every variant of this grid."""
return _VariantGrid(variants=[
variant.merge_params(params).with_file_variant_name(name)
for variant in self.variants
],
grid_width=self._grid_width)
def _variants_for_canvas_type(
self, canvas_type: _CanvasType) -> List[_TestParams]:
"""Returns the variants of this grid enabled for `canvas_type`."""
return [
v.canvas_type_params[canvas_type]
for v in self.variants
if canvas_type in v.canvas_type_params
]
def _unique_param(
self, canvas_types: Container[_CanvasType], name: str) -> Any:
"""Returns the value of the `name` param for this grid.
All the variants for all canvas types in `canvas_types` of this grid
must agree on the same value for this parameter, or else an exception is
thrown."""
values = {_ensure_rendered(params.get(name))
for variant in self.variants
for type, params in variant.canvas_type_params.items()
if type in canvas_types}
if len(values) != 1:
raise InvalidTestDefinitionError(
'All variants in a variant grid must use the same value '
f'for property "{name}". Got these values: {values}. '
'Consider specifying the property outside of grid '
'variants dimensions (in the base test definition or in a '
'file variant dimension)')
return values.pop()
def _param_set(self, canvas_types: Container[_CanvasType], name: str):
"""Returns the set of all values this grid has for the `name` param.
The `name` parameter of each variant is expected to be a sequence. These
are all accumulated in a set and returned. The values are accumulated
across all canvas types in `canvas_types`."""
return frozenset(sum([list(_ensure_rendered(params.get(name, [])))
for v in self.variants
for type, params in v.canvas_type_params.items()
if type in canvas_types],
[]))
def _get_grid_params(self) -> Mapping[_CanvasType, _MutableTestParams]:
"""Returns the params dict needed to render this grid with Jinja."""
grid_params = {}
for canvas_type in self.canvas_types:
params = grid_params[canvas_type] = {}
params.update({
'variants': self._variants_for_canvas_type(canvas_type),
'grid_width': self._grid_width,
'name': self._unique_param([canvas_type], 'name'),
'test_type': self._unique_param([canvas_type], 'test_type'),
'fuzzy': self._unique_param([canvas_type], 'fuzzy'),
'timeout': self._unique_param([canvas_type], 'timeout'),
'notes': self._unique_param([canvas_type], 'notes'),
'images': self._param_set([canvas_type], 'images'),
'svgimages': self._param_set([canvas_type], 'svgimages'),
'fonts': self._param_set([canvas_type], 'fonts'),
})
if self.template_type in _REFERENCE_TEMPLATES:
params['desc'] = self._unique_param([canvas_type], 'desc')
return grid_params
def _write_reference_test(self, jinja_env: jinja2.Environment,
output_files: _OutputPaths):
grid = '_grid' if len(self.variants) > 1 else ''
# If variants don't all use the same offscreen and worker canvas types,
# the offscreen and worker grids won't be identical. The worker test
# therefore can't reuse the offscreen reference file.
offscreen_types = {_CanvasType.OFFSCREEN_CANVAS, _CanvasType.WORKER}
needs_worker_reference = len({
variant.params['canvas_types'] & offscreen_types
for variant in self.variants
}) != 1
test_templates = {
_CanvasType.HTML_CANVAS: f'reftest_element{grid}.html',
_CanvasType.OFFSCREEN_CANVAS: f'reftest_offscreen{grid}.html',
_CanvasType.WORKER: f'reftest_worker{grid}.html',
}
ref_templates = {
_TemplateType.REFERENCE: f'reftest_element{grid}.html',
_TemplateType.HTML_REFERENCE: f'reftest{grid}.html',
_TemplateType.CAIRO_REFERENCE: f'reftest_img{grid}.html',
_TemplateType.IMG_REFERENCE: f'reftest_img{grid}.html',
}
test_output_paths = {
_CanvasType.HTML_CANVAS: f'{output_files.element}.html',
_CanvasType.OFFSCREEN_CANVAS: f'{output_files.offscreen}.html',
_CanvasType.WORKER: f'{output_files.offscreen}.w.html',
}
ref_output_paths = {
_CanvasType.HTML_CANVAS: f'{output_files.element}-expected.html',
_CanvasType.OFFSCREEN_CANVAS:
f'{output_files.offscreen}-expected.html',
_CanvasType.WORKER: (
f'{output_files.offscreen}.w-expected.html'
if needs_worker_reference
else f'{output_files.offscreen}-expected.html'),
}
for canvas_type, params in self._canvas_type_params.items():
# Generate reference file.
if canvas_type != _CanvasType.WORKER or needs_worker_reference:
_render(jinja_env, ref_templates[self.template_type], params,
ref_output_paths[canvas_type])
# Generate test file, with a link to the reference file.
params['reference_file_link'] = pathlib.Path(
ref_output_paths[canvas_type]).name
_render(jinja_env, test_templates[canvas_type], params,
test_output_paths[canvas_type])
def _write_testharness_test(self, jinja_env: jinja2.Environment,
output_files: _OutputPaths):
grid = '_grid' if len(self.variants) > 1 else ''
templates = {
_CanvasType.HTML_CANVAS: f'testharness_element{grid}.html',
_CanvasType.OFFSCREEN_CANVAS: f'testharness_offscreen{grid}.html',
_CanvasType.WORKER: f'testharness_worker{grid}.js',
}
test_output_files = {
_CanvasType.HTML_CANVAS: f'{output_files.element}.html',
_CanvasType.OFFSCREEN_CANVAS: f'{output_files.offscreen}.html',
_CanvasType.WORKER: f'{output_files.offscreen}.worker.js',
}
# Create test cases for canvas, offscreencanvas and worker.
for canvas_type, params in self._canvas_type_params.items():
_render(jinja_env, templates[canvas_type], params,
test_output_files[canvas_type])
def _generate_cairo_reference_grid(self,
canvas_type: _CanvasType,
output_dirs: _OutputPaths) -> None:
"""Generate this grid's expected image from Cairo code, if needed.
In order to cut on the number of files generated, the expected image
of all the variants in this grid are packed into a single PNG. The
expected HTML then contains a grid of <img> tags, each showing a portion
of the PNG file."""
if not any(v.canvas_type_params[canvas_type].get('cairo_reference')
for v in self.variants):
return
width, height = self._unique_param([canvas_type], 'size')
cairo_code = ''
# First generate a function producing a Cairo surface with the expected
# image for each variant in the grid. The function is needed to provide
# a scope isolating the variant code from each other.
for idx, variant in enumerate(self._variants):
cairo_ref = variant.canvas_type_params[canvas_type].get(
'cairo_reference')
if not cairo_ref:
raise InvalidTestDefinitionError(
'When used, "cairo_reference" must be specified for all '
'test variants.')
cairo_code += textwrap.dedent(f'''\
def draw_ref{idx}():
surface = cairo.ImageSurface(
cairo.FORMAT_ARGB32, {width}, {height})
cr = cairo.Context(surface)
{{}}
return surface
''').format(textwrap.indent(cairo_ref, ' '))
# Write all variant images into the final surface.
surface_width = width * self._grid_width
surface_height = (height *
math.ceil(len(self._variants) / self._grid_width))
cairo_code += textwrap.dedent(f'''\
surface = cairo.ImageSurface(
cairo.FORMAT_ARGB32, {surface_width}, {surface_height})
cr = cairo.Context(surface)
''')
for idx, variant in enumerate(self._variants):
x_pos = int(idx % self._grid_width) * width
y_pos = int(idx / self._grid_width) * height
cairo_code += textwrap.dedent(f'''\
cr.set_source_surface(draw_ref{idx}(), {x_pos}, {y_pos})
cr.paint()
''')
img_filename = f'{self.file_name}.png'
output_dir = output_dirs.path_for_canvas_type(canvas_type)
_write_cairo_images(cairo_code, output_dir / img_filename)
for v in self._variants:
v.canvas_type_params[canvas_type]['img_reference'] = img_filename
def _generate_cairo_images(self, output_dirs: _OutputPaths) -> None:
"""Generates the pycairo images found in the YAML test definition."""
# 'expected:' is only used for HTML_CANVAS tests.
has_expected = any(v.canvas_type_params
.get(_CanvasType.HTML_CANVAS, {})
.get('expected') for v in self._variants)
has_cairo_reference = any(
params.get('cairo_reference')
for v in self._variants
for params in v.canvas_type_params.values())
if has_expected and has_cairo_reference:
raise InvalidTestDefinitionError(
'Parameters "expected" and "cairo_reference" can\'t be both '
'used at the same time.')
if has_expected:
if len(self.variants) != 1:
raise InvalidTestDefinitionError(
'Parameter "expected" is not supported for variant grids.')
if self.template_type != _TemplateType.TESTHARNESS:
raise InvalidTestDefinitionError(
'Parameter "expected" is not supported in reference '
'tests.')
self.variants[0].generate_expected_image(output_dirs)
elif has_cairo_reference:
for canvas_type in _CanvasType:
self._generate_cairo_reference_grid(canvas_type, output_dirs)
def generate_test(self, jinja_env: jinja2.Environment,
output_dirs: _OutputPaths) -> None:
"""Generate the test files to the specified output dirs."""
self._generate_cairo_images(output_dirs)
output_files = output_dirs.sub_path(self.file_name)
if self.template_type in _REFERENCE_TEMPLATES:
self._write_reference_test(jinja_env, output_files)
else:
self._write_testharness_test(jinja_env, output_files)
class _VariantLayout(str, enum.Enum):
SINGLE_FILE = 'single_file'
MULTI_FILES = 'multi_files'
@dataclasses.dataclass
class _VariantDimension:
variants: Mapping[str, _TestParams]
layout: _VariantLayout
def _get_variant_dimensions(params: _TestParams) -> List[_VariantDimension]:
variants = params.get('variants', [])
if not isinstance(variants, list):
raise InvalidTestDefinitionError(
textwrap.dedent("""
Variants must be specified as a list of variant dimensions, e.g.:
variants:
- dimension1-variant1:
param: ...
dimension1-variant2:
param: ...
- dimension2-variant1:
param: ...
dimension2-variant2:
param: ..."""))
variants_layout = params.get('variants_layout',
[_VariantLayout.MULTI_FILES] * len(variants))
if len(variants) != len(variants_layout):
raise InvalidTestDefinitionError(
'variants and variants_layout must be lists of the same size')
invalid_layouts = [
l for l in variants_layout if l not in list(_VariantLayout)
]
if invalid_layouts:
raise InvalidTestDefinitionError('Invalid variants_layout: ' +
', '.join(invalid_layouts) +
'. Valid layouts are: ' +
', '.join(_VariantLayout))
return [
_VariantDimension(z[0], z[1]) for z in zip(variants, variants_layout)
]
def _get_variant_grids(
test: _TestParams,
jinja_env: jinja2.Environment,
params_template_loader: MutableDictLoader
) -> List[_VariantGrid]:
base_variant = _Variant.create_with_defaults(test)
grid_width = base_variant.params.get('grid_width', 1)
if not isinstance(grid_width, int):
raise InvalidTestDefinitionError('"grid_width" must be an integer.')
grids = [_VariantGrid([base_variant], grid_width=grid_width)]
for dimension in _get_variant_dimensions(test):
variants = dimension.variants
if dimension.layout == _VariantLayout.MULTI_FILES:
grids = [
grid.merge_params(name, params or {})
for name, params in variants.items() for grid in grids
]
else:
grids = [grid.add_dimension(variants) for grid in grids]
for grid in grids:
grid.finalize(jinja_env, params_template_loader)
return grids
def _check_uniqueness(tested: DefaultDict[str, Set[_CanvasType]], name: str,
canvas_types: FrozenSet[_CanvasType]) -> None:
already_tested = tested[name].intersection(canvas_types)
if already_tested:
raise InvalidTestDefinitionError(
f'Test {name} is defined twice for types {already_tested}')
tested[name].update(canvas_types)
def _indent_filter(s: str, width: Union[int, str] = 4,
first: bool = False, blank: bool = False) -> str:
"""Returns a copy of the string with each line indented by the `width` str.
If `width` is a number, `s` is indented by that number of whitespaces. The
first line and blank lines are not indented by default, unless `first` or
`blank` are `True`, respectively.
This is a re-implementation of the default `indent` Jinja filter, preserving
line ending characters (\r, \n, \f, etc.) The default `indent` Jinja filter
incorrectly replaces all of these characters with newlines."""
is_first_line = True
def indent_needed(line):
nonlocal first, blank, is_first_line
is_blank = not line.strip()
need_indent = (not is_first_line or first) and (not is_blank or blank)
is_first_line = False
return need_indent
indentation = width if isinstance(width, str) else ' ' * width
return textwrap.indent(s, indentation, indent_needed)
def generate_test_files(name_to_dir_file: str) -> None:
"""Generate Canvas tests from YAML file definition."""
output_dirs = _OutputPaths(element=pathlib.Path('..') / 'element',
offscreen=pathlib.Path('..') / 'offscreen')
params_template_loader = MutableDictLoader()
jinja_env = jinja2.Environment(
loader=jinja2.ChoiceLoader([
jinja2.PackageLoader('gentest'),
params_template_loader,
]),
keep_trailing_newline=True,
trim_blocks=True,
lstrip_blocks=True)
jinja_env.filters['double_quote_escape'] = _double_quote_escape
jinja_env.filters['indent'] = _indent_filter
# Run with --test argument to run unit tests.
if len(sys.argv) > 1 and sys.argv[1] == '--test':
doctest = importlib.import_module('doctest')
doctest.testmod()
sys.exit()
name_to_sub_dir = (yaml.safe_load(
pathlib.Path(name_to_dir_file).read_text(encoding='utf-8')))
tests = []
test_yaml_directory = 'yaml'
yaml_files = [
os.path.join(test_yaml_directory, f)
for f in os.listdir(test_yaml_directory) if f.endswith('.yaml')
]
for t in sum([
yaml.safe_load(pathlib.Path(f).read_text(encoding='utf-8'))
for f in yaml_files
], []):
if 'DISABLED' in t:
continue
if 'meta' in t:
eval(compile(t['meta'], '<meta test>', 'exec'), {},
{'tests': tests})
else:
tests.append(t)
for sub_dir in set(name_to_sub_dir.values()):
output_dirs.sub_path(sub_dir).mkdir()
used_filenames = collections.defaultdict(set)
used_variants = collections.defaultdict(set)
for test in tests:
print(test['name'])
_check_reserved_params(test)
for grid in _get_variant_grids(test, jinja_env, params_template_loader):
if not grid.enabled:
continue
if test['name'] != grid.file_name:
print(f' {grid.file_name}')
_check_uniqueness(used_filenames, grid.file_name,
grid.canvas_types)
for variant in grid.variants:
_check_uniqueness(
used_variants,
'.'.join([_ensure_rendered(grid.file_name)] +
variant.params['grid_variant_names']),
grid.canvas_types)
sub_dir = _get_test_sub_dir(grid.file_name, name_to_sub_dir)
grid.generate_test(jinja_env, output_dirs.sub_path(sub_dir))
print()
if __name__ == '__main__':
generate_test_files('name2dir.yaml')
|