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 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Tue, 18 Feb 2025 18:55:01 +0100
Subject: Modernize PHPUnit syntax
---
tests/Functional/Bug/Bug256Test.php | 5 +-
tests/Functional/Bug/Bug40Test.php | 5 +-
tests/Functional/Bug/Bug458Test.php | 4 +-
tests/Functional/Bug/Bug49Test.php | 5 +-
tests/Functional/Channel/ChannelConsumeTest.php | 6 +-
tests/Functional/Channel/ChannelTimeoutTest.php | 10 +-
tests/Functional/Channel/ChannelWaitTest.php | 19 +--
tests/Functional/Channel/DirectExchangeTest.php | 13 +-
tests/Functional/Channel/HeadersExchangeTest.php | 3 +-
tests/Functional/Channel/TopicExchangeTest.php | 13 +-
.../Connection/AMQPStreamConnectionTest.php | 3 +-
tests/Functional/Connection/ConnectionAuthTest.php | 3 +-
.../Functional/Connection/ConnectionClosedTest.php | 52 +++----
.../Connection/ConnectionCreationTest.php | 19 +--
.../Connection/ConnectionResourceLeakTest.php | 5 +-
.../Connection/ConnectionUnresponsiveTest.php | 12 +-
.../Heartbeat/PCNTLHeartbeatSenderTest.php | 27 ++--
.../Heartbeat/SIGHeartbeatSenderTest.php | 23 ++-
.../Connection/Heartbeat/SignalHeartbeatTest.php | 7 +-
tests/Functional/Connection/SSLConnectionTest.php | 19 ++-
tests/Functional/FileTransferTest.php | 5 +-
tests/Functional/Message/AMQPMessageTest.php | 9 +-
tests/Functional/ReconnectConnectionTest.php | 25 +---
tests/Functional/StreamIOTest.php | 9 +-
tests/Unit/Channel/AMQPChannelTest.php | 26 ++--
tests/Unit/Connection/AMQPConnectionConfigTest.php | 46 ++----
tests/Unit/Connection/AMQPSocketConnectionTest.php | 5 +-
tests/Unit/Connection/AMQPStreamConnectionTest.php | 7 +-
.../Unit/Connection/AbstractConnectionTestCase.php | 15 +-
tests/Unit/Connection/LazyConnectionTest.php | 13 +-
tests/Unit/Connection/LibraryPropertiesTest.php | 7 +-
tests/Unit/Helper/MiscHelperTest.php | 18 +--
tests/Unit/Helper/Protocol/Protocol091Test.php | 113 ++++-----------
tests/Unit/Message/AMQPMessageTest.php | 20 +--
tests/Unit/Wire/AMQPCollectionTest.php | 93 ++++---------
tests/Unit/Wire/AMQPDecimalTest.php | 17 +--
tests/Unit/Wire/AMQPWriterTest.php | 25 +---
tests/Unit/Wire/IO/SocketIOTest.php | 32 ++---
tests/Unit/Wire/IO/StreamIOTest.php | 9 +-
tests/Unit/WireTest.php | 154 ++++++---------------
40 files changed, 318 insertions(+), 583 deletions(-)
diff --git a/tests/Functional/Bug/Bug256Test.php b/tests/Functional/Bug/Bug256Test.php
index 6bbf07c..a8377f1 100644
--- a/tests/Functional/Bug/Bug256Test.php
+++ b/tests/Functional/Bug/Bug256Test.php
@@ -5,6 +5,7 @@ namespace PhpAmqpLib\Tests\Functional\Bug;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
use PhpAmqpLib\Wire\AMQPTable;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -62,9 +63,7 @@ class Bug256Test extends AbstractConnectionTestCase
}
}
- /**
- * @test
- */
+ #[Test]
public function frame_order()
{
$msg = new AMQPMessage('');
diff --git a/tests/Functional/Bug/Bug40Test.php b/tests/Functional/Bug/Bug40Test.php
index 18318b9..bfacd32 100644
--- a/tests/Functional/Bug/Bug40Test.php
+++ b/tests/Functional/Bug/Bug40Test.php
@@ -5,6 +5,7 @@ namespace PhpAmqpLib\Tests\Functional\Bug;
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -55,9 +56,7 @@ class Bug40Test extends TestCaseCompat
}
}
- /**
- * @test
- */
+ #[Test]
public function frame_order()
{
$msg = new AMQPMessage('test message');
diff --git a/tests/Functional/Bug/Bug458Test.php b/tests/Functional/Bug/Bug458Test.php
index 910afb1..7c6f9ce 100644
--- a/tests/Functional/Bug/Bug458Test.php
+++ b/tests/Functional/Bug/Bug458Test.php
@@ -4,6 +4,7 @@ namespace PhpAmqpLib\Tests\Functional\Bug;
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -35,9 +36,8 @@ class Bug458Test extends TestCaseCompat
/**
* This test will be skipped in Windows, because pcntl extension is not available there
- *
- * @test
*/
+ #[Test]
public function stream_select_interruption()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPTimeoutException::class);
diff --git a/tests/Functional/Bug/Bug49Test.php b/tests/Functional/Bug/Bug49Test.php
index 923beac..957e9a3 100644
--- a/tests/Functional/Bug/Bug49Test.php
+++ b/tests/Functional/Bug/Bug49Test.php
@@ -6,6 +6,7 @@ use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Exception\AMQPProtocolChannelException;
use PhpAmqpLib\Exception\AMQPProtocolException;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -41,9 +42,7 @@ class Bug49Test extends TestCaseCompat
}
}
- /**
- * @test
- */
+ #[Test]
public function declaration()
{
try {
diff --git a/tests/Functional/Channel/ChannelConsumeTest.php b/tests/Functional/Channel/ChannelConsumeTest.php
index 182dd1b..cb76d11 100644
--- a/tests/Functional/Channel/ChannelConsumeTest.php
+++ b/tests/Functional/Channel/ChannelConsumeTest.php
@@ -2,11 +2,11 @@
namespace PhpAmqpLib\Tests\Functional\Channel;
+use PHPUnit\Framework\Attributes\Test;
+
class ChannelConsumeTest extends ChannelTestCase
{
- /**
- * @test
- */
+ #[Test]
public function basic_consume_same_tag_throws_exception()
{
$this->expectException(\InvalidArgumentException::class);
diff --git a/tests/Functional/Channel/ChannelTimeoutTest.php b/tests/Functional/Channel/ChannelTimeoutTest.php
index eec40fc..5e7e21b 100644
--- a/tests/Functional/Channel/ChannelTimeoutTest.php
+++ b/tests/Functional/Channel/ChannelTimeoutTest.php
@@ -9,6 +9,9 @@ use PhpAmqpLib\Helper\MiscHelper;
use PhpAmqpLib\Wire\IO\AbstractIO;
use PhpAmqpLib\Wire\IO\StreamIO;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -52,15 +55,12 @@ class ChannelTimeoutTest extends TestCaseCompat
$this->connection = $this->getMockBuilder(AbstractConnection::class)
->setConstructorArgs(array(USER, PASS, '/', false, 'AMQPLAIN', null, 'en_US', $this->io, 0, 0, $channel_rpc_timeout))
->onlyMethods(array())
- ->getMockForAbstractClass();
+ ->getMock();
$this->channel = $this->connection->channel();
}
/**
- * @test
- *
- * @dataProvider provide_operations
* @param string $operation
* @param mixed[] $args
*
@@ -68,6 +68,8 @@ class ChannelTimeoutTest extends TestCaseCompat
* @covers \PhpAmqpLib\Channel\AMQPChannel::queue_declare
* @covers \PhpAmqpLib\Channel\AMQPChannel::confirm_select
*/
+ #[DataProvider('provide_operations')]
+ #[Test]
public function should_throw_exception_for_basic_operations_when_timeout_exceeded(string $operation, array $args)
{
$this->expectException(AMQPTimeoutException::class);
diff --git a/tests/Functional/Channel/ChannelWaitTest.php b/tests/Functional/Channel/ChannelWaitTest.php
index 9bfa99a..7647a79 100644
--- a/tests/Functional/Channel/ChannelWaitTest.php
+++ b/tests/Functional/Channel/ChannelWaitTest.php
@@ -8,6 +8,8 @@ use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Exception\AMQPNoDataException;
use PhpAmqpLib\Exception\AMQPTimeoutException;
use PhpAmqpLib\Message\AMQPMessage;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
/**
@@ -16,12 +18,12 @@ use PHPUnit\Framework\TestCase;
class ChannelWaitTest extends TestCase
{
/**
- * @test
* @small
* @group signals
- * @group nophpunit11
* @param callable $factory
*/
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function should_wait_until_signal_by_default($factory)
{
$this->deferSignal(0.5);
@@ -39,10 +41,10 @@ class ChannelWaitTest extends TestCase
}
/**
- * @test
* @group signals
* @covers AMQPIOReader::wait()
*/
+ #[Test]
public function should_wait_until_timeout_after_signal(): void
{
$factory = $this->channelFactory(true, 30, 15);
@@ -67,11 +69,11 @@ class ChannelWaitTest extends TestCase
}
/**
- * @test
* @small
- * @group nophpunit11
* @param callable $factory
*/
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function should_throw_timeout_exception($factory)
{
$this->expectException(AMQPTimeoutException::class);
@@ -82,11 +84,11 @@ class ChannelWaitTest extends TestCase
}
/**
- * @test
* @small
- * @group nophpunit11
* @param callable $factory
*/
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function should_return_instantly_non_blocking($factory)
{
$channel = $factory();
@@ -100,10 +102,9 @@ class ChannelWaitTest extends TestCase
}
/**
- * @test
* @small
- *
*/
+ #[Test]
public function should_call_handler_on_ack()
{
$receivedAck = false;
diff --git a/tests/Functional/Channel/DirectExchangeTest.php b/tests/Functional/Channel/DirectExchangeTest.php
index 11926bb..9f3c472 100644
--- a/tests/Functional/Channel/DirectExchangeTest.php
+++ b/tests/Functional/Channel/DirectExchangeTest.php
@@ -4,6 +4,7 @@ namespace PhpAmqpLib\Tests\Functional\Channel;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\Channel\ChannelTestCase;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -17,9 +18,7 @@ class DirectExchangeTest extends ChannelTestCase
$this->exchange->name = 'test_direct_exchange';
}
- /**
- * @test
- */
+ #[Test]
public function exchange_declare_with_closed_connection()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPChannelClosedException::class);
@@ -29,9 +28,7 @@ class DirectExchangeTest extends ChannelTestCase
$this->channel->exchange_declare($this->exchange->name, 'direct', false, false, false);
}
- /**
- * @test
- */
+ #[Test]
public function exchange_declare_with_closed_channel()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPChannelClosedException::class);
@@ -41,9 +38,7 @@ class DirectExchangeTest extends ChannelTestCase
$this->channel->exchange_declare($this->exchange->name, 'direct', false, false, false);
}
- /**
- * @test
- */
+ #[Test]
public function basic_consume_foo()
{
$this->channel->exchange_declare($this->exchange->name, 'direct', false, false, false);
diff --git a/tests/Functional/Channel/HeadersExchangeTest.php b/tests/Functional/Channel/HeadersExchangeTest.php
index 84ef346..d9e6981 100644
--- a/tests/Functional/Channel/HeadersExchangeTest.php
+++ b/tests/Functional/Channel/HeadersExchangeTest.php
@@ -4,6 +4,7 @@ namespace PhpAmqpLib\Tests\Functional\Channel;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Wire\AMQPTable;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -17,11 +18,11 @@ class HeadersExchangeTest extends ChannelTestCase
}
/**
- * @test
* @small
* @covers \PhpAmqpLib\Channel\AMQPChannel::queue_bind()
* @covers \PhpAmqpLib\Exchange\AMQPExchangeType
*/
+ #[Test]
public function consume_specific_headers()
{
list($queue1) = $this->channel->queue_declare();
diff --git a/tests/Functional/Channel/TopicExchangeTest.php b/tests/Functional/Channel/TopicExchangeTest.php
index 3d50a33..302411a 100644
--- a/tests/Functional/Channel/TopicExchangeTest.php
+++ b/tests/Functional/Channel/TopicExchangeTest.php
@@ -5,6 +5,7 @@ namespace PhpAmqpLib\Tests\Functional\Channel;
use PhpAmqpLib\Connection\AMQPSocketConnection;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\Channel\ChannelTestCase;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -18,9 +19,7 @@ class TopicExchangeTest extends ChannelTestCase
$this->exchange->name = 'test_topic_exchange';
}
- /**
- * @test
- */
+ #[Test]
public function exchange_declare_with_closed_connection()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPChannelClosedException::class);
@@ -30,9 +29,7 @@ class TopicExchangeTest extends ChannelTestCase
$this->channel->exchange_declare($this->exchange->name, 'topic');
}
- /**
- * @test
- */
+ #[Test]
public function exchange_declare_with_closed_channel()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPChannelClosedException::class);
@@ -42,9 +39,7 @@ class TopicExchangeTest extends ChannelTestCase
$this->channel->exchange_declare($this->exchange->name, 'topic');
}
- /**
- * @test
- */
+ #[Test]
public function publish_with_confirm()
{
$this->channel->exchange_declare($this->exchange->name, 'topic');
diff --git a/tests/Functional/Connection/AMQPStreamConnectionTest.php b/tests/Functional/Connection/AMQPStreamConnectionTest.php
index 9bcef17..103e9eb 100644
--- a/tests/Functional/Connection/AMQPStreamConnectionTest.php
+++ b/tests/Functional/Connection/AMQPStreamConnectionTest.php
@@ -4,14 +4,15 @@ namespace PhpAmqpLib\Tests\Functional\Connection;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
use PhpAmqpLib\Tests\Functional\Channel\ChannelWaitTest;
+use PHPUnit\Framework\Attributes\Test;
class AMQPStreamConnectionTest extends AbstractConnectionTestCase
{
/**
- * @test
* @group connection
* @covers \PhpAmqpLib\Wire\IO\StreamIO::select()
*/
+ #[Test]
public function connection_select_blocking_wo_timeout(): void
{
$connection = $this->connection_create('stream');
diff --git a/tests/Functional/Connection/ConnectionAuthTest.php b/tests/Functional/Connection/ConnectionAuthTest.php
index bd3c388..9ac0838 100644
--- a/tests/Functional/Connection/ConnectionAuthTest.php
+++ b/tests/Functional/Connection/ConnectionAuthTest.php
@@ -9,15 +9,16 @@ use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Exception\AMQPExceptionInterface;
use PhpAmqpLib\Exception\AMQPTimeoutException;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\Test;
class ConnectionAuthTest extends AbstractConnectionTestCase
{
/**
- * @test
* @group connection
* @group management
* @covers \PhpAmqpLib\Connection\AbstractConnection::__construct()
*/
+ #[Test]
public function plain_auth_passwordless_must_fail()
{
$username = 'test_' . rand();
diff --git a/tests/Functional/Connection/ConnectionClosedTest.php b/tests/Functional/Connection/ConnectionClosedTest.php
index b9b3b5d..c2b2f71 100644
--- a/tests/Functional/Connection/ConnectionClosedTest.php
+++ b/tests/Functional/Connection/ConnectionClosedTest.php
@@ -9,6 +9,8 @@ use PhpAmqpLib\Exception\AMQPHeartbeatMissedException;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
use PhpAmqpLib\Tests\Functional\ToxiProxy;
+use PHPUnit\Framework\Attributes\Test;
+use PHPUnit\Framework\Attributes\TestWith;
/**
* @group connection
@@ -17,14 +19,9 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
{
/**
* Try to wait for incoming data on blocked and closed connection.
- * @test
* @small
* @group connection
* @group proxy
- * @testWith ["stream", false]
- * ["stream", true]
- * ["socket", false]
- * ["socket", true]
* @covers \PhpAmqpLib\Channel\AbstractChannel::wait()
* @covers \PhpAmqpLib\Connection\AbstractConnection::wait_frame()
* @covers \PhpAmqpLib\Wire\IO\StreamIO::read()
@@ -33,6 +30,11 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
* @param string $type
* @param bool $keepalive
*/
+ #[Test]
+ #[TestWith(["stream", false])]
+ #[TestWith(["stream", true])]
+ #[TestWith(["socket", false])]
+ #[TestWith(["socket", true])]
public function must_throw_exception_broken_pipe_wait($type, $keepalive)
{
$proxy = $this->create_proxy();
@@ -68,19 +70,19 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
/**
* Try to write(publish) to blocked(unresponsive) or closed connection.
* Must throw correct exception for small and big data frames.
- * @test
* @small
* @group connection
* @group proxy
- * @testWith ["stream", 1024]
- * ["stream", 32768]
- * ["socket", 102400]
* @covers \PhpAmqpLib\Wire\IO\StreamIO::write()
* @covers \PhpAmqpLib\Wire\IO\SocketIO::write()
*
* @param string $type
* @param int $size
*/
+ #[Test]
+ #[TestWith(["stream", 1024])]
+ #[TestWith(["stream", 32768])]
+ #[TestWith(["socket", 102400])]
public function must_throw_exception_broken_pipe_write($type, $size)
{
$proxy = $this->create_proxy();
@@ -135,19 +137,19 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
/**
* Try to write(publish) to closed connection after missed heartbeat.
- * @test
* @medium
* @group connection
- * @testWith ["stream", 1024]
- * ["stream", 32768]
- * ["socket", 1024]
- * ["socket", 32768]
* @covers \PhpAmqpLib\Wire\IO\StreamIO::write()
* @covers \PhpAmqpLib\Wire\IO\SocketIO::write()
*
* @param string $type
* @param int $size
*/
+ #[Test]
+ #[TestWith(["stream", 1024])]
+ #[TestWith(["stream", 32768])]
+ #[TestWith(["socket", 1024])]
+ #[TestWith(["socket", 32768])]
public function must_throw_exception_missed_heartbeat($type, $size)
{
$channel = $this->channel_create($type, [
@@ -179,19 +181,19 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
/**
* When client constantly publish messages in async manner and broker does not send heartbeats.
- * @test
* @medium
* @group connection
- * @testWith ["stream", 1024]
- * ["stream", 32768]
- * ["socket", 1024]
- * ["socket", 32768]
* @covers \PhpAmqpLib\Wire\IO\StreamIO::write()
* @covers \PhpAmqpLib\Wire\IO\SocketIO::write()
*
* @param string $type
* @param int $size
*/
+ #[Test]
+ #[TestWith(["stream", 1024])]
+ #[TestWith(["stream", 32768])]
+ #[TestWith(["socket", 1024])]
+ #[TestWith(["socket", 32768])]
public function must_ignore_missing_heartbeat_after_recent_write($type, $size)
{
$channel = $this->channel_create($type, [
@@ -220,16 +222,16 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
/**
* Try to close and reopen connection after timeout.
*
- * @test
* @small
* @group connection
* @group proxy
- * @testWith ["stream"]
- * ["socket"]
* @covers \PhpAmqpLib\Wire\IO\StreamIO::write()
* @covers \PhpAmqpLib\Wire\IO\SocketIO::write()
* @param string $type
*/
+ #[Test]
+ #[TestWith(["stream"])]
+ #[TestWith(["socket"])]
public function must_throw_exception_after_connection_was_restored($type)
{
$timeout = 1;
@@ -283,17 +285,17 @@ class ConnectionClosedTest extends AbstractConnectionTestCase
/**
* Try to close and reopen connection with two channels.
*
- * @test
* @small
* @group connection
* @group proxy
- * @testWith ["stream"]
- * ["socket"]
* @covers \PhpAmqpLib\Wire\IO\StreamIO::write()
* @covers \PhpAmqpLib\Wire\IO\SocketIO::write()
*
* @param string $type
*/
+ #[Test]
+ #[TestWith(["stream"])]
+ #[TestWith(["socket"])]
public function must_throw_exception_after_connection_was_restored_with_two_channels($type)
{
$timeout = 1;
diff --git a/tests/Functional/Connection/ConnectionCreationTest.php b/tests/Functional/Connection/ConnectionCreationTest.php
index ada531b..4ee6bc9 100644
--- a/tests/Functional/Connection/ConnectionCreationTest.php
+++ b/tests/Functional/Connection/ConnectionCreationTest.php
@@ -7,6 +7,9 @@ use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
use PhpAmqpLib\Wire\AMQPBufferReader;
use PhpAmqpLib\Wire\AMQPWriter;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\Test;
+use PHPUnit\Framework\Attributes\TestWith;
/**
* @group connection
@@ -32,10 +35,10 @@ class ConnectionCreationTest extends AbstractConnectionTestCase
}
/**
- * @test
- * @dataProvider hostDataProvider
* @covers \PhpAmqpLib\Connection\AbstractConnection::create_connection()
*/
+ #[DataProvider('hostDataProvider')]
+ #[Test]
public function create_connection(array $hosts)
{
$conn = AMQPStreamConnection::create_connection($hosts);
@@ -43,15 +46,15 @@ class ConnectionCreationTest extends AbstractConnectionTestCase
}
/**
- * @test
- * @testWith [0, 0, 0]
- * [0, 10, 0]
- * [10, 0, 10]
- * [10, 20, 10]
- * [20, 10, 10]
* @covers \PhpAmqpLib\Connection\AbstractConnection::__construct()
* @covers \PhpAmqpLib\Connection\AbstractConnection::connection_tune()
*/
+ #[Test]
+ #[TestWith([0, 0, 0])]
+ #[TestWith([0, 10, 0])]
+ #[TestWith([10, 0, 10])]
+ #[TestWith([10, 20, 10])]
+ #[TestWith([20, 10, 10])]
public function heartbeat_negotiation(int $client, int $broker, int $expected)
{
$class = new \ReflectionClass(AbstractConnection::class);
diff --git a/tests/Functional/Connection/ConnectionResourceLeakTest.php b/tests/Functional/Connection/ConnectionResourceLeakTest.php
index 1d77e08..0c9a505 100644
--- a/tests/Functional/Connection/ConnectionResourceLeakTest.php
+++ b/tests/Functional/Connection/ConnectionResourceLeakTest.php
@@ -4,15 +4,14 @@ namespace Functional\Connection;
use PhpAmqpLib\Connection\AbstractConnection;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
*/
class ConnectionResourceLeakTest extends AbstractConnectionTestCase
{
- /**
- * @test
- */
+ #[Test]
public function too_many_resources_after_close()
{
$max = 2000;
diff --git a/tests/Functional/Connection/ConnectionUnresponsiveTest.php b/tests/Functional/Connection/ConnectionUnresponsiveTest.php
index ce3895e..3227d4b 100644
--- a/tests/Functional/Connection/ConnectionUnresponsiveTest.php
+++ b/tests/Functional/Connection/ConnectionUnresponsiveTest.php
@@ -5,6 +5,8 @@ namespace PhpAmqpLib\Tests\Functional\Connection;
use PhpAmqpLib\Exception;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\Test;
+use PHPUnit\Framework\Attributes\TestWith;
/**
* @group connection
@@ -13,14 +15,14 @@ class ConnectionUnresponsiveTest extends AbstractConnectionTestCase
{
/**
* Use mocked write functions to simulate completely blocked connections.
- * @test
* @small
- * @testWith ["stream"]
- * ["socket"]
* @covers \PhpAmqpLib\Wire\IO\StreamIO::write()
* @covers \PhpAmqpLib\Wire\IO\SocketIO::write()
* @param string $type
*/
+ #[Test]
+ #[TestWith(["stream"])]
+ #[TestWith(["socket"])]
public function must_throw_exception_on_completely_blocked_connection($type)
{
self::$blocked = false;
@@ -52,12 +54,12 @@ class ConnectionUnresponsiveTest extends AbstractConnectionTestCase
}
/**
- * @test
- * @testWith ["stream"]
* @group proxy
* @covers \PhpAmqpLib\Connection\AbstractConnection::connect()
* @param string $type
*/
+ #[Test]
+ #[TestWith(["stream"])]
public function must_throw_timeout_exception_on_missing_connect_response($type)
{
$proxy = $this->create_proxy();
diff --git a/tests/Functional/Connection/Heartbeat/PCNTLHeartbeatSenderTest.php b/tests/Functional/Connection/Heartbeat/PCNTLHeartbeatSenderTest.php
index d60503b..a6f5d53 100644
--- a/tests/Functional/Connection/Heartbeat/PCNTLHeartbeatSenderTest.php
+++ b/tests/Functional/Connection/Heartbeat/PCNTLHeartbeatSenderTest.php
@@ -6,13 +6,16 @@ use PhpAmqpLib\Connection\AbstractConnection;
use PhpAmqpLib\Connection\Heartbeat\PCNTLHeartbeatSender;
use PhpAmqpLib\Exception\AMQPRuntimeException;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\RequiresPhp;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
* @group signals
* @requires extension pcntl
- * @requires PHP 7.1
*/
+#[RequiresPhp('7.1')]
class PCNTLHeartbeatSenderTest extends AbstractConnectionTestCase
{
/** @var AbstractConnection */
@@ -51,9 +54,7 @@ class PCNTLHeartbeatSenderTest extends AbstractConnectionTestCase
$this->connection = null;
}
- /**
- * @test
- */
+ #[Test]
public function register_should_fail_after_unregister()
{
$this->expectException(AMQPRuntimeException::class);
@@ -63,9 +64,7 @@ class PCNTLHeartbeatSenderTest extends AbstractConnectionTestCase
$this->sender->register();
}
- /**
- * @test
- */
+ #[Test]
public function unregister_should_return_default_signal_handler()
{
$this->sender->register();
@@ -74,9 +73,7 @@ class PCNTLHeartbeatSenderTest extends AbstractConnectionTestCase
self::assertEquals(SIG_IGN, pcntl_signal_get_handler(SIGALRM));
}
- /**
- * @test
- */
+ #[Test]
public function heartbeat_should_interrupt_non_blocking_action()
{
$this->sender->register();
@@ -91,15 +88,13 @@ class PCNTLHeartbeatSenderTest extends AbstractConnectionTestCase
self::assertEquals(2, $continuation);
}
- /**
- * @test
- */
+ #[Test]
public function alarm_sig_should_be_registered_when_conn_is_writing()
{
$connection = $this->getMockBuilder(AbstractConnection::class)
->onlyMethods(['isConnected', 'getHeartbeat', 'isWriting', 'getLastActivity'])
->disableOriginalConstructor()
- ->getMockForAbstractClass();
+ ->getMock();
$connection->expects($this->exactly(3))->method('isConnected')->willReturn(true);
$connection->expects($this->once())->method('getHeartbeat')->willReturn($this->heartbeatTimeout);
@@ -122,15 +117,15 @@ class PCNTLHeartbeatSenderTest extends AbstractConnectionTestCase
}
/**
- * @test
* @covers \PhpAmqpLib\Connection\Heartbeat\AbstractSignalHeartbeatSender::handleSignal
*/
+ #[Test]
public function signal_handler_should_ignore_inactive_lazy_connections()
{
$connection = $this->getMockBuilder(AbstractConnection::class)
->onlyMethods(['isConnected', 'getHeartbeat', 'isWriting', 'getLastActivity', 'checkHeartBeat'])
->disableOriginalConstructor()
- ->getMockForAbstractClass();
+ ->getMock();
$connection
->expects(self::exactly(4))
->method('isConnected')
diff --git a/tests/Functional/Connection/Heartbeat/SIGHeartbeatSenderTest.php b/tests/Functional/Connection/Heartbeat/SIGHeartbeatSenderTest.php
index a1c0a30..e15e9b5 100644
--- a/tests/Functional/Connection/Heartbeat/SIGHeartbeatSenderTest.php
+++ b/tests/Functional/Connection/Heartbeat/SIGHeartbeatSenderTest.php
@@ -6,14 +6,17 @@ use PhpAmqpLib\Connection\AbstractConnection;
use PhpAmqpLib\Connection\Heartbeat\SIGHeartbeatSender;
use PhpAmqpLib\Exception\AMQPRuntimeException;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\RequiresPhp;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
* @group signals
* @group sig
* @requires extension pcntl
- * @requires PHP 7.1
*/
+#[RequiresPhp('7.1')]
class SIGHeartbeatSenderTest extends AbstractConnectionTestCase
{
/** @var AbstractConnection */
@@ -51,9 +54,7 @@ class SIGHeartbeatSenderTest extends AbstractConnectionTestCase
$this->connection = null;
}
- /**
- * @test
- */
+ #[Test]
public function register_should_fail_after_unregister()
{
$this->expectException(AMQPRuntimeException::class);
@@ -63,9 +64,7 @@ class SIGHeartbeatSenderTest extends AbstractConnectionTestCase
$this->sender->register();
}
- /**
- * @test
- */
+ #[Test]
public function unregister_should_return_default_signal_handler()
{
$this->sender->register();
@@ -74,9 +73,7 @@ class SIGHeartbeatSenderTest extends AbstractConnectionTestCase
self::assertEquals(SIG_IGN, pcntl_signal_get_handler($this->signal));
}
- /**
- * @test
- */
+ #[Test]
public function heartbeat_should_interrupt_non_blocking_action()
{
$this->sender->register();
@@ -92,15 +89,15 @@ class SIGHeartbeatSenderTest extends AbstractConnectionTestCase
}
/**
- * @test
* @runInSeparateProcess
*/
+ #[Test]
public function alarm_sig_should_be_registered_when_conn_is_writing()
{
$connection = $this->getMockBuilder(AbstractConnection::class)
->onlyMethods(['isConnected', 'getHeartbeat', 'isWriting', 'getLastActivity'])
->disableOriginalConstructor()
- ->getMockForAbstractClass();
+ ->getMock();
$connection->expects($this->atLeast(2))->method('isConnected')->willReturn(true);
$connection->expects($this->once())->method('getHeartbeat')->willReturn($this->heartbeatTimeout);
@@ -123,11 +120,11 @@ class SIGHeartbeatSenderTest extends AbstractConnectionTestCase
}
/**
- * @test
* @runInSeparateProcess
* @outputBuffering disabled
* @covers \PhpAmqpLib\Connection\Heartbeat\SIGHeartbeatSender::unregister()
*/
+ #[Test]
public function child_process_must_be_terminated_after_unregister()
{
$property = new \ReflectionProperty(get_class($this->sender), 'childPid');
diff --git a/tests/Functional/Connection/Heartbeat/SignalHeartbeatTest.php b/tests/Functional/Connection/Heartbeat/SignalHeartbeatTest.php
index 128b675..e4726f7 100644
--- a/tests/Functional/Connection/Heartbeat/SignalHeartbeatTest.php
+++ b/tests/Functional/Connection/Heartbeat/SignalHeartbeatTest.php
@@ -7,13 +7,15 @@ use PhpAmqpLib\Connection\AbstractConnection;
use PhpAmqpLib\Connection\Heartbeat\PCNTLHeartbeatSender;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\RequiresPhp;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
* @group signals
* @requires extension pcntl
- * @requires PHP 7.1
*/
+#[RequiresPhp('7.1')]
class SignalHeartbeatTest extends AbstractConnectionTestCase
{
/** @var AbstractConnection */
@@ -67,13 +69,12 @@ class SignalHeartbeatTest extends AbstractConnectionTestCase
}
/**
- * @test
- *
* @covers \PhpAmqpLib\Connection\Heartbeat\PCNTLHeartbeatSender::isSupported
* @covers \PhpAmqpLib\Connection\Heartbeat\PCNTLHeartbeatSender::register
* @covers \PhpAmqpLib\Connection\Heartbeat\PCNTLHeartbeatSender::registerListener
* @covers \PhpAmqpLib\Connection\Heartbeat\PCNTLHeartbeatSender::unregister
*/
+ #[Test]
public function process_message_longer_than_heartbeat_timeout()
{
$this->sender->register();
diff --git a/tests/Functional/Connection/SSLConnectionTest.php b/tests/Functional/Connection/SSLConnectionTest.php
index 831b3e4..5afed97 100644
--- a/tests/Functional/Connection/SSLConnectionTest.php
+++ b/tests/Functional/Connection/SSLConnectionTest.php
@@ -3,6 +3,9 @@
namespace PhpAmqpLib\Tests\Functional\Connection;
use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -10,11 +13,9 @@ use PhpAmqpLib\Tests\Functional\AbstractConnectionTestCase;
*/
class SSLConnectionTest extends AbstractConnectionTestCase
{
- /**
- * @test
- * @group nophpunit11
- * @dataProvider secure_connection_params
- */
+ #[DataProvider('secure_connection_params')]
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function secure_connection_default_params($options)
{
$port = $options['port'] ?? 5671;
@@ -27,11 +28,9 @@ class SSLConnectionTest extends AbstractConnectionTestCase
$connection->close();
}
- /**
- * @test
- * @group nophpunit11
- * @dataProvider secure_connection_params
- */
+ #[DataProvider('secure_connection_params')]
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function secure_connection_default_params_with_keepalive($options)
{
$options['keepalive'] = true;
diff --git a/tests/Functional/FileTransferTest.php b/tests/Functional/FileTransferTest.php
index 0be6087..aee381a 100644
--- a/tests/Functional/FileTransferTest.php
+++ b/tests/Functional/FileTransferTest.php
@@ -5,6 +5,7 @@ namespace PhpAmqpLib\Tests\Functional;
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -43,9 +44,7 @@ class FileTransferTest extends TestCaseCompat
}
}
- /**
- * @test
- */
+ #[Test]
public function send_file()
{
$this->messageBody = $this->generateRandomBytes(1024 * 1024);
diff --git a/tests/Functional/Message/AMQPMessageTest.php b/tests/Functional/Message/AMQPMessageTest.php
index 64479e8..85e7560 100644
--- a/tests/Functional/Message/AMQPMessageTest.php
+++ b/tests/Functional/Message/AMQPMessageTest.php
@@ -5,15 +5,14 @@ namespace PhpAmqpLib\Tests\Functional\Message;
use LogicException;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\Functional\Channel\ChannelTestCase;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
*/
class AMQPMessageTest extends ChannelTestCase
{
- /**
- * @test
- */
+ #[Test]
public function double_ack_throws_exception()
{
$sent = new AMQPMessage('test' . mt_rand());
@@ -38,9 +37,7 @@ class AMQPMessageTest extends ChannelTestCase
$received->ack();
}
- /**
- * @test
- */
+ #[Test]
public function publish_confirm_mode()
{
$message = new AMQPMessage('test' . mt_rand());
diff --git a/tests/Functional/ReconnectConnectionTest.php b/tests/Functional/ReconnectConnectionTest.php
index 038b0e1..9e16537 100644
--- a/tests/Functional/ReconnectConnectionTest.php
+++ b/tests/Functional/ReconnectConnectionTest.php
@@ -7,6 +7,7 @@ use PhpAmqpLib\Connection\AMQPLazySocketConnection;
use PhpAmqpLib\Connection\AMQPSocketConnection;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
/**
* @group connection
@@ -37,9 +38,7 @@ class ReconnectConnectionTest extends TestCaseCompat
}
}
- /**
- * @test
- */
+ #[Test]
public function lazy_connection_reconnect()
{
$this->connection = $this->getLazyConnection();
@@ -47,9 +46,7 @@ class ReconnectConnectionTest extends TestCaseCompat
$this->doTest();
}
- /**
- * @test
- */
+ #[Test]
public function lazy_connection_close_reconnect()
{
$this->connection = $this->getLazyConnection();
@@ -61,9 +58,7 @@ class ReconnectConnectionTest extends TestCaseCompat
$this->assertEquals($this->msgBody, $this->publishGet()->body);
}
- /**
- * @test
- */
+ #[Test]
public function socket_connection_reconnect()
{
$this->connection = $this->getSocketConnection();
@@ -71,9 +66,7 @@ class ReconnectConnectionTest extends TestCaseCompat
$this->doTest();
}
- /**
- * @test
- */
+ #[Test]
public function socket_connection_close_reconnect()
{
$this->connection = $this->getSocketConnection();
@@ -84,9 +77,7 @@ class ReconnectConnectionTest extends TestCaseCompat
$this->assertEquals($this->msgBody, $this->publishGet()->body);
}
- /**
- * @test
- */
+ #[Test]
public function lazy_socket_connection_close_reconnect()
{
$this->connection = $this->getLazySocketConnection();
@@ -97,9 +88,7 @@ class ReconnectConnectionTest extends TestCaseCompat
$this->assertEquals($this->msgBody, $this->publishGet()->body);
}
- /**
- * @test
- */
+ #[Test]
public function lazy_connection_socket_reconnect()
{
$this->connection = $this->getLazySocketConnection();
diff --git a/tests/Functional/StreamIOTest.php b/tests/Functional/StreamIOTest.php
index 006cd7f..80a0a31 100644
--- a/tests/Functional/StreamIOTest.php
+++ b/tests/Functional/StreamIOTest.php
@@ -3,6 +3,7 @@
namespace PhpAmqpLib\Tests\Functional;
use PhpAmqpLib\Connection\AMQPStreamConnection;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
/**
@@ -13,9 +14,7 @@ class StreamIOTest extends TestCase
/** @var array|null */
protected $last_error;
- /**
- * @test
- */
+ #[Test]
public function error_handler_is_restored_on_failed_connection()
{
$this->last_error = null;
@@ -49,9 +48,7 @@ class StreamIOTest extends TestCase
$this->assertSame('custom_error_handler', $previousErrorHandler[1]);
}
- /**
- * @test
- */
+ #[Test]
public function error_handler_is_restored_on_success()
{
set_error_handler(array($this, 'custom_error_handler'));
diff --git a/tests/Unit/Channel/AMQPChannelTest.php b/tests/Unit/Channel/AMQPChannelTest.php
index dda33e7..de9480a 100644
--- a/tests/Unit/Channel/AMQPChannelTest.php
+++ b/tests/Unit/Channel/AMQPChannelTest.php
@@ -9,14 +9,14 @@ use PhpAmqpLib\Tests\Unit\Test\BufferIO;
use PhpAmqpLib\Tests\Unit\Test\TestChannel;
use PhpAmqpLib\Tests\Unit\Test\TestConnection;
use PhpAmqpLib\Wire\AMQPWriter;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class AMQPChannelTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function blocked_connection_exception_on_publish()
{
$this->expectException(AMQPConnectionBlockedException::class);
@@ -27,11 +27,11 @@ class AMQPChannelTest extends TestCase
}
/**
- * @test
- * @dataProvider basic_consume_invalid_arguments_provider
* @param mixed[] $arguments
* @param string $expectedException
*/
+ #[DataProvider('basic_consume_invalid_arguments_provider')]
+ #[Test]
public function basic_consume_invalid_arguments($arguments, $expectedException)
{
$this->expectException($expectedException);
@@ -40,9 +40,7 @@ class AMQPChannelTest extends TestCase
$channel->basic_consume(...$arguments);
}
- /**
- * @test
- */
+ #[Test]
public function publish_batch_failed_connection(): void
{
$connection = new TestConnection('user', 'pass', '/', false, 'PLAIN', null, '', new BufferIO());
@@ -59,9 +57,7 @@ class AMQPChannelTest extends TestCase
$channel->publish_batch();
}
- /**
- * @test
- */
+ #[Test]
public function publish_batch_opened_connection(): void
{
$mock_builder = $this->getMockBuilder(TestConnection::class)
@@ -100,9 +96,7 @@ class AMQPChannelTest extends TestCase
$channel->publish_batch();
}
- /**
- * @test
- */
+ #[Test]
public function close_if_disconnected_false(): void
{
$mockBuilder = $this->getMockBuilder(TestConnection::class)
@@ -131,9 +125,7 @@ class AMQPChannelTest extends TestCase
$this->assertFalse($firstResult);
}
- /**
- * @test
- */
+ #[Test]
public function close_if_disconnected_true(): void
{
$mockBuilder = $this->getMockBuilder(TestConnection::class)
diff --git a/tests/Unit/Connection/AMQPConnectionConfigTest.php b/tests/Unit/Connection/AMQPConnectionConfigTest.php
index 7eb8ee6..71fd6a6 100644
--- a/tests/Unit/Connection/AMQPConnectionConfigTest.php
+++ b/tests/Unit/Connection/AMQPConnectionConfigTest.php
@@ -5,22 +5,20 @@ namespace PhpAmqpLib\Tests\Unit\Connection;
use PhpAmqpLib\Connection\AMQPConnectionConfig;
use PhpAmqpLib\Connection\AMQPConnectionFactory;
use PhpAmqpLib\Exception\AMQPIOException;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPConnectionConfigTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function check_default_connection_name()
{
$config = new AMQPConnectionConfig();
$this->assertEquals('', $config->getConnectionName());
}
- /**
- * @test
- */
+ #[Test]
public function set_get_connection_name()
{
$config = new AMQPConnectionConfig();
@@ -29,9 +27,7 @@ class AMQPConnectionConfigTest extends TestCase
$this->assertEquals($name, $config->getConnectionName());
}
- /**
- * @test
- */
+ #[Test]
public function external_auth_with_user_credentials()
{
$this->expectException(\InvalidArgumentException::class);
@@ -44,9 +40,7 @@ class AMQPConnectionConfigTest extends TestCase
$config->setLoginMethod(AMQPConnectionConfig::AUTH_EXTERNAL);
}
- /**
- * @test
- */
+ #[Test]
public function secure_with_incorrect_crypto_method()
{
$this->expectException(AMQPIOException::class);
@@ -73,10 +67,8 @@ class AMQPConnectionConfigTest extends TestCase
AMQPConnectionFactory::create($config);
}
- /**
- * @test
- * @group nophpunit11
- */
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function secure_with_correct_crypto_method()
{
$cert_dir = realpath(__DIR__ . "/../../certs");
@@ -103,10 +95,8 @@ class AMQPConnectionConfigTest extends TestCase
$this->assertEquals(true, $connection->isConnected());
}
- /**
- * @group nophpunit11
- * @test
- */
+ #[RequiresPhpunit('< 11')]
+ #[Test]
public function insecure_connection()
{
$config = new AMQPConnectionConfig();
@@ -126,9 +116,7 @@ class AMQPConnectionConfigTest extends TestCase
$this->assertEquals(true, $connection->isConnected());
}
- /**
- * @test
- */
+ #[Test]
public function check_invalid_port_number()
{
$this->expectException(\InvalidArgumentException::class);
@@ -138,9 +126,7 @@ class AMQPConnectionConfigTest extends TestCase
$config->setPort(-1);
}
- /**
- * @test
- */
+ #[Test]
public function check_invalid_login_method()
{
$this->expectException(\InvalidArgumentException::class);
@@ -149,9 +135,7 @@ class AMQPConnectionConfigTest extends TestCase
$config->setLoginMethod('INVALID_METHOD');
}
- /**
- * @test
- */
+ #[Test]
public function set_invalid_amqp_protocol()
{
$this->expectException(\InvalidArgumentException::class);
@@ -162,9 +146,7 @@ class AMQPConnectionConfigTest extends TestCase
$config->setAMQPProtocol($protocol);
}
- /**
- * @test
- */
+ #[Test]
public function set_invalid_stream_context()
{
$this->expectException(\InvalidArgumentException::class);
diff --git a/tests/Unit/Connection/AMQPSocketConnectionTest.php b/tests/Unit/Connection/AMQPSocketConnectionTest.php
index 6dd5ff5..d4c6ed4 100644
--- a/tests/Unit/Connection/AMQPSocketConnectionTest.php
+++ b/tests/Unit/Connection/AMQPSocketConnectionTest.php
@@ -3,13 +3,12 @@
namespace PhpAmqpLib\Tests\Unit\Connection;
use PhpAmqpLib\Connection\AMQPSocketConnection;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPSocketConnectionTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function channel_rpc_timeout_should_be_invalid_if_greater_than_read_write_timeout()
{
$this->expectException(\InvalidArgumentException::class);
diff --git a/tests/Unit/Connection/AMQPStreamConnectionTest.php b/tests/Unit/Connection/AMQPStreamConnectionTest.php
index 8ea2679..904bf06 100644
--- a/tests/Unit/Connection/AMQPStreamConnectionTest.php
+++ b/tests/Unit/Connection/AMQPStreamConnectionTest.php
@@ -4,13 +4,12 @@ namespace PhpAmqpLib\Tests\Unit\Connection;
use InvalidArgumentException;
use PhpAmqpLib\Connection\AMQPStreamConnection;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPStreamConnectionTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function channel_rpc_timeout_should_be_invalid_if_greater_than_read_write_timeout(): void
{
$this->expectException(InvalidArgumentException::class);
@@ -36,9 +35,9 @@ class AMQPStreamConnectionTest extends TestCase
}
/**
- * @test
* Generate deprecation warning if ssl_protocol is set
*/
+ #[Test]
public function trigger_deprecation_is_ssl_protocol_set(): void
{
$deprecationMessage = '';
diff --git a/tests/Unit/Connection/AbstractConnectionTestCase.php b/tests/Unit/Connection/AbstractConnectionTestCase.php
index 63f885f..c18bca1 100644
--- a/tests/Unit/Connection/AbstractConnectionTestCase.php
+++ b/tests/Unit/Connection/AbstractConnectionTestCase.php
@@ -9,14 +9,14 @@ use PhpAmqpLib\Connection\AMQPConnectionFactory;
use PhpAmqpLib\Exception\AMQPConnectionClosedException;
use PhpAmqpLib\Tests\Unit\Test\TestConnection;
use PhpAmqpLib\Wire\IO\AbstractIO;
+use PHPUnit\Framework\Attributes\RequiresPhpunit;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class AbstractConnectionTestCase extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function connection_argument_io_not_empty(): void
{
$this->expectException(\InvalidArgumentException::class);
@@ -25,9 +25,7 @@ class AbstractConnectionTestCase extends TestCase
new TestConnection('', '');
}
- /**
- * @test
- */
+ #[Test]
public function connection_login_method_external(): void
{
$config = new AMQPConnectionConfig();
@@ -45,9 +43,8 @@ class AbstractConnectionTestCase extends TestCase
self::assertEquals($response, $property->getValue($connection));
}
- /**
- * @test
- */
+ #[RequiresPhpunit('< 12')]
+ #[Test]
public function close_channels_if_disconnected(): void
{
$ioMock = $this->createMock(AbstractIO::class);
diff --git a/tests/Unit/Connection/LazyConnectionTest.php b/tests/Unit/Connection/LazyConnectionTest.php
index 08adb51..c026536 100644
--- a/tests/Unit/Connection/LazyConnectionTest.php
+++ b/tests/Unit/Connection/LazyConnectionTest.php
@@ -7,12 +7,11 @@ use PhpAmqpLib\Connection\AMQPLazySocketConnection;
use PhpAmqpLib\Connection\AMQPLazySSLConnection;
use PhpAmqpLib\Connection\AMQPSocketConnection;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
class LazyConnectionTest extends TestCaseCompat
{
- /**
- * @test
- */
+ #[Test]
public function lazy_stream_connection_multiple_hosts_unsupported()
{
$this->expectException(\RuntimeException::class);
@@ -28,9 +27,7 @@ class LazyConnectionTest extends TestCaseCompat
);
}
- /**
- * @test
- */
+ #[Test]
public function lazy_socket_connection_multiple_hosts_unsupported()
{
$this->expectException(\RuntimeException::class);
@@ -46,9 +43,7 @@ class LazyConnectionTest extends TestCaseCompat
);
}
- /**
- * @test
- */
+ #[Test]
public function lazy_ssl_connection_multiple_hosts_unsupported()
{
$this->expectException(\RuntimeException::class);
diff --git a/tests/Unit/Connection/LibraryPropertiesTest.php b/tests/Unit/Connection/LibraryPropertiesTest.php
index ebb015a..e95b526 100644
--- a/tests/Unit/Connection/LibraryPropertiesTest.php
+++ b/tests/Unit/Connection/LibraryPropertiesTest.php
@@ -3,6 +3,7 @@
namespace PhpAmqpLib\Tests\Unit\Connection;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
/**
* Test the library properties
@@ -19,9 +20,8 @@ class LibraryPropertiesTest extends TestCaseCompat
* "platform", giving the name of the operating system,
* "copyright", if appropriate, and
* "information", giving other general information.
- *
- * @test
*/
+ #[Test]
public function requiredProperties()
{
$connection = $this->getMockBuilder('\PhpAmqpLib\Connection\AMQPStreamConnection')
@@ -45,9 +45,8 @@ class LibraryPropertiesTest extends TestCaseCompat
/**
* AMQPWriter::table_write expects values given with data types and values
* ensure each property is an array with the first value being a data type
- *
- * @test
*/
+ #[Test]
public function propertyTypes()
{
$connection = $this->getMockBuilder('\PhpAmqpLib\Connection\AMQPStreamConnection')
diff --git a/tests/Unit/Helper/MiscHelperTest.php b/tests/Unit/Helper/MiscHelperTest.php
index bf28eca..adeabd2 100644
--- a/tests/Unit/Helper/MiscHelperTest.php
+++ b/tests/Unit/Helper/MiscHelperTest.php
@@ -4,30 +4,26 @@ namespace PhpAmqpLib\Tests\Unit\Helper;
use PhpAmqpLib\Helper\MiscHelper;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\Test;
class MiscHelperTest extends TestCaseCompat
{
- /**
- * @dataProvider splitSecondsMicrosecondsData
- * @test
- */
+ #[DataProvider('splitSecondsMicrosecondsData')]
+ #[Test]
public function split_seconds_microseconds($input, $expected)
{
self::assertEquals($expected, MiscHelper::splitSecondsMicroseconds($input));
}
- /**
- * @dataProvider hexdumpData
- * @test
- */
+ #[DataProvider('hexdumpData')]
+ #[Test]
public function hexdump($args, $expected)
{
self::assertPattern($expected, MiscHelper::hexdump($args[0], $args[1], $args[2], $args[3]));
}
- /**
- * @test
- */
+ #[Test]
public function method_sig()
{
self::assertEquals('test', MiscHelper::methodSig('test'));
diff --git a/tests/Unit/Helper/Protocol/Protocol091Test.php b/tests/Unit/Helper/Protocol/Protocol091Test.php
index 552b1c6..d1916a5 100644
--- a/tests/Unit/Helper/Protocol/Protocol091Test.php
+++ b/tests/Unit/Helper/Protocol/Protocol091Test.php
@@ -4,6 +4,7 @@ namespace PhpAmqpLib\Tests\Unit\Helper\Protocol;
use PhpAmqpLib\Helper\Protocol\Protocol091;
use PhpAmqpLib\Tests\TestCaseCompat;
+use PHPUnit\Framework\Attributes\Test;
class Protocol091Test extends TestCaseCompat
{
@@ -14,9 +15,7 @@ class Protocol091Test extends TestCaseCompat
$this->protocol091 = new Protocol091();
}
- /**
- * @test
- */
+ #[Test]
public function channel_close()
{
$expected = "\x00\x00\x00\x00\x00\x00\x00";
@@ -25,9 +24,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function channel_close_error()
{
$expected = "\x00\x00\x05error\x00\x00\x00\x00";
@@ -39,9 +36,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function channel_flow_true()
{
$expected = "\x01";
@@ -50,9 +45,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function channel_flow_false()
{
$expected = "\x00";
@@ -61,9 +54,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function channel_open_foo()
{
$expected = "\x03foo";
@@ -72,9 +63,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function channel_open_empty_string()
{
$expected = "\x00";
@@ -83,9 +72,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function access_request()
{
$expected = "\x01/\x00";
@@ -94,9 +81,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function access_request_foo()
{
$expected = "\x04/foo\x00";
@@ -112,9 +97,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function exchange_declare()
{
$expected = "\x00\x00\x03foo\x06direct\x00\x00\x00\x00\x00";
@@ -133,9 +116,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function exchange_delete()
{
$expected = "\x00\x00\x03foo\x00";
@@ -144,9 +125,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function exchange_bind()
{
$expected = "\x00\x00\x03foo\x03bar\x03baz\x00\x00\x00\x00\x00";
@@ -155,9 +134,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function exchange_unbind()
{
$expected = "\x00\x00\x03foo\x03bar\x03baz\x00\x00\x00\x00\x00";
@@ -166,9 +143,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function queue_bind()
{
$expected = "\x00\x00\x03foo\x03bar\x03baz\x00\x00\x00\x00\x00";
@@ -177,9 +152,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function queue_unbind()
{
$expected = "\x00\x00\x03foo\x03bar\x03baz\x00\x00\x00\x00";
@@ -188,9 +161,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function queue_declare()
{
$expected = "\x00\x00\x03foo\x00\x00\x00\x00\x00";
@@ -208,9 +179,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function queue_delete()
{
$expected = "\x00\x00\x03foo\x00";
@@ -219,9 +188,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function queue_purge()
{
$expected = "\x00\x00\x03foo\x00";
@@ -230,9 +197,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_ack()
{
$expected = "\x00\x00\x00\x00\x00\x00\x00\x01\x00";
@@ -241,9 +206,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_cancel()
{
$expected = "\x03foo\x00";
@@ -252,9 +215,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_consume()
{
$expected = "\x00\x00\x03foo\x03bar\x00\x00\x00\x00\x00";
@@ -271,9 +232,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_get()
{
$expected = "\x00\x00\x03foo\x00";
@@ -282,9 +241,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_publish()
{
$expected = "\x00\x00\x03foo\x03bar\x00";
@@ -293,9 +250,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_qos()
{
$expected = "\x00\x00\x00\xA\x00\x01\x00";
@@ -304,9 +259,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_recover_true()
{
$expected = "\x01";
@@ -315,9 +268,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_recover_false()
{
$expected = "\x00";
@@ -326,9 +277,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_reject_1_true()
{
$expected = "\x00\x00\x00\x00\x00\x00\x00\x01\x01";
@@ -337,9 +286,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function basic_reject_1_false()
{
$expected = "\x00\x00\x00\x00\x00\x00\x00\x01\x00";
@@ -348,9 +295,7 @@ class Protocol091Test extends TestCaseCompat
$this->assertEquals($expected, $args->getvalue());
}
- /**
- * @test
- */
+ #[Test]
public function connection_blocked()
{
$expected = 'Low on memory';
diff --git a/tests/Unit/Message/AMQPMessageTest.php b/tests/Unit/Message/AMQPMessageTest.php
index 2d5b0a7..6563673 100644
--- a/tests/Unit/Message/AMQPMessageTest.php
+++ b/tests/Unit/Message/AMQPMessageTest.php
@@ -5,14 +5,14 @@ namespace PhpAmqpLib\Tests\Unit\Message;
use PhpAmqpLib\Exception\AMQPEmptyDeliveryTagException;
use PhpAmqpLib\Message\AMQPMessage;
use PhpAmqpLib\Wire\AMQPBufferReader;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPMessageTest extends TestCase
{
- /**
- * @dataProvider propertiesData
- * @test
- */
+ #[DataProvider('propertiesData')]
+ #[Test]
public function serialize_properties(array $expected, array $properties)
{
$reader = new AMQPBufferReader('');
@@ -30,9 +30,7 @@ class AMQPMessageTest extends TestCase
$this->assertEquals($expected, $props);
}
- /**
- * @test
- */
+ #[Test]
public function get_and_set_body()
{
$message = new AMQPMessage('');
@@ -45,9 +43,7 @@ class AMQPMessageTest extends TestCase
$this->assertEquals($message->getContentEncoding(), 'shortstr');
}
- /**
- * @test
- */
+ #[Test]
public function delivery_tag_immutable()
{
$message = new AMQPMessage();
@@ -58,9 +54,7 @@ class AMQPMessageTest extends TestCase
$message->setDeliveryTag(1231);
}
- /**
- * @test
- */
+ #[Test]
public function delivery_tag_empty()
{
$this->expectException(AMQPEmptyDeliveryTagException::class);
diff --git a/tests/Unit/Wire/AMQPCollectionTest.php b/tests/Unit/Wire/AMQPCollectionTest.php
index 0247fe1..255709c 100644
--- a/tests/Unit/Wire/AMQPCollectionTest.php
+++ b/tests/Unit/Wire/AMQPCollectionTest.php
@@ -6,13 +6,12 @@ use PhpAmqpLib\Exception\AMQPInvalidArgumentException;
use PhpAmqpLib\Exception\AMQPOutOfBoundsException;
use PhpAmqpLib\Exception\AMQPOutOfRangeException;
use PhpAmqpLib\Wire;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPCollectionTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function encode_080()
{
$this->setProtoVersion(Wire\Constants080::VERSION);
@@ -106,9 +105,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals(true, $eData[9][1] instanceof Wire\AMQPTable);
}
- /**
- * @test
- */
+ #[Test]
public function encode_091()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -205,9 +202,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals(true, $eData[9][1] instanceof Wire\AMQPArray);
}
- /**
- * @test
- */
+ #[Test]
public function encode_rabbit()
{
$this->setProtoVersion(Wire\AMQPAbstractCollection::PROTOCOL_RBT);
@@ -304,18 +299,14 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals(true, $eData[9][1] instanceof Wire\AMQPArray);
}
- /**
- * @test
- */
+ #[Test]
public function encode_unknown_data_type()
{
$this->expectException(AMQPOutOfBoundsException::class);
new Wire\AMQPArray(array(new \stdClass()));
}
- /**
- * @test
- */
+ #[Test]
public function push_unsupported_data_type_080()
{
$this->expectException(AMQPOutOfRangeException::class);
@@ -326,9 +317,7 @@ class AMQPCollectionTest extends TestCase
$a->push(12345, Wire\AMQPAbstractCollection::T_INT_LONGLONG);
}
- /**
- * @test
- */
+ #[Test]
public function push_unsupported_data_type_091()
{
$this->expectException(AMQPOutOfRangeException::class);
@@ -339,9 +328,7 @@ class AMQPCollectionTest extends TestCase
$a->push(12345, 'foo');
}
- /**
- * @test
- */
+ #[Test]
public function push_unsupported_data_type_rabbit()
{
$this->expectException(AMQPOutOfRangeException::class);
@@ -352,9 +339,7 @@ class AMQPCollectionTest extends TestCase
$a->push(12345, Wire\AMQPAbstractCollection::T_INT_LONGLONG_U);
}
- /**
- * @test
- */
+ #[Test]
public function push_with_type()
{
$a = new Wire\AMQPArray();
@@ -397,9 +382,7 @@ class AMQPCollectionTest extends TestCase
);
}
- /**
- * @test
- */
+ #[Test]
public function conflicting_field_symbols()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -443,9 +426,7 @@ class AMQPCollectionTest extends TestCase
);
}
- /**
- * @test
- */
+ #[Test]
public function set_empty_key()
{
$this->expectException(AMQPInvalidArgumentException::class);
@@ -456,9 +437,7 @@ class AMQPCollectionTest extends TestCase
$t->set('', 'foo');
}
- /**
- * @test
- */
+ #[Test]
public function set_long_key()
{
$this->expectException(AMQPInvalidArgumentException::class);
@@ -469,9 +448,7 @@ class AMQPCollectionTest extends TestCase
$t->set(str_repeat('a', 129), 'bar');
}
- /**
- * @test
- */
+ #[Test]
public function push_mismatched_type()
{
$this->expectException(AMQPInvalidArgumentException::class);
@@ -481,9 +458,7 @@ class AMQPCollectionTest extends TestCase
$a->push(new Wire\AMQPArray(), Wire\AMQPArray::T_TABLE);
}
- /**
- * @test
- */
+ #[Test]
public function push_raw_array_with_type()
{
$this->expectException(AMQPInvalidArgumentException::class);
@@ -494,9 +469,7 @@ class AMQPCollectionTest extends TestCase
$a->push(array(), Wire\AMQPArray::T_ARRAY);
}
- /**
- * @test
- */
+ #[Test]
public function push_raw_table_with_type()
{
$this->expectException(AMQPInvalidArgumentException::class);
@@ -507,9 +480,7 @@ class AMQPCollectionTest extends TestCase
$a->push(array(), Wire\AMQPArray::T_TABLE);
}
- /**
- * @test
- */
+ #[Test]
public function push_float_with_decimal_type()
{
$this->expectException(AMQPInvalidArgumentException::class);
@@ -520,9 +491,7 @@ class AMQPCollectionTest extends TestCase
$a->push(35.2, Wire\AMQPArray::T_DECIMAL);
}
- /**
- * @test
- */
+ #[Test]
public function array_round_trip_080()
{
$this->setProtoVersion(Wire\Constants080::VERSION);
@@ -531,9 +500,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals(array_values($this->getTestDataCmp080()), $a->getNativeData());
}
- /**
- * @test
- */
+ #[Test]
public function array_round_trip_091()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -542,9 +509,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals(array_values($this->getTestDataCmp()), $a->getNativeData());
}
- /**
- * @test
- */
+ #[Test]
public function array_round_trip_rabbit()
{
$this->setProtoVersion(Wire\AMQPAbstractCollection::PROTOCOL_RBT);
@@ -553,9 +518,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals(array_values($this->getTestDataCmp()), $a->getNativeData());
}
- /**
- * @test
- */
+ #[Test]
public function table_round_trip_080()
{
$this->setProtoVersion(Wire\Constants080::VERSION);
@@ -564,9 +527,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals($this->getTestDataCmp080(), $a->getNativeData());
}
- /**
- * @test
- */
+ #[Test]
public function table_round_trip_091()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -575,9 +536,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals($this->getTestDataCmp(), $a->getNativeData());
}
- /**
- * @test
- */
+ #[Test]
public function table_round_trip_rabbit()
{
$this->setProtoVersion(Wire\AMQPAbstractCollection::PROTOCOL_RBT);
@@ -586,9 +545,7 @@ class AMQPCollectionTest extends TestCase
$this->assertEquals($this->getTestDataCmp(), $a->getNativeData());
}
- /**
- * @test
- */
+ #[Test]
public function iterator()
{
$d = [
@@ -645,9 +602,7 @@ class AMQPCollectionTest extends TestCase
}
}
- /**
- * @test
- */
+ #[Test]
public function work_with_table_as_array()
{
$a = new Wire\AMQPTable();
diff --git a/tests/Unit/Wire/AMQPDecimalTest.php b/tests/Unit/Wire/AMQPDecimalTest.php
index 15aab25..f934348 100644
--- a/tests/Unit/Wire/AMQPDecimalTest.php
+++ b/tests/Unit/Wire/AMQPDecimalTest.php
@@ -3,13 +3,12 @@
namespace PhpAmqpLib\Tests\Unit\Wire;
use PhpAmqpLib\Wire\AMQPDecimal;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPDecimalTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function as_bc_value()
{
$decimal = new AMQPDecimal(100, 2);
@@ -17,9 +16,7 @@ class AMQPDecimalTest extends TestCase
$this->assertEquals($decimal->asBCvalue(), 1);
}
- /**
- * @test
- */
+ #[Test]
public function get_n()
{
$decimal = new AMQPDecimal(100, 2);
@@ -27,9 +24,7 @@ class AMQPDecimalTest extends TestCase
$this->assertEquals($decimal->getN(), 100);
}
- /**
- * @test
- */
+ #[Test]
public function get_e()
{
$decimal = new AMQPDecimal(100, 2);
@@ -37,9 +32,7 @@ class AMQPDecimalTest extends TestCase
$this->assertEquals($decimal->getE(), 2);
}
- /**
- * @test
- */
+ #[Test]
public function negative_value()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPOutOfBoundsException::class);
diff --git a/tests/Unit/Wire/AMQPWriterTest.php b/tests/Unit/Wire/AMQPWriterTest.php
index 932851c..4055792 100644
--- a/tests/Unit/Wire/AMQPWriterTest.php
+++ b/tests/Unit/Wire/AMQPWriterTest.php
@@ -9,12 +9,11 @@ use PhpAmqpLib\Wire\AMQPTable;
use PhpAmqpLib\Wire\AMQPWriter;
use PhpAmqpLib\Tests\TestCaseCompat;
use PhpAmqpLib\Wire\AMQPAbstractCollection;
+use PHPUnit\Framework\Attributes\Test;
class AMQPWriterTest extends TestCaseCompat
{
- /**
- * @test
- */
+ #[Test]
public function write_array()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -32,9 +31,7 @@ class AMQPWriterTest extends TestCaseCompat
$this->assertEquals($expected, $out);
}
- /**
- * @test
- */
+ #[Test]
public function write_AMQP_array()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -54,9 +51,7 @@ class AMQPWriterTest extends TestCaseCompat
);
}
- /**
- * @test
- */
+ #[Test]
public function write_table()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
@@ -80,9 +75,7 @@ class AMQPWriterTest extends TestCaseCompat
$this->assertEquals($expected, $out);
}
- /**
- * @test
- */
+ #[Test]
public function write_AMQP_table()
{
$t = new AMQPTable();
@@ -108,9 +101,7 @@ class AMQPWriterTest extends TestCaseCompat
);
}
- /**
- * @test
- */
+ #[Test]
public function write_table_with_invalid_type()
{
$this->expectException(AMQPOutOfRangeException::class);
@@ -122,9 +113,7 @@ class AMQPWriterTest extends TestCaseCompat
]);
}
- /**
- * @test
- */
+ #[Test]
public function write_table_with_null_strings()
{
$this->setProtoVersion(Wire\Constants091::VERSION);
diff --git a/tests/Unit/Wire/IO/SocketIOTest.php b/tests/Unit/Wire/IO/SocketIOTest.php
index 7226ab4..836860f 100644
--- a/tests/Unit/Wire/IO/SocketIOTest.php
+++ b/tests/Unit/Wire/IO/SocketIOTest.php
@@ -4,6 +4,8 @@ namespace PhpAmqpLib\Tests\Unit\Wire\IO;
use PhpAmqpLib\Exception\AMQPConnectionClosedException;
use PhpAmqpLib\Wire\IO\SocketIO;
+use PHPUnit\Framework\Attributes\Depends;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
/**
@@ -11,9 +13,7 @@ use PHPUnit\Framework\TestCase;
*/
class SocketIOTest extends TestCase
{
- /**
- * @test
- */
+ #[Test]
public function connect()
{
$socketIO = new SocketIO(HOST, PORT, 20, true, 20, 9);
@@ -24,9 +24,7 @@ class SocketIOTest extends TestCase
return $socketIO;
}
- /**
- * @test
- */
+ #[Test]
public function connect_ipv6()
{
$socketIO = new SocketIO(HOST6, PORT, 20, true, 20, 9);
@@ -35,9 +33,7 @@ class SocketIOTest extends TestCase
$this->assertEquals(0, $ready);
}
- /**
- * @test
- */
+ #[Test]
public function connect_with_invalid_credentials()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPIOException::class);
@@ -49,28 +45,26 @@ class SocketIOTest extends TestCase
// TODO FUTURE re-enable test
// php-amqplib/php-amqplib#648, php-amqplib/php-amqplib#666
// /**
- // * @test
// * @expectedException \InvalidArgumentException
// * @expectedExceptionMessage read_timeout must be greater than 2x the heartbeat
// */
+ // #[Test]
// public function read_timeout_must_be_greater_than_2x_the_heartbeat()
// {
// new SocketIO('localhost', 5512, 1);
// }
// /**
- // * @test
// * @expectedException \InvalidArgumentException
// * @expectedExceptionMessage send_timeout must be greater than 2x the heartbeat
// */
+ // #[Test]
// public function send_timeout_must_be_greater_than_2x_the_heartbeat()
// {
// new SocketIO('localhost', '5512', 30, true, 20, 10);
// }
- /**
- * @test
- * @depends connect
- */
+ #[Test]
+ #[Depends('connect')]
public function read_when_closed(SocketIO $socketIO)
{
$this->expectException(\PhpAmqpLib\Exception\AMQPSocketException::class);
@@ -80,10 +74,8 @@ class SocketIOTest extends TestCase
$socketIO->read(1);
}
- /**
- * @test
- * @depends connect
- */
+ #[Test]
+ #[Depends('connect')]
public function write_when_closed(SocketIO $socketIO)
{
$this->expectException(\PhpAmqpLib\Exception\AMQPSocketException::class);
@@ -92,10 +84,10 @@ class SocketIOTest extends TestCase
}
/**
- * @test
* @group linux
* @requires OS Linux
*/
+ #[Test]
public function select_must_throw_io_exception()
{
$this->expectException(AMQPConnectionClosedException::class);
diff --git a/tests/Unit/Wire/IO/StreamIOTest.php b/tests/Unit/Wire/IO/StreamIOTest.php
index 0df94d2..becd120 100644
--- a/tests/Unit/Wire/IO/StreamIOTest.php
+++ b/tests/Unit/Wire/IO/StreamIOTest.php
@@ -4,6 +4,7 @@ namespace PhpAmqpLib\Tests\Unit\Wire\IO;
use PhpAmqpLib\Exception\AMQPConnectionClosedException;
use PhpAmqpLib\Wire\IO\StreamIO;
+use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
/**
@@ -12,10 +13,10 @@ use PHPUnit\Framework\TestCase;
class StreamIOTest extends TestCase
{
/**
- * @test
* @expectedException \InvalidArgumentException
* @expectedExceptionMessage read_write_timeout must be at least 2x the heartbeat
* TODO FUTURE re-enable this test
+ #[Test]
public function read_write_timeout_must_be_at_least_2x_the_heartbeat()
{
new StreamIO(
@@ -31,10 +32,10 @@ class StreamIOTest extends TestCase
*/
/**
- * @test
* @group linux
* @requires OS Linux
*/
+ #[Test]
public function select_must_throw_io_exception()
{
$this->expectException(AMQPConnectionClosedException::class);
@@ -50,9 +51,7 @@ class StreamIOTest extends TestCase
$stream->select(0, 0);
}
- /**
- * @test
- */
+ #[Test]
public function connect_ipv6()
{
$streamIO = new StreamIO(HOST6, PORT, 0.1, 0.1, null, false, 0);
diff --git a/tests/Unit/WireTest.php b/tests/Unit/WireTest.php
index e7aecc5..5ff09a3 100644
--- a/tests/Unit/WireTest.php
+++ b/tests/Unit/WireTest.php
@@ -8,6 +8,8 @@ use PhpAmqpLib\Wire\AMQPArray;
use PhpAmqpLib\Wire\AMQPBufferReader;
use PhpAmqpLib\Wire\AMQPTable;
use PhpAmqpLib\Wire\AMQPWriter;
+use PHPUnit\Framework\Attributes\DataProvider;
+use PHPUnit\Framework\Attributes\Test;
class WireTest extends TestCaseCompat
{
@@ -17,72 +19,56 @@ class WireTest extends TestCaseCompat
$this->setProtoVersion(AMQPAbstractCollection::PROTOCOL_RBT);
}
- /**
- * @dataProvider bitWrData
- * @test
- */
+ #[DataProvider('bitWrData')]
+ #[Test]
public function bit_wr($value)
{
$this->wr($value, 'write_bit', 'read_bit');
}
- /**
- * @dataProvider octetWrData
- * @test
- */
+ #[DataProvider('octetWrData')]
+ #[Test]
public function octet_wr($value)
{
$this->wr($value, 'write_octet', 'read_octet');
}
- /**
- * @test
- */
+ #[Test]
public function octet_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(-1, 'write_octet', 'read_octet');
}
- /**
- * @test
- */
+ #[Test]
public function octet_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(256, 'write_octet', 'read_octet');
}
- /**
- * @dataProvider signedOctetWrData
- * @test
- */
+ #[DataProvider('signedOctetWrData')]
+ #[Test]
public function signed_octet_wr($value)
{
$this->wr($value, 'write_signed_octet', 'read_signed_octet');
}
- /**
- * @test
- */
+ #[Test]
public function signed_octet_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(-129, 'write_signed_octet', 'read_signed_octet');
}
- /**
- * @test
- */
+ #[Test]
public function signed_octet_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(128, 'write_signed_octet', 'read_signed_octet');
}
- /**
- * @test
- */
+ #[Test]
public function short_wr()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
@@ -90,198 +76,154 @@ class WireTest extends TestCaseCompat
$this->wr(65536, 'write_short', 'read_short');
}
- /**
- * @test
- */
+ #[Test]
public function short_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(-1, 'write_short', 'read_short');
}
- /**
- * @test
- */
+ #[Test]
public function short_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(65536, 'write_short', 'read_short');
}
- /**
- * @dataProvider signedShortWrData
- * @test
- */
+ #[DataProvider('signedShortWrData')]
+ #[Test]
public function signed_short_wr($value)
{
$this->wr($value, 'write_signed_short', 'read_signed_short');
}
- /**
- * @test
- */
+ #[Test]
public function signed_short_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(-32769, 'write_signed_short', 'read_signed_short');
}
- /**
- * @test
- */
+ #[Test]
public function signed_short_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(32768, 'write_signed_short', 'read_signed_short');
}
- /**
- * @dataProvider longWrData
- * @test
- */
+ #[DataProvider('longWrData')]
+ #[Test]
public function long_wr($value)
{
$this->wr($value, 'write_long', 'read_long');
}
- /**
- * @test
- */
+ #[Test]
public function long_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(-1, 'write_long', 'read_long');
}
- /**
- * @test
- */
+ #[Test]
public function long_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('4294967296', 'write_long', 'read_long');
}
- /**
- * @dataProvider signedLongWrData
- * @test
- */
+ #[DataProvider('signedLongWrData')]
+ #[Test]
public function signed_long_wr($value)
{
$this->wr($value, 'writeSignedLong', 'readSignedLong', true);
}
- /**
- * @test
- */
+ #[Test]
public function signed_long_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('-2147483649', 'writeSignedLong', 'readSignedLong', true);
}
- /**
- * @test
- */
+ #[Test]
public function signed_long_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('2147483648', 'writeSignedLong', 'readSignedLong', true);
}
- /**
- * @dataProvider longlongWrData
- * @test
- */
+ #[DataProvider('longlongWrData')]
+ #[Test]
public function longlong_wr($value)
{
$this->wr($value, 'write_longlong', 'read_longlong');
}
- /**
- * @test
- */
+ #[Test]
public function longlong_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('-1', 'write_longlong', 'read_longlong');
}
- /**
- * @test
- */
+ #[Test]
public function longlong_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('18446744073709551616', 'write_longlong', 'read_longlong');
}
- /**
- * @dataProvider signedLonglongWrData
- * @test
- */
+ #[DataProvider('signedLonglongWrData')]
+ #[Test]
public function signed_longlong_wr($value)
{
$this->wr($value, 'write_signed_longlong', 'read_signed_longlong');
}
- /**
- * @test
- */
+ #[Test]
public function signed_longlong_wr_out_of_range_lower()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('-9223372036854775809', 'write_signed_longlong', 'read_signed_longlong');
}
- /**
- * @test
- */
+ #[Test]
public function signed_longlong_wr_out_of_range_upper()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr('9223372036854775808', 'write_signed_longlong', 'read_signed_longlong');
}
- /**
- * @dataProvider shortstrWrData
- * @test
- */
+ #[DataProvider('shortstrWrData')]
+ #[Test]
public function shortstr_wr($value)
{
$this->wr($value, 'write_shortstr', 'read_shortstr');
}
- /**
- * @test
- */
+ #[Test]
public function shortstr_wr_out_of_range_ASCII()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(str_repeat('z', 256), 'write_shortstr', 'read_shortstr');
}
- /**
- * @test
- */
+ #[Test]
public function shortstr_wr_out_of_range_utf_two_byte()
{
$this->expectException(\PhpAmqpLib\Exception\AMQPInvalidArgumentException::class);
$this->wr(str_repeat("\xd0\xaf", 128), 'write_shortstr', 'read_shortstr');
}
- /**
- * @dataProvider longstrWrData
- * @test
- */
+ #[DataProvider('longstrWrData')]
+ #[Test]
public function longstr_wr($value)
{
$this->wr($value, 'write_longstr', 'read_longstr');
}
- /**
- * @test
- */
+ #[Test]
public function array_wr_native()
{
$d = [
@@ -303,9 +245,7 @@ class WireTest extends TestCaseCompat
$this->assertEquals($d, $rd);
}
- /**
- * @test
- */
+ #[Test]
public function array_wr_collection()
{
$w = new AMQPWriter();
@@ -366,9 +306,7 @@ class WireTest extends TestCaseCompat
);
}
- /**
- * @test
- */
+ #[Test]
public function table_wr_native()
{
$d = [
@@ -393,9 +331,7 @@ class WireTest extends TestCaseCompat
$this->assertEquals($d, $rd);
}
- /**
- * @test
- */
+ #[Test]
public function table_wr_collection()
{
$w = new AMQPWriter();
|