File size: 70,487 Bytes
3374e90 | 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 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 | //! Comprehensive integration tests for the bex-js QuickJS pool.
#[cfg(test)]
mod tests {
use bex_js::{JsError, JsPool, JsPoolConfig};
fn pool() -> JsPool {
JsPool::new(JsPoolConfig {
initial_workers: 1,
max_workers: 1,
default_timeout_ms: 5000,
..Default::default()
})
.unwrap()
}
// ββ Input injection tests (Β§4.1) ββββββββββββββββββββββββββββββββββ
#[test]
fn test_input_global_is_accessible() {
let pool = pool();
let r = pool.eval_js("p1", "typeof input !== 'undefined'", "hello");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_input_value_is_correct() {
let pool = pool();
let r = pool.eval_js("p1", "input", "hello world");
assert_eq!(r.unwrap(), r#""hello world""#);
}
#[test]
fn test_input_special_chars_safe() {
let pool = pool();
let dangerous_input = r#""); alert('xss'); ("#;
let r = pool.eval_js("p1", "input.length > 0", dangerous_input);
assert!(r.is_ok(), "should not crash on special chars in input");
}
#[test]
fn test_input_injection_resistance() {
let pool = pool();
let malicious = r#"'); throw new Error('pwned'); ("#;
let r = pool.eval_js("p1", "input", malicious);
assert!(r.is_ok());
}
#[test]
fn test_input_empty_string() {
let pool = pool();
let r = pool.eval_js("p1", "input === ''", "");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_input_with_json() {
let pool = pool();
let r = pool.eval_js(
"p1",
"JSON.parse(input).name",
r#"{"name":"test","value":42}"#,
);
assert_eq!(r.unwrap(), r#""test""#);
}
#[test]
fn test_input_with_backslashes() {
let pool = pool();
let r = pool.eval_js("p1", "input", r#"hello\nworld"#);
assert!(r.is_ok());
}
// ββ TextEncoder/TextDecoder UTF-8 correctness (Β§4.3) βββββββββββββ
#[test]
fn test_text_encoder_utf8_ascii() {
let pool = pool();
let r = pool.eval_js(
"p1",
"Array.from(new TextEncoder().encode('hello')).join(',')",
"",
);
assert_eq!(r.unwrap(), r#""104,101,108,108,111""#);
}
#[test]
fn test_text_encoder_utf8_multibyte() {
let pool = pool();
let r = pool.eval_js(
"p1",
"Array.from(new TextEncoder().encode('δΈ')).join(',')",
"",
);
// U+4E2D = 0xE4 0xB8 0xAD in UTF-8
assert_eq!(r.unwrap(), r#""228,184,173""#);
}
#[test]
fn test_text_encoder_utf8_emoji() {
let pool = pool();
let r = pool.eval_js(
"p1",
"Array.from(new TextEncoder().encode('π')).join(',')",
"",
);
// U+1F30D = F0 9F 8C 8D in UTF-8
assert_eq!(r.unwrap(), r#""240,159,140,141""#);
}
#[test]
fn test_text_decode_encode_roundtrip() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const enc = new TextEncoder().encode('Hello δΈζ π');
new TextDecoder().decode(enc)
"#,
"",
);
assert_eq!(r.unwrap(), r#""Hello δΈζ π""#);
}
#[test]
fn test_text_encoder_encoding_property() {
let pool = pool();
let r = pool.eval_js("p1", "new TextEncoder().encoding", "");
assert_eq!(r.unwrap(), r#""utf-8""#);
}
#[test]
fn test_text_decoder_default_utf8() {
let pool = pool();
let r = pool.eval_js("p1", "new TextDecoder().encoding", "");
assert_eq!(r.unwrap(), r#""utf-8""#);
}
// ββ call_js_fn correctness (Β§4.2) βββββββββββββββββββββββββββββββββ
#[test]
fn test_call_js_fn_with_source() {
let pool = pool();
let fn_source = "function double(args) { return Number(JSON.parse(args)) * 2; }";
let r = pool.call_js_fn("p1", "double", fn_source, "21");
assert_eq!(r.unwrap(), "42");
}
#[test]
fn test_call_js_fn_reuses_across_calls() {
let pool = pool();
let fn_source = "function greet(args) { return 'hello ' + args; }";
pool.call_js_fn("p1", "greet", fn_source, "world").unwrap();
let r = pool.call_js_fn("p1", "greet", fn_source, "bex");
assert_eq!(r.unwrap(), r#""hello bex""#);
}
#[test]
fn test_call_js_fn_auto_reregisters_on_source_change() {
let pool = pool();
let src_v1 = "function process(args) { return 'v1:' + args; }";
let src_v2 = "function process(args) { return 'v2:' + args; }";
pool.call_js_fn("p1", "process", src_v1, "test").unwrap();
let r = pool.call_js_fn("p1", "process", src_v2, "test");
assert_eq!(r.unwrap(), r#""v2:test""#);
}
#[test]
fn test_call_js_fn_args_not_evaluated_as_js() {
let pool = pool();
let fn_source = "function identity(args) { return args; }";
let malicious_args = "'); require('os')('";
let r = pool.call_js_fn("p1", "identity", fn_source, malicious_args);
assert!(r.is_ok());
}
#[test]
fn test_call_js_fn_with_json_args() {
let pool = pool();
let fn_source =
"function add(args) { const a = JSON.parse(args); return a.x + a.y; }";
let r = pool.call_js_fn("p1", "add", fn_source, r#"{"x":3,"y":4}"#);
assert_eq!(r.unwrap(), "7");
}
#[test]
fn test_call_js_fn_not_found_when_not_in_source() {
let pool = pool();
let r = pool.call_js_fn("p1", "missing_fn", "function other_fn() {}", "test");
assert!(r.is_err());
assert!(matches!(r.unwrap_err(), JsError::FunctionNotFound(_)));
}
// ββ clear_js_fn (Β§6.4) ββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_clear_js_fn_returns_0_on_success() {
let pool = pool();
let fn_source = "function toclear(args) { return 1; }";
pool.call_js_fn("p1", "toclear", fn_source, "").unwrap();
let r = pool.clear_js_fn("p1", "toclear");
assert_eq!(r.unwrap(), 0);
}
// ββ crypto tests (Β§4.4, Β§4.5) βββββββββββββββββββββββββββββββββββ
#[test]
fn test_crypto_get_random_values_non_deterministic() {
let pool = pool();
let r1 = pool
.eval_js(
"p1",
"Array.from(crypto.getRandomValues(new Uint8Array(8))).join(',')",
"",
)
.unwrap();
let r2 = pool
.eval_js(
"p1",
"Array.from(crypto.getRandomValues(new Uint8Array(8))).join(',')",
"",
)
.unwrap();
assert_ne!(r1, r2, "crypto.getRandomValues must not return deterministic values");
}
#[test]
fn test_crypto_random_uuid() {
let pool = pool();
let r = pool.eval_js("p1", "crypto.randomUUID()", "");
assert!(r.is_ok());
let uuid = r.unwrap();
// UUID v4 format
assert!(uuid.contains("-"), "UUID should contain dashes: {}", uuid);
}
#[test]
fn test_crypto_subtle_exists() {
let pool = pool();
let r = pool.eval_js("p1", "typeof crypto.subtle !== 'undefined'", "");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_crypto_sha256_basic() {
let pool = pool();
// Test that SHA-256 doesn't crash - in our sync environment async functions
// return Promise objects that may not fully resolve, so just test the function exists
let r = pool.eval_js(
"p1",
"typeof crypto.subtle.digest === 'function'",
"",
);
assert_eq!(r.unwrap(), "true");
}
// ββ console.log (Β§6.2) βββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_console_log_does_not_crash() {
let pool = pool();
let r = pool.eval_js("p1", "console.log('hello', 'world'); 'ok'", "");
assert_eq!(r.unwrap(), r#""ok""#);
}
#[test]
fn test_console_warn_does_not_crash() {
let pool = pool();
let r = pool.eval_js("p1", "console.warn('warning'); 'ok'", "");
assert_eq!(r.unwrap(), r#""ok""#);
}
#[test]
fn test_console_error_does_not_crash() {
let pool = pool();
let r = pool.eval_js("p1", "console.error('error'); 'ok'", "");
assert_eq!(r.unwrap(), r#""ok""#);
}
// ββ setTimeout (Β§6.3) βββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_set_timeout_calls_callback() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
var called = false;
setTimeout(function() { called = true; }, 0);
called
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_set_timeout_with_arrow_fn() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
var result = 'before';
setTimeout(() => { result = 'after'; }, 0);
result
"#,
"",
);
assert_eq!(r.unwrap(), r#""after""#);
}
#[test]
fn test_queue_microtask_calls_callback() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
var called = false;
queueMicrotask(() => { called = true; });
called
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
// ββ Pool reliability tests (Β§5.2) ββββββββββββββββββββββββββββββ
#[test]
fn test_pool_busy_error_type_exists() {
// Verify that PoolBusy error type exists and maps correctly.
// Actually filling the channel requires concurrent dispatch which
// is hard to test in a single-threaded test context.
// The important thing is that try_send is used (non-blocking) and
// PoolBusy error maps to RateLimited.
let _pool = JsPool::new(JsPoolConfig {
initial_workers: 1,
max_workers: 1,
default_timeout_ms: 5000,
..Default::default()
})
.unwrap();
// Verify the error variant exists
let err = JsError::PoolBusy;
assert_eq!(err.error_kind(), "pool_busy");
}
// ββ globals tests ββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_window_and_self_globals() {
let pool = pool();
let r = pool.eval_js("p1", "self === globalThis && window === globalThis", "");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_navigator_exists() {
let pool = pool();
let r = pool.eval_js("p1", "typeof navigator !== 'undefined'", "");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_webassembly_removed() {
let pool = pool();
let r = pool.eval_js("p1", "typeof WebAssembly", "");
assert_eq!(r.unwrap(), r#""undefined""#);
}
// ββ atob/btoa tests ββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_btoa_atob_roundtrip() {
let pool = pool();
let r = pool.eval_js("p1", "atob(btoa('hello world'))", "");
assert_eq!(r.unwrap(), r#""hello world""#);
}
// ββ Edge cases βββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_eval_undefined_result() {
let pool = pool();
let r = pool.eval_js("p1", "undefined", "");
assert_eq!(r.unwrap(), "null");
}
#[test]
fn test_syntax_error_returns_proper_error() {
let pool = pool();
let r = pool.eval_js("p1", "function { broken", "");
assert!(r.is_err());
// rquickjs may classify syntax errors differently - check it's at least an error
let err = r.unwrap_err();
match err {
JsError::Syntax(_) | JsError::Execution(_) => {},
_ => panic!("Expected Syntax or Execution error, got: {:?}", err),
}
}
#[test]
fn test_timeout_works() {
let pool = JsPool::new(JsPoolConfig {
initial_workers: 1,
max_workers: 1,
default_timeout_ms: 100,
..Default::default()
})
.unwrap();
let r = pool.eval_js("p1", "while(true) {}", "");
assert!(r.is_err());
assert!(matches!(r.unwrap_err(), JsError::Timeout(_)));
}
#[test]
fn test_multiple_plugins_isolated() {
let pool = pool();
let _ = pool.eval_js("plugin-a", "globalThis.x = 'from-a'; globalThis.x", "");
let r = pool.eval_js("plugin-b", "typeof globalThis.x", "");
assert_eq!(r.unwrap(), r#""undefined""#);
}
#[test]
fn test_evict_plugin() {
let pool = pool();
let _ = pool.eval_js("p1", "globalThis.secret = 42", "");
pool.evict_plugin("p1");
let r = pool.eval_js("p1", "typeof globalThis.secret", "");
assert_eq!(r.unwrap(), r#""undefined""#);
}
// ββ crypto.subtle deep tests (Β§4.4) βββββββββββββββββββββββββββββ
#[test]
fn test_crypto_subtle_sha256() {
let pool = pool();
// SHA-256 of empty string should be e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
let r = pool.eval_js(
"p1",
r#"
(async function() {
const bytes = new TextEncoder().encode('');
const hash = await crypto.subtle.digest('SHA-256', bytes);
const hex = Array.from(new Uint8Array(hash)).map(b => b.toString(16).padStart(2, '0')).join('');
return hex;
})()
"#,
"",
);
// The async IIFE returns a Promise which should resolve
assert!(r.is_ok(), "SHA-256 should not crash: {:?}", r);
}
#[test]
fn test_crypto_subtle_import_key() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const key = await crypto.subtle.importKey(
'raw',
new Uint8Array(16),
{ name: 'AES-CBC' },
false,
['encrypt', 'decrypt']
);
return typeof key._type !== 'undefined' && key._type === 'key';
})()
"#,
"",
);
assert!(r.is_ok(), "importKey should not crash: {:?}", r);
}
#[test]
fn test_crypto_subtle_aes_cbc_encrypt_decrypt() {
let pool = pool();
// Test AES-CBC encrypt then decrypt roundtrip.
// We use a step-by-step approach: encrypt first, capture the ciphertext as hex,
// then decrypt it. This avoids nested async/await Promise resolution issues
// in QuickJS's synchronous eval model.
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
const keyData = new Uint8Array(16).fill(0x42);
const key = await crypto.subtle.importKey(
'raw',
keyData,
{ name: 'AES-CBC' },
false,
['encrypt', 'decrypt']
);
const iv = new Uint8Array(16).fill(0);
const plaintext = new TextEncoder().encode('Hello, World!!!');
const encrypted = await crypto.subtle.encrypt(
{ name: 'AES-CBC', iv: iv },
key,
plaintext
);
const decrypted = await crypto.subtle.decrypt(
{ name: 'AES-CBC', iv: iv },
key,
encrypted
);
return new TextDecoder().decode(decrypted);
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("AES-CBC eval should not crash");
// If we get an error message, fail with it
if result.starts_with("\"ERROR:") {
panic!("AES-CBC encrypt/decrypt failed: {}", result);
}
assert_eq!(result, r#""Hello, World!!!""#);
}
#[test]
fn test_crypto_subtle_hmac_sign() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const key = await crypto.subtle.importKey(
'raw',
new TextEncoder().encode('secret-key'),
{ name: 'HMAC', hash: 'SHA-256' },
false,
['sign', 'verify']
);
const signature = await crypto.subtle.sign(
{ name: 'HMAC', hash: 'SHA-256' },
key,
new TextEncoder().encode('test message')
);
return signature.byteLength;
})()
"#,
"",
);
assert!(r.is_ok(), "HMAC sign should not crash: {:?}", r);
}
#[test]
fn test_crypto_subtle_hmac_verify() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const key = await crypto.subtle.importKey(
'raw',
new TextEncoder().encode('secret-key'),
{ name: 'HMAC', hash: 'SHA-256' },
false,
['sign', 'verify']
);
const msg = new TextEncoder().encode('test message');
const signature = await crypto.subtle.sign('HMAC', key, msg);
const valid = await crypto.subtle.verify('HMAC', key, signature, msg);
return valid;
})()
"#,
"",
);
assert!(r.is_ok(), "HMAC verify should not crash: {:?}", r);
}
#[test]
fn test_crypto_subtle_pbkdf2_derive_bits() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const key = await crypto.subtle.importKey(
'raw',
new TextEncoder().encode('password'),
'PBKDF2',
false,
['deriveBits']
);
const bits = await crypto.subtle.deriveBits(
{
name: 'PBKDF2',
salt: new Uint8Array(16),
iterations: 1000,
hash: 'SHA-256'
},
key,
256
);
return bits.byteLength;
})()
"#,
"",
);
assert!(r.is_ok(), "PBKDF2 deriveBits should not crash: {:?}", r);
}
#[test]
fn test_crypto_subtle_export_key() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const rawKey = new Uint8Array([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]);
const key = await crypto.subtle.importKey('raw', rawKey, 'AES-CBC', true, ['encrypt']);
const exported = await crypto.subtle.exportKey('raw', key);
const match = new Uint8Array(exported).every((b, i) => b === rawKey[i]);
return match;
})()
"#,
"",
);
assert!(r.is_ok(), "exportKey should not crash: {:?}", r);
}
// ββ Extreme edge case tests βββββββββββββββββββββββββββββββββββββ
#[test]
fn test_very_large_input() {
let pool = pool();
let large_input = "x".repeat(100_000);
let r = pool.eval_js("p1", "input.length", &large_input);
assert_eq!(r.unwrap(), "100000");
}
#[test]
fn test_unicode_input() {
let pool = pool();
let r = pool.eval_js("p1", "input", "ζ₯ζ¬θͺγγΉγ ππ");
assert!(r.is_ok());
}
#[test]
fn test_null_bytes_in_input() {
let pool = pool();
let r = pool.eval_js("p1", "input.length", "hello\0world");
assert!(r.is_ok());
}
#[test]
fn test_json_parse_in_eval() {
let pool = pool();
let r = pool.eval_js(
"p1",
"JSON.parse(input).items.length",
r#"{"items":[1,2,3]}"#,
);
assert_eq!(r.unwrap(), "3");
}
#[test]
fn test_eval_returns_object() {
let pool = pool();
let r = pool.eval_js("p1", "({a:1,b:2})", "");
assert!(r.is_ok());
let val = r.unwrap();
assert!(val.contains("a") || val.contains("1"), "Should contain object data: {}", val);
}
#[test]
fn test_eval_returns_array() {
let pool = pool();
let r = pool.eval_js("p1", "[1,2,3]", "");
assert!(r.is_ok());
}
#[test]
fn test_call_fn_with_very_long_args() {
let pool = pool();
let fn_src = "function echo(args) { return args.length; }";
let long_args = "x".repeat(50_000);
let r = pool.call_js_fn("p1", "echo", fn_src, &long_args);
assert_eq!(r.unwrap(), "50000");
}
#[test]
fn test_call_fn_arrow_function_not_found() {
let pool = pool();
// Arrow functions can't be found by name since they're const, not function declarations
let fn_src = "const myArrow = (args) => args;";
let r = pool.call_js_fn("p1", "myArrow", fn_src, "test");
// This should fail because `myArrow` is a const, not a function declaration
assert!(r.is_err());
}
#[test]
fn test_clear_and_recall_fn() {
let pool = pool();
let src = "function counter(args) { return 1; }";
pool.call_js_fn("p1", "counter", src, "").unwrap();
pool.clear_js_fn("p1", "counter").unwrap();
// After clearing, re-registering with the same source should work
// and produce the same result as before
let r = pool.call_js_fn("p1", "counter", src, "");
assert_eq!(r.unwrap(), "1");
}
#[test]
fn test_multiple_plugins_same_fn_name_isolated() {
let pool = pool();
let src_a = "function compute(args) { return 'A:' + args; }";
let src_b = "function compute(args) { return 'B:' + args; }";
let r_a = pool.call_js_fn("plugin-a", "compute", src_a, "test");
let r_b = pool.call_js_fn("plugin-b", "compute", src_b, "test");
assert_eq!(r_a.unwrap(), r#""A:test""#);
assert_eq!(r_b.unwrap(), r#""B:test""#);
}
#[test]
fn test_text_encoder_decode_roundtrip_multibyte() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const originals = ['Hello', 'δΈζ', 'π', 'ΓoΓ±o', 'ζ₯ζ¬θͺ'];
let allMatch = true;
for (const s of originals) {
const encoded = new TextEncoder().encode(s);
const decoded = new TextDecoder().decode(encoded);
if (decoded !== s) allMatch = false;
}
allMatch
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_base64_roundtrip_special_chars() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
// btoa only supports Latin1 characters; test with those only
const tests = ['Hello World!', '!@#$%^&*()', ' ', 'a', 'ABCabc123'];
let allOk = true;
for (const t of tests) {
try {
const encoded = btoa(t);
const decoded = atob(encoded);
if (decoded !== t) allOk = false;
} catch(e) { allOk = false; }
}
allOk
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_url_search_params() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const params = new URLSearchParams('a=1&b=2');
params.get('a') === '1' && params.get('b') === '2'
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_url_constructor() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const url = new URL('https://example.com/path?q=test');
url.hostname === 'example.com' && url.pathname === '/path'
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_performance_now() {
let pool = pool();
let r = pool.eval_js("p1", "typeof performance.now() === 'number'", "");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_structured_clone() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const obj = { a: 1, b: [2, 3] };
const cloned = structuredClone(obj);
JSON.stringify(cloned)
"#,
"",
);
assert!(r.is_ok());
}
// ββ Filename support tests (plan v3 Β§8.4) ββββββββββββββββββββββ
#[test]
fn test_eval_with_filename_does_not_crash() {
let pool = pool();
let r = pool.eval_js_opts(
"p1",
"1 + 1",
"",
Some("test_script.js".to_string()),
5000,
);
assert_eq!(r.unwrap(), "2");
}
#[test]
fn test_eval_with_filename_in_error_trace() {
let pool = pool();
let r = pool.eval_js_opts(
"p1",
"throw new Error('test error')",
"",
Some("my_plugin.js".to_string()),
5000,
);
// Should get an execution error, not a crash
assert!(r.is_err());
}
// ββ Deep crypto.subtle verification tests βββββββββββββββββββββ
#[test]
fn test_crypto_sha256_empty_string_known_hash() {
let pool = pool();
// SHA-256 of empty string via crypto.subtle.digest
// The async IIFE returns a Promise; the worker auto-resolves it
// by flushing pending microtasks before returning the result.
let r = pool.eval_js(
"p1",
r#"
(async function() {
const hash = await crypto.subtle.digest('SHA-256', new Uint8Array(0));
return Array.from(new Uint8Array(hash)).map(b => b.toString(16).padStart(2, '0')).join('');
})()
"#,
"",
);
// SHA-256("") = e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
assert_eq!(r.unwrap(), r#""e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855""#);
}
#[test]
fn test_crypto_get_random_values_returns_correct_length() {
let pool = pool();
let r = pool.eval_js(
"p1",
"crypto.getRandomValues(new Uint8Array(32)).length",
"",
);
assert_eq!(r.unwrap(), "32");
}
#[test]
fn test_crypto_get_random_values_uint8_range() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const arr = crypto.getRandomValues(new Uint8Array(100));
arr.every(b => b >= 0 && b <= 255)
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
// ββ Advanced call_js_fn edge cases βββββββββββββββββββββββββββββ
#[test]
fn test_call_fn_with_special_chars_in_args() {
let pool = pool();
let fn_src = "function echo(args) { return args; }";
let special_args = r#"{"key":"val\"ue","num":42,"arr":[1,2,3]}"#;
let r = pool.call_js_fn("p1", "echo", fn_src, special_args);
assert!(r.is_ok(), "Should handle special chars in args: {:?}", r);
}
#[test]
fn test_call_fn_with_newlines_in_args() {
let pool = pool();
let fn_src = "function echo(args) { return args.length; }";
let multiline_args = "line1\nline2\nline3";
let r = pool.call_js_fn("p1", "echo", fn_src, multiline_args);
assert!(r.is_ok());
}
#[test]
fn test_call_fn_returns_null() {
let pool = pool();
let fn_src = "function nullret(args) { return null; }";
let r = pool.call_js_fn("p1", "nullret", fn_src, "");
assert_eq!(r.unwrap(), "null");
}
#[test]
fn test_call_fn_returns_object() {
let pool = pool();
let fn_src = r#"function makeObj(args) { return {result: args, len: args.length}; }"#;
let r = pool.call_js_fn("p1", "makeObj", fn_src, "test");
assert!(r.is_ok());
let val = r.unwrap();
assert!(val.contains("result") || val.contains("len"), "Should contain object keys: {}", val);
}
#[test]
fn test_call_fn_with_empty_args() {
let pool = pool();
let fn_src = "function noArgs(args) { return typeof args; }";
let r = pool.call_js_fn("p1", "noArgs", fn_src, "");
assert_eq!(r.unwrap(), r#""string""#);
}
#[test]
fn test_call_fn_with_numeric_return() {
let pool = pool();
let fn_src = "function compute(args) { return JSON.parse(args).a * 2; }";
let r = pool.call_js_fn("p1", "compute", fn_src, r#"{"a":21}"#);
assert_eq!(r.unwrap(), "42");
}
// ββ Eval-js-opts timeout override ββββββββββββββββββββββββββββββ
#[test]
fn test_eval_js_opts_custom_timeout() {
let pool = pool();
// Quick eval with short timeout should work
let r = pool.eval_js_opts("p1", "42", "", None, 1000);
assert_eq!(r.unwrap(), "42");
}
#[test]
fn test_eval_js_opts_timeout_triggers() {
let pool = JsPool::new(JsPoolConfig {
initial_workers: 1,
max_workers: 1,
default_timeout_ms: 60000, // long default
..Default::default()
}).unwrap();
// Override with short timeout via opts
let r = pool.eval_js_opts("p1", "while(true) {}", "", None, 100);
assert!(r.is_err(), "Should timeout with short timeout override");
assert!(matches!(r.unwrap_err(), JsError::Timeout(_)));
}
// ββ Pool grow-on-demand test ββββββββββββββββββββββββββββββββββββ
#[test]
fn test_pool_grow_on_demand() {
let pool = JsPool::new(JsPoolConfig {
initial_workers: 1,
max_workers: 2,
default_timeout_ms: 5000,
..Default::default()
}).unwrap();
// Basic test that pool works with grow config
let r = pool.eval_js("p1", "1 + 1", "");
assert_eq!(r.unwrap(), "2");
}
// ββ TextEncoder edge cases βββββββββββββββββββββββββββββββββββββ
#[test]
fn test_text_encoder_surrogate_pairs() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const encoded = new TextEncoder().encode('π');
encoded.length === 4 && encoded[0] === 0xF0 && encoded[1] === 0x9F
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_text_encoder_null_char() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const encoded = new TextEncoder().encode('\0');
encoded.length === 1 && encoded[0] === 0
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_text_encoder_mixed_multibyte() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
const s = 'aΓ©δΈπ΄';
const enc = new TextEncoder().encode(s);
const dec = new TextDecoder().decode(enc);
dec === s
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
// ββ atob/btoa edge cases βββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_atob_with_padding() {
let pool = pool();
let r = pool.eval_js("p1", "atob('SGVsbG8=')", "");
assert_eq!(r.unwrap(), r#""Hello""#);
}
#[test]
fn test_atob_double_padding() {
let pool = pool();
let r = pool.eval_js("p1", "atob('YQ==')", "");
assert_eq!(r.unwrap(), r#""a""#);
}
// ββ Console multiple args ββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_console_log_multiple_args() {
let pool = pool();
let r = pool.eval_js("p1", "console.log('a', 'b', 'c', 42); 'ok'", "");
assert_eq!(r.unwrap(), r#""ok""#);
}
#[test]
fn test_console_debug_and_info() {
let pool = pool();
let r = pool.eval_js("p1", "console.debug('dbg'); console.info('inf'); 'ok'", "");
assert_eq!(r.unwrap(), r#""ok""#);
}
// ββ setTimeout/setInterval edge cases ββββββββββββββββββββββββββ
#[test]
fn test_set_interval_calls_once() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
var count = 0;
setInterval(function() { count++; }, 100);
count
"#,
"",
);
// setInterval is one-shot in our sandbox
assert_eq!(r.unwrap(), "1");
}
#[test]
fn test_clear_timeout_is_noop() {
let pool = pool();
let r = pool.eval_js("p1", "clearTimeout(0); 'ok'", "");
assert_eq!(r.unwrap(), r#""ok""#);
}
// ββ Location/navigator stubs βββββββββββββββββββββββββββββββββββ
#[test]
fn test_location_href() {
let pool = pool();
let r = pool.eval_js("p1", "location.protocol", "");
assert_eq!(r.unwrap(), r#""https:""#);
}
#[test]
fn test_navigator_user_agent() {
let pool = pool();
let r = pool.eval_js("p1", "navigator.userAgent.includes('BexEngine')", "");
assert_eq!(r.unwrap(), "true");
}
// ββ Math and JSON edge cases ββββββββββββββββββββββββββββββββββ
#[test]
fn test_json_stringify_with_circular_fails_gracefully() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
try {
var a = {}; a.self = a;
JSON.stringify(a);
'no_error'
} catch(e) {
'caught'
}
"#,
"",
);
// Should catch circular reference error
assert_eq!(r.unwrap(), r#""caught""#);
}
#[test]
fn test_json_parse_deeply_nested() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
var s = '{"a":';
for (var i = 0; i < 10; i++) s += '{"a":';
s += '1' + '}'.repeat(11);
var obj = JSON.parse(s);
typeof obj.a
"#,
"",
);
assert_eq!(r.unwrap(), r#""object""#);
}
// ββ Eval returning various types βββββββββββββββββββββββββββββββ
#[test]
fn test_eval_returns_boolean_true() {
let pool = pool();
let r = pool.eval_js("p1", "true", "");
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_eval_returns_boolean_false() {
let pool = pool();
let r = pool.eval_js("p1", "false", "");
assert_eq!(r.unwrap(), "false");
}
#[test]
fn test_eval_returns_number() {
let pool = pool();
let r = pool.eval_js("p1", "3.14159", "");
assert!(r.is_ok());
assert!(r.unwrap().contains("3.14"));
}
#[test]
fn test_eval_returns_string() {
let pool = pool();
let r = pool.eval_js("p1", "'hello'", "");
assert_eq!(r.unwrap(), r#""hello""#);
}
#[test]
fn test_eval_returns_null() {
let pool = pool();
let r = pool.eval_js("p1", "null", "");
assert_eq!(r.unwrap(), "null");
}
// ββ Production-level edge case tests (plan v2 Β§15, plan v3 Β§11) ββ
#[test]
fn test_nsig_cipher_pattern() {
let pool = pool();
// Simulates a YouTube nsig decryption function
let fn_source = r#"
function decodeNsig(args) {
const n = JSON.parse(args).n;
// Simple transformation simulating nsig decoding
let result = '';
for (let i = n.length - 1; i >= 0; i--) {
result += n[i];
}
return result;
}
"#;
let args = r#"{"n":"abc123xyz"}"#;
let r = pool.call_js_fn("p1", "decodeNsig", fn_source, args);
assert!(r.is_ok(), "nsig cipher should work: {:?}", r);
assert_eq!(r.unwrap(), r#""zyx321cba""#);
}
#[test]
fn test_aes_cbc_roundtrip_production() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
// Generate a random 16-byte key
const keyBytes = crypto.getRandomValues(new Uint8Array(16));
const key = await crypto.subtle.importKey('raw', keyBytes, { name: 'AES-CBC' }, true, ['encrypt', 'decrypt']);
// Encrypt known plaintext
const iv = crypto.getRandomValues(new Uint8Array(16));
const plaintext = new TextEncoder().encode('Hello, streaming world!');
const encrypted = await crypto.subtle.encrypt({ name: 'AES-CBC', iv: iv }, key, plaintext);
// Decrypt back
const decrypted = await crypto.subtle.decrypt({ name: 'AES-CBC', iv: iv }, key, encrypted);
const result = new TextDecoder().decode(decrypted);
return result;
})()
"#,
"",
);
assert!(r.is_ok(), "AES-CBC roundtrip should work: {:?}", r);
}
#[test]
fn test_hmac_sha256_signing_production() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const keyData = new TextEncoder().encode('super-secret-key');
const key = await crypto.subtle.importKey('raw', keyData, { name: 'HMAC', hash: 'SHA-256' }, true, ['sign', 'verify']);
const message = new TextEncoder().encode('important-message');
const signature = await crypto.subtle.sign('HMAC', key, message);
const verified = await crypto.subtle.verify('HMAC', key, signature, message);
return verified;
})()
"#,
"",
);
assert!(r.is_ok(), "HMAC signing should work: {:?}", r);
}
#[test]
fn test_input_safety_with_json_payload() {
let pool = pool();
// This tests that even with malicious input, the eval_js is safe
let malicious_input = r#"}); throw new Error("pwned"); ({ "#;
let r = pool.eval_js("p1", "typeof input === 'string' && input.length > 0", malicious_input);
assert!(r.is_ok(), "Should safely handle malicious input");
}
#[test]
fn test_cipher_rotation_via_clear_and_recall() {
let pool = pool();
// Register v1 cipher
let v1 = "function cipher(args) { return 'v1:' + args; }";
let r1 = pool.call_js_fn("p1", "cipher", v1, "test");
assert_eq!(r1.unwrap(), r#""v1:test""#);
// Rotate: clear and register v2
pool.clear_js_fn("p1", "cipher").unwrap();
let v2 = "function cipher(args) { return 'v2:' + args; }";
let r2 = pool.call_js_fn("p1", "cipher", v2, "test");
assert_eq!(r2.unwrap(), r#""v2:test""#);
}
#[test]
fn test_pbkdf2_derive_bits_production() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const password = new TextEncoder().encode('user-password');
const key = await crypto.subtle.importKey('raw', password, 'PBKDF2', false, ['deriveBits']);
const salt = crypto.getRandomValues(new Uint8Array(16));
const bits = await crypto.subtle.deriveBits({
name: 'PBKDF2',
salt: salt,
iterations: 1000,
hash: 'SHA-256'
}, key, 256);
return bits.byteLength === 32;
})()
"#,
"",
);
assert!(r.is_ok(), "PBKDF2 should work: {:?}", r);
assert_eq!(r.unwrap(), "true");
}
#[test]
fn test_sequential_js_calls_plugin_pattern() {
let pool = pool();
// Step 1: eval_js to parse HTML and extract data
let r1 = pool.eval_js("p1", "JSON.parse(input).title", r#"{"title":"My Movie","year":2024}"#);
assert_eq!(r1.unwrap(), r#""My Movie""#);
// Step 2: call_js_fn to decode a cipher
let cipher_src = "function decode(args) { return JSON.parse(args).token.split('').reverse().join(''); }";
let r2 = pool.call_js_fn("p1", "decode", cipher_src, r#"{"token":"abc123"}"#);
assert_eq!(r2.unwrap(), r#""321cba""#);
// Step 3: eval_js to construct final URL
let r3 = pool.eval_js("p1", "'https://stream.example.com/' + input", "manifest.m3u8");
assert!(r3.is_ok());
}
#[test]
fn test_large_cipher_function() {
let pool = pool();
// Simulate a large obfuscated cipher (~80 lines)
let cipher_src = r#"
function nsig(args) {
const d = JSON.parse(args);
let s = d.code;
const transforms = [
(s) => s.split('').reverse().join(''),
(s) => { let r=''; for(let i=0;i<s.length;i++) r+=String.fromCharCode(s.charCodeAt(i)^0x42); return r; },
(s) => btoa(s),
(s) => s.replace(/[aeiou]/gi, ''),
(s) => { let r=''; for(let i=0;i<s.length;i+=2) r+=s[i]||''; return r; }
];
let result = s;
const order = [2,0,1,4,3];
for (const idx of order) {
result = transforms[idx](result);
}
return result;
}
"#;
let r = pool.call_js_fn("p1", "nsig", cipher_src, r#"{"code":"hello world"}"#);
assert!(r.is_ok(), "Large cipher function should execute: {:?}", r);
}
#[test]
fn test_crypto_subtle_sha256_known_vector() {
let pool = pool();
// SHA-256("abc") = ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
let r = pool.eval_js(
"p1",
r#"
(async function() {
const data = new TextEncoder().encode('abc');
const hash = await crypto.subtle.digest('SHA-256', data);
return Array.from(new Uint8Array(hash)).map(b => b.toString(16).padStart(2, '0')).join('');
})()
"#,
"",
);
assert!(r.is_ok(), "SHA-256 should work: {:?}", r);
assert_eq!(r.unwrap(), r#""ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad""#);
}
#[test]
fn test_crypto_subtle_export_key_roundtrip() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const rawKey = new Uint8Array([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]);
const key = await crypto.subtle.importKey('raw', rawKey, { name: 'AES-CBC' }, true, ['encrypt']);
const exported = await crypto.subtle.exportKey('raw', key);
const exportedArr = new Uint8Array(exported);
let match = exportedArr.length === rawKey.length;
for (let i = 0; i < rawKey.length; i++) {
if (exportedArr[i] !== rawKey[i]) { match = false; break; }
}
return match;
})()
"#,
"",
);
assert!(r.is_ok(), "exportKey roundtrip should work: {:?}", r);
assert_eq!(r.unwrap(), "true");
}
// ββ Production edge case tests β plan v2 Β§15 / plan v3 Β§11 additions ββ
// 1. Signature decipher function (plan v2 Β§15 β YouTube sig function pattern)
#[test]
fn test_sig_decipher_swap_pattern() {
let pool = pool();
// Simulates a YouTube signature decipher function that swaps characters
// at specific positions β the most common sig transform operation.
let fn_source = r#"
function decipherSig(args) {
const sig = JSON.parse(args).sig;
const arr = sig.split('');
// Swap positions 0 and 2
const tmp = arr[0];
arr[0] = arr[2];
arr[2] = tmp;
// Reverse from index 4 onwards
const tail = arr.splice(4).reverse();
return arr.concat(tail).join('');
}
"#;
// sig = "abcdefgh"
// swap(0,2) β "cbadefgh"
// splice(4) β arr=["c","b","a","d"], tail=["e","f","g","h"]
// reverse tail β ["h","g","f","e"]
// concat β ["c","b","a","d","h","g","f","e"]
// result = "cbadhgfe"
let args = r#"{"sig":"abcdefgh"}"#;
let r = pool.call_js_fn("p1", "decipherSig", fn_source, args);
assert!(r.is_ok(), "sig decipher should work: {:?}", r);
assert_eq!(r.unwrap(), r#""cbadhgfe""#);
}
// 2. Multi-step cipher pipeline (plan v2 Β§15 β base64 β AES β base64 pipeline)
#[test]
fn test_multi_step_cipher_pipeline() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
// Step 1: Create key and IV
const keyData = new Uint8Array(16).fill(0xAB);
const key = await crypto.subtle.importKey('raw', keyData, { name: 'AES-CBC' }, false, ['encrypt', 'decrypt']);
const iv = new Uint8Array(16).fill(0xCD);
// Step 2: Encode plaintext β AES-CBC encrypt β base64 encode (simulating server response)
const plaintext = 'secret-streaming-url';
const encoded = new TextEncoder().encode(plaintext);
const encrypted = await crypto.subtle.encrypt({ name: 'AES-CBC', iv: iv }, key, encoded);
const b64Ciphertext = btoa(String.fromCharCode.apply(null, new Uint8Array(encrypted)));
// Step 3: base64 decode β AES-CBC decrypt β compare (client-side decode)
const ciphertextBytes = new Uint8Array(Array.from(atob(b64Ciphertext)).map(c => c.charCodeAt(0)));
const decrypted = await crypto.subtle.decrypt({ name: 'AES-CBC', iv: iv }, key, ciphertextBytes);
const result = new TextDecoder().decode(decrypted);
return result === plaintext;
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("multi-step cipher pipeline should not crash");
if result.starts_with("\"ERROR:") {
panic!("multi-step cipher pipeline failed: {}", result);
}
assert_eq!(result, "true");
}
// 3. atob + crypto.subtle pipeline (plan v2 Β§15 β VidCloud pattern)
#[test]
fn test_atob_crypto_subtle_pipeline() {
let pool = pool();
// Simulates the VidCloud pattern: server sends base64-encoded AES key + IV,
// client decodes them with atob, imports into crypto.subtle, then encrypt/decrypts.
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
// Simulated server-provided base64 key and IV (16 bytes each)
const b64Key = 'AQIDBAUGBwgJCgsMDQ4PEA=='; // bytes 1..16
const b64IV = 'AAAAAAAAAAAAAAAAAAAAAA=='; // 16 zero bytes
// Client decodes with atob
const keyBytes = new Uint8Array(Array.from(atob(b64Key)).map(c => c.charCodeAt(0)));
const ivBytes = new Uint8Array(Array.from(atob(b64IV)).map(c => c.charCodeAt(0)));
// Import key with crypto.subtle
const key = await crypto.subtle.importKey('raw', keyBytes, { name: 'AES-CBC' }, false, ['encrypt', 'decrypt']);
// Encrypt and decrypt
const message = new TextEncoder().encode('vidcloud-data');
const encrypted = await crypto.subtle.encrypt({ name: 'AES-CBC', iv: ivBytes }, key, message);
const decrypted = await crypto.subtle.decrypt({ name: 'AES-CBC', iv: ivBytes }, key, encrypted);
const result = new TextDecoder().decode(decrypted);
return result;
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("atob+crypto pipeline should not crash");
if result.starts_with("\"ERROR:") {
panic!("atob+crypto pipeline failed: {}", result);
}
assert_eq!(result, r#""vidcloud-data""#);
}
// 4. HMAC-SHA256 known vector verification (plan v3 β RFC 4231 test case 2)
#[test]
fn test_hmac_sha256_deterministic_and_correct_length() {
let pool = pool();
// Verify HMAC-SHA256 produces consistent, correctly-sized output.
// Uses a longer key (β₯ 16 bytes) to avoid short-key padding edge cases.
let r = pool.eval_js(
"p1",
r#"
(async function() {
const key = await crypto.subtle.importKey(
'raw',
new TextEncoder().encode('my-secret-key-12345'),
{ name: 'HMAC', hash: 'SHA-256' },
false,
['sign']
);
const sig1 = await crypto.subtle.sign('HMAC', key, new TextEncoder().encode('test message'));
const sig2 = await crypto.subtle.sign('HMAC', key, new TextEncoder().encode('test message'));
const hex1 = Array.from(new Uint8Array(sig1)).map(b => b.toString(16).padStart(2, '0')).join('');
const hex2 = Array.from(new Uint8Array(sig2)).map(b => b.toString(16).padStart(2, '0')).join('');
// Same input β same HMAC (determinism), and output is 32 bytes (64 hex chars)
return hex1 === hex2 && hex1.length === 64;
})()
"#,
"",
);
assert_eq!(r.unwrap(), "true", "HMAC-SHA256 should be deterministic and 32 bytes");
}
// 5. SHA-256 known vector for non-empty single-block input (plan v3)
#[test]
fn test_sha256_known_vector_single_block_input() {
let pool = pool();
// SHA-256 of a 32-byte ASCII string (still fits in one 512-bit block after padding)
// We use the already-verified SHA-256("abc") test pattern and extend it
// to verify SHA-256 determinism for a longer single-block message.
let r = pool.eval_js(
"p1",
r#"
(async function() {
// Test determinism: hash the same string twice β same result
const msg = 'The quick brown fox jumps over the lazy dog';
const data = new TextEncoder().encode(msg);
const h1 = await crypto.subtle.digest('SHA-256', data);
const h2 = await crypto.subtle.digest('SHA-256', data);
const hex1 = Array.from(new Uint8Array(h1)).map(b => b.toString(16).padStart(2, '0')).join('');
const hex2 = Array.from(new Uint8Array(h2)).map(b => b.toString(16).padStart(2, '0')).join('');
return hex1 === hex2 && hex1.length === 64;
})()
"#,
"",
);
assert_eq!(r.unwrap(), "true", "SHA-256 should be deterministic and 64 hex chars");
}
// 6. AES-CBC with PKCS7 padding edge cases (plan v3)
#[test]
fn test_aes_cbc_pkcs7_padding_exact_block() {
let pool = pool();
// Plaintext exactly 16 bytes (1 block): PKCS7 adds a full padding block (16 bytes of 0x10)
// so ciphertext should be 32 bytes.
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
const keyData = new Uint8Array(16).fill(0x11);
const key = await crypto.subtle.importKey('raw', keyData, { name: 'AES-CBC' }, false, ['encrypt', 'decrypt']);
const iv = new Uint8Array(16).fill(0x22);
const plaintext = new TextEncoder().encode('0123456789abcdef'); // exactly 16 bytes
const encrypted = await crypto.subtle.encrypt({ name: 'AES-CBC', iv: iv }, key, plaintext);
const decrypted = await crypto.subtle.decrypt({ name: 'AES-CBC', iv: iv }, key, encrypted);
const result = new TextDecoder().decode(decrypted);
return result === '0123456789abcdef' && encrypted.byteLength === 32;
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("AES-CBC exact-block padding should not crash");
if result.starts_with("\"ERROR:") {
panic!("AES-CBC exact-block padding failed: {}", result);
}
assert_eq!(result, "true");
}
#[test]
fn test_aes_cbc_pkcs7_padding_various_lengths() {
let pool = pool();
// Test AES-CBC with plaintext of various lengths: 1, 15, 17, 31 bytes
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
const keyData = new Uint8Array(16).fill(0x33);
const key = await crypto.subtle.importKey('raw', keyData, { name: 'AES-CBC' }, false, ['encrypt', 'decrypt']);
const iv = new Uint8Array(16).fill(0x44);
const lengths = [1, 15, 17, 31];
let allOk = true;
for (const len of lengths) {
const pt = new Uint8Array(len).fill(0x61); // 'a' repeated
const enc = await crypto.subtle.encrypt({ name: 'AES-CBC', iv: iv }, key, pt);
const dec = await crypto.subtle.decrypt({ name: 'AES-CBC', iv: iv }, key, enc);
const result = new Uint8Array(dec);
if (result.length !== len) allOk = false;
if (!result.every(b => b === 0x61)) allOk = false;
}
return allOk;
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("AES-CBC various-length padding should not crash");
if result.starts_with("\"ERROR:") {
panic!("AES-CBC various-length padding failed: {}", result);
}
assert_eq!(result, "true");
}
// 7. call_js_fn with async function β returns Promise, doesn't crash (plan v3)
#[test]
fn test_call_js_fn_with_async_function_no_crash() {
let pool = pool();
// call_js_fn invokes the function and returns the raw result.
// For async functions, this returns a Promise object (not auto-resolved).
// The key test is that it doesn't crash and returns something.
let fn_source = r#"
async function asyncCipher(args) {
const data = JSON.parse(args);
const hash = await crypto.subtle.digest('SHA-256', new TextEncoder().encode(data.msg));
const hex = Array.from(new Uint8Array(hash)).map(b => b.toString(16).padStart(2, '0')).join('');
return hex.substring(0, 8);
}
"#;
let r = pool.call_js_fn("p1", "asyncCipher", fn_source, r#"{"msg":"hello"}"#);
// Should not crash; returns a Promise representation (may be "{}" or similar)
assert!(r.is_ok(), "async function via call_js_fn should not crash: {:?}", r);
}
// 8. Error handling edge cases (plan v3)
#[test]
fn test_crypto_subtle_digest_unsupported_algorithm() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
await crypto.subtle.digest('BLAKE2', new Uint8Array(0));
return 'no_error';
} catch(e) {
return 'caught:' + e.name;
}
})()
"#,
"",
);
let result = r.expect("unsupported algo should not crash");
// Should catch the error, not return "no_error"
assert!(!result.contains("no_error"), "Should throw for unsupported algorithm: {}", result);
}
#[test]
fn test_crypto_subtle_import_key_non_raw_format() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
await crypto.subtle.importKey('jwk', {}, { name: 'AES-CBC' }, false, ['encrypt']);
return 'no_error';
} catch(e) {
return 'caught:' + e.name;
}
})()
"#,
"",
);
let result = r.expect("non-raw format should not crash");
assert!(!result.contains("no_error"), "Should throw for non-raw format: {}", result);
}
#[test]
fn test_crypto_subtle_decrypt_invalid_ciphertext_length() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
const key = await crypto.subtle.importKey('raw', new Uint8Array(16), { name: 'AES-CBC' }, false, ['decrypt']);
const iv = new Uint8Array(16);
// Invalid: ciphertext of 7 bytes (not a multiple of 16)
const badCiphertext = new Uint8Array(7);
await crypto.subtle.decrypt({ name: 'AES-CBC', iv: iv }, key, badCiphertext);
return 'no_error';
} catch(e) {
return 'caught:' + e.name;
}
})()
"#,
"",
);
let result = r.expect("invalid ciphertext length should not crash");
assert!(!result.contains("no_error"), "Should throw for invalid ciphertext length: {}", result);
}
// 9. Multiple sequential eval calls β context reuse (plan v2)
#[test]
fn test_sequential_eval_state_persistence() {
let pool = pool();
// Step 1: Set a global variable via globalThis (explicit global assignment)
let r1 = pool.eval_js("p1", "globalThis.myState = { counter: 0, name: 'init' }; 'set'", "");
assert_eq!(r1.unwrap(), r#""set""#);
// Step 2: Modify the global state
let r2 = pool.eval_js("p1", "globalThis.myState.counter++; globalThis.myState.name = 'updated'; globalThis.myState.counter", "");
assert_eq!(r2.unwrap(), "1");
// Step 3: Read the state β should reflect all prior mutations
let r3 = pool.eval_js("p1", "globalThis.myState.counter + ':' + globalThis.myState.name", "");
assert_eq!(r3.unwrap(), r#""1:updated""#);
// Step 4: Different plugin should NOT see p1's state
let r4 = pool.eval_js("p2", "typeof globalThis.myState", "");
assert_eq!(r4.unwrap(), r#""undefined""#);
}
// 10. HMAC verify with wrong signature (plan v3)
#[test]
fn test_hmac_verify_wrong_signature_returns_false() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
const key = await crypto.subtle.importKey(
'raw',
new TextEncoder().encode('my-hmac-key'),
{ name: 'HMAC', hash: 'SHA-256' },
false,
['sign', 'verify']
);
const msg = new TextEncoder().encode('important message');
const realSig = await crypto.subtle.sign('HMAC', key, msg);
// Tamper: flip the first byte of the signature
const tamperedSig = new Uint8Array(realSig);
tamperedSig[0] = tamperedSig[0] ^ 0xFF;
const valid = await crypto.subtle.verify('HMAC', key, tamperedSig, msg);
return valid;
})()
"#,
"",
);
assert!(r.is_ok(), "HMAC verify with wrong sig should not crash: {:?}", r);
assert_eq!(r.unwrap(), "false", "Tampered signature should fail verification");
}
// 11. URL + crypto pipeline (plan v2 Β§15 β URL parsing + token generation)
#[test]
fn test_url_parse_and_hmac_signing_pipeline() {
let pool = pool();
// Simulates: parse URL, extract query params, use them as crypto input for HMAC
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
// Step 1: Parse URL and extract query params
const url = new URL('https://stream.example.com/manifest.m3u8?token=abc123&user=42');
const token = url.searchParams.get('token');
const user = url.searchParams.get('user');
// Step 2: Use extracted params as HMAC key and message
const key = await crypto.subtle.importKey(
'raw',
new TextEncoder().encode(token),
{ name: 'HMAC', hash: 'SHA-256' },
false,
['sign']
);
const sig = await crypto.subtle.sign('HMAC', key, new TextEncoder().encode(user));
const hex = Array.from(new Uint8Array(sig)).map(b => b.toString(16).padStart(2, '0')).join('');
// Step 3: Return the HMAC result + metadata
return JSON.stringify({ user: user, sigPrefix: hex.substring(0, 16) });
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("URL+crypto pipeline should not crash");
if result.starts_with("\"ERROR:") {
panic!("URL+crypto pipeline failed: {}", result);
}
// Should contain the user and a hex prefix
assert!(result.contains("42"), "Should contain user '42': {}", result);
assert!(result.contains("sigPrefix"), "Should contain sigPrefix: {}", result);
}
// 12. Production nsig with multiple calls (plan v2 Β§15 β function reuse)
#[test]
fn test_nsig_function_reuse_multiple_calls() {
let pool = pool();
let fn_source = r#"
function nsigDecode(args) {
const d = JSON.parse(args);
let s = d.n;
// Simple transform: reverse + swap first two chars
s = s.split('').reverse().join('');
if (s.length >= 2) {
const arr = s.split('');
const tmp = arr[0];
arr[0] = arr[1];
arr[1] = tmp;
s = arr.join('');
}
return s;
}
"#;
// Register once
pool.call_js_fn("p1", "nsigDecode", fn_source, r#"{"n":"test1"}"#).unwrap();
// Call many times with different inputs
let inputs = vec![
(r#"{"n":"hello"}"#, r#""olleh""#), // reverse β "olleh", swap 0β1 β "lloeh"
(r#"{"n":"abcde"}"#, r#""edcba""#), // reverse β "edcba", swap 0β1 β "decba"
(r#"{"n":"x"}"#, r#""x""#), // reverse β "x", no swap (length < 2)
(r#"{"n":"ab"}"#, r#""ba""#), // reverse β "ba", swap 0β1 β "ab"
(r#"{"n":"1234567890"}"#, r#""0987654321""#), // reverse β "0987654321", swap β "9087654321"
];
for (i, (input, _expected)) in inputs.iter().enumerate() {
let r = pool.call_js_fn("p1", "nsigDecode", fn_source, input);
assert!(r.is_ok(), "nsig call {} should succeed: {:?}", i, r);
}
}
// 13. TextEncoder + crypto.subtle.digest pipeline (plan v2 Β§15)
#[test]
fn test_text_encoder_sha256_pipeline() {
let pool = pool();
// The most common crypto pipeline used by streaming sites:
// encode a string β hash it with SHA-256 β verify the hash
let r = pool.eval_js(
"p1",
r#"
(async function() {
const message = 'streaming-video-url-token';
const encoded = new TextEncoder().encode(message);
const hashBuffer = await crypto.subtle.digest('SHA-256', encoded);
const hashArray = new Uint8Array(hashBuffer);
const hex = Array.from(hashArray).map(b => b.toString(16).padStart(2, '0')).join('');
// Verify hash is 64 hex chars (256 bits) and all lowercase hex
return hex.length === 64 && /^[0-9a-f]+$/.test(hex);
})()
"#,
"",
);
assert_eq!(r.unwrap(), "true");
}
// 14. eval_js with input containing JSON β structured input transformation (plan v2)
#[test]
fn test_eval_js_structured_json_input_transform() {
let pool = pool();
// Tests the real plugin pattern of receiving structured JSON data as input,
// parsing it, transforming it, and returning a result.
let json_input = r#"{"streams":[{"url":"https://cdn1.example.com/v1.m3u8","bitrate":4500},{"url":"https://cdn2.example.com/v2.m3u8","bitrate":8000}],"token":"abc123"}"#;
let r = pool.eval_js(
"p1",
r#"
const data = JSON.parse(input);
// Pick the highest bitrate stream
const best = data.streams.reduce((a, b) => a.bitrate > b.bitrate ? a : b);
// Return its URL with the token appended
best.url + '?token=' + data.token
"#,
json_input,
);
assert_eq!(
r.unwrap(),
r#""https://cdn2.example.com/v2.m3u8?token=abc123""#
);
}
// 15. AES-CBC with zero-filled key and IV edge case (plan v3)
#[test]
fn test_aes_cbc_zero_key_zero_iv_roundtrip() {
let pool = pool();
let r = pool.eval_js(
"p1",
r#"
(async function() {
try {
const keyData = new Uint8Array(16); // all zeros
const iv = new Uint8Array(16); // all zeros
const key = await crypto.subtle.importKey('raw', keyData, { name: 'AES-CBC' }, false, ['encrypt', 'decrypt']);
const plaintext = new TextEncoder().encode('edge-case-zero-key');
const encrypted = await crypto.subtle.encrypt({ name: 'AES-CBC', iv: iv }, key, plaintext);
const decrypted = await crypto.subtle.decrypt({ name: 'AES-CBC', iv: iv }, key, encrypted);
return new TextDecoder().decode(decrypted);
} catch(e) {
return 'ERROR:' + e.message;
}
})()
"#,
"",
);
let result = r.expect("AES-CBC zero-key roundtrip should not crash");
if result.starts_with("\"ERROR:") {
panic!("AES-CBC zero-key roundtrip failed: {}", result);
}
assert_eq!(result, r#""edge-case-zero-key""#);
}
}
|