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
|
From: Guilhem Moulin <guilhem@debian.org>
Date: Sun, 20 Dec 2020 16:23:13 +0100
Subject: Fix FTBFS with phpunit 9.5.0-1.
Forwarded: not-needed
---
Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php | 36 ++---
Crypt_GPG-1.6.4/tests/DecryptTest.php | 30 ++--
Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php | 6 +-
Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php | 6 +-
Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php | 24 +--
Crypt_GPG-1.6.4/tests/EncryptTest.php | 12 +-
Crypt_GPG-1.6.4/tests/ExceptionsTest.php | 40 ++---
Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php | 10 +-
Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php | 5 +-
Crypt_GPG-1.6.4/tests/GeneralTest.php | 38 ++---
Crypt_GPG-1.6.4/tests/ImportKeyTest.php | 12 +-
Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php | 194 +++++++++++++++----------
Crypt_GPG-1.6.4/tests/SignTest.php | 18 +--
Crypt_GPG-1.6.4/tests/VerifyTest.php | 15 +-
14 files changed, 208 insertions(+), 238 deletions(-)
diff --git a/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php b/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
index d7a4717..419282e 100644
--- a/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
+++ b/Crypt_GPG-1.6.4/tests/DecryptAndVerifyTest.php
@@ -188,12 +188,11 @@ TEXT;
// {{{ testDecryptVerifyKeyNotFoundException_decrypt()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testDecryptVerifyKeyNotFoundException_decrypt()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
// was encrypted with missing-key@example.com, signed with
// first-keypair@example.com
// {{{ encrypted data
@@ -229,12 +228,11 @@ TEXT;
// {{{ testDecryptVerifyKeyNotFoundException_verify()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testDecryptVerifyKeyNotFoundException_verify()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
// was encrypted with first-keypair@example.com, signed with
// missing-key@example.com
// {{{ encrypted data
@@ -276,12 +274,11 @@ TEXT;
// {{{ testDecryptVerifyKeyNotFoundException_both()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testDecryptVerifyKeyNotFoundException_both()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
// was encrypted and signed with missing-key@example.com
// {{{ encrypted data
$encryptedData = <<<TEXT
@@ -373,12 +370,11 @@ TEXT;
// {{{ testDecryptVerifyNoDataException_invalid()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testDecryptVerifyNoDataException_invalid()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$encryptedData = 'Invalid OpenPGP data.';
$this->gpg->decryptAndVerify($encryptedData);
}
@@ -387,12 +383,11 @@ TEXT;
// {{{ testDecryptVerifyNoDataException_empty()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testDecryptVerifyNoDataException_empty()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$encryptedData = '';
$this->gpg->decryptAndVerify($encryptedData);
}
@@ -401,12 +396,11 @@ TEXT;
// {{{ testDecryptVerifyBadPassphraseException_missing()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testDecryptVerifyBadPassphraseException_missing()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
// encrypted with first-keypair@example.com, signed with
// first-keypair@example.com
// {{{ encrypted data no passphrase
@@ -442,12 +436,11 @@ TEXT;
// {{{ testDecryptVerifyBadPassphraseException_bad()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testDecryptVerifyBadPassphraseException_bad()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
// encrypted with first-keypair@example.com, signed with
// first-keypair@example.com
// {{{ encrypted data no passphrase
@@ -648,12 +641,11 @@ TEXT;
// {{{ testDecryptAndVerifyDualNoPassphraseKeyMissing()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testDecryptAndVerifyDualNoPassphraseKeyMissing()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
// encrypted with both first-keypair@example.com and
// second-keypair@example.com
// {{{ dual encrypted data
@@ -1142,12 +1134,11 @@ TEXT;
// {{{ testDecryptVerifyFileFileException_input()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testDecryptVerifyFileFileException_input()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file does not exist
$inputFilename = $this->getDataFilename(
'testDecryptVerifyFileFileException_input.asc'
@@ -1160,12 +1151,11 @@ TEXT;
// {{{ testDecryptVerifyFileFileException_output()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testDecryptVerifyFileFileException_output()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file is encrypted with first-keypair@example.com
// output file does not exist
$inputFilename = $this->getDataFilename('testDecryptVerifyFile.asc');
@@ -1180,12 +1170,11 @@ TEXT;
// {{{ testDecryptVerifyFileKeyNotFoundException_decrypt()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group file
*/
public function testDecryptVerifyFileKeyNotFoundException_decrypt()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
// file is encrypted with missing-key@example.com, not signed
$inputFilename = $this->getDataFilename(
'testDecryptFileKeyNotFoundException.asc'
@@ -1391,12 +1380,11 @@ TEXT;
// {{{ testDecryptVerifyFileNoDataException()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group file
*/
public function testDecryptVerifyFileNoDataException()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$filename = $this->getDataFilename('testFileEmpty.plain');
$this->gpg->decryptAndVerifyFile($filename);
}
diff --git a/Crypt_GPG-1.6.4/tests/DecryptTest.php b/Crypt_GPG-1.6.4/tests/DecryptTest.php
index 3dfb37a..49e9c66 100644
--- a/Crypt_GPG-1.6.4/tests/DecryptTest.php
+++ b/Crypt_GPG-1.6.4/tests/DecryptTest.php
@@ -141,12 +141,11 @@ TEXT;
// {{{ testDecryptKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testDecryptKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
// was encrypted with missing-key@example.com
// {{{ encrypted data
$encryptedData = <<<TEXT
@@ -179,12 +178,11 @@ TEXT;
// {{{ testDecryptNoDataException_invalid()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testDecryptNoDataException_invalid()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$encryptedData = 'Invalid OpenPGP data.';
$this->gpg->decrypt($encryptedData);
}
@@ -193,12 +191,11 @@ TEXT;
// {{{ testDecryptNoDataException_empty()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testDecryptNoDataException_empty()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$encryptedData = '';
$this->gpg->decrypt($encryptedData);
}
@@ -207,12 +204,11 @@ TEXT;
// {{{ testDecryptBadPassphraseException_missing()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testDecryptBadPassphraseException_missing()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
// encrypted with first-keypair@example.com
// {{{ encrypted data
$encryptedData = <<<TEXT
@@ -245,12 +241,11 @@ TEXT;
// {{{ testDecryptBadPassphraseException_bad()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testDecryptBadPassphraseException_bad()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
// encrypted with first-keypair@example.com
// {{{ encrypted data
$encryptedData = <<<TEXT
@@ -402,12 +397,11 @@ TEXT;
// {{{ testDecryptDualNoPassphraseKeyMissing()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testDecryptDualNoPassphraseKeyMissing()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
// encrypted with both first-keypair@example.com and
// second-keypair@example.com
// {{{ dual encrypted data
@@ -626,12 +620,11 @@ TEXT;
// {{{ testDecryptFileFileException_input()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testDecryptFileFileException_input()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file does not exist
$inputFilename =
$this->getDataFilename('testDecryptFileFileException_input.asc');
@@ -643,12 +636,11 @@ TEXT;
// {{{ testDecryptFileFileException_output()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testDecryptFileFileException_output()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file is encrypted with first-keypair@example.com
// output file does not exist
$inputFilename = $this->getDataFilename('testDecryptFile.asc');
@@ -663,12 +655,11 @@ TEXT;
// {{{ testDecryptFileKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group file
*/
public function testDecryptFileKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
// file is encrypted with missing-key@example.com
$inputFilename =
$this->getDataFilename('testDecryptFileKeyNotFoundException.asc');
@@ -739,12 +730,11 @@ TEXT;
// {{{ testDecryptFileNoDataException()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group file
*/
public function testDecryptFileNoDataException()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$filename = $this->getDataFilename('testFileEmpty.plain');
$this->gpg->decryptFile($filename);
}
diff --git a/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php b/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php
index 35f3bd5..7d37f57 100644
--- a/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/DeletePrivateKeyTest.php
@@ -111,12 +111,11 @@ class DeletePrivateKeyTestCase extends Crypt_GPG_TestCase
// {{{ testDeletePrivateKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group delete-private
*/
public function testDeletePrivateKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$keyId = 'non-existent-key@example.com';
$this->gpg->deletePrivateKey($keyId);
}
@@ -125,12 +124,11 @@ class DeletePrivateKeyTestCase extends Crypt_GPG_TestCase
// {{{ testDeletePrivateKeyNotFoundException_public_only()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group delete-private
*/
public function testDeletePrivateKeyNotFoundException_public_only()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$keyId = 'public-only@example.com';
$this->gpg->deletePrivateKey($keyId);
}
diff --git a/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php b/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php
index a401fcc..621b0bb 100644
--- a/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/DeletePublicKeyTest.php
@@ -76,12 +76,11 @@ class DeletePublicKeyTestCase extends Crypt_GPG_TestCase
// {{{ testDeletePublicKeyDeletePrivateKeyException()
/**
- * @expectedException Crypt_GPG_DeletePrivateKeyException
- *
* @group delete-public
*/
public function testDeletePublicKeyDeletePrivateKeyException()
{
+ $this->expectException('Crypt_GPG_DeletePrivateKeyException');
// GnuPG 2.1(.11) allows public key deletion in this case
if (version_compare($this->gpg->getVersion(), '2.1.0', 'ge')) {
$this->markTestSkipped('GnuPG >= 2.1 allows public key deletion if private key exists.');
@@ -114,12 +113,11 @@ class DeletePublicKeyTestCase extends Crypt_GPG_TestCase
// {{{ testDeletePublicKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group delete-public
*/
public function testDeletePublicKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$keyId = 'non-existent-key@example.com';
$this->gpg->deletePublicKey($keyId);
}
diff --git a/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php b/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php
index 178c3e7..246d5d8 100644
--- a/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php
+++ b/Crypt_GPG-1.6.4/tests/EncryptAndSignTest.php
@@ -61,12 +61,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignKeyNotFoundException_invalid_sign_key()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testEncryptAndSignKeyNotFoundException_invalid_sign_key()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('non-existent-key@example.com');
$this->gpg->addEncryptKey('first-keypair@example.com');
@@ -77,12 +76,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignKeyNotFoundException_no_sign_key()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testEncryptAndSignKeyNotFoundException_no_sign_key()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addEncryptKey('first-keypair@example.com');
$this->gpg->encryptAndSign($data);
@@ -92,12 +90,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignKeyNotFoundException_invalid_encrypt_key()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testEncryptAndSignKeyNotFoundException_invalid_encrypt_key()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('first-keypair@example.com', 'test1');
$this->gpg->addEncryptKey('non-existent-key@example.com');
@@ -108,12 +105,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignKeyNotFoundException_no_encrypt_key()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testEncryptAndSignKeyNotFoundException_no_encrypt_key()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('first-keypair@example.com', 'test1');
$this->gpg->encryptAndSign($data);
@@ -123,12 +119,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignBadPassphraseException_missing_sign_key()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testEncryptAndSignBadPassphraseException_missing_sign_key()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('first-keypair@example.com');
$this->gpg->addEncryptKey('first-keypair@example.com');
@@ -139,12 +134,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignBadPassphraseException_bad_sign_key()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testEncryptAndSignBadPassphraseException_bad_sign_key()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('first-keypair@example.com', 'incorrect');
$this->gpg->addEncryptKey('first-keypair@example.com');
@@ -433,12 +427,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignFileFileException_input()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testEncryptAndSignFileFileException_input()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file does not exist
$inputFilename = $this->getDataFilename(
'testEncryptAndSignFileFileFileException_input.plain');
@@ -452,12 +445,11 @@ class EncryptAndSignTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptAndSignFileFileException_output()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testEncryptAndSignFileFileException_output()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file is plaintext
// output file does not exist
$inputFilename = $this->getDataFilename('testFileMedium.plain');
diff --git a/Crypt_GPG-1.6.4/tests/EncryptTest.php b/Crypt_GPG-1.6.4/tests/EncryptTest.php
index f86de0b..52bb632 100644
--- a/Crypt_GPG-1.6.4/tests/EncryptTest.php
+++ b/Crypt_GPG-1.6.4/tests/EncryptTest.php
@@ -115,12 +115,11 @@ class EncryptTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptKeyNotFoundException_invalid()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testEncryptNotFoundException_invalid()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addEncryptKey('non-existent-key@example.com');
$this->gpg->encrypt($data);
@@ -130,12 +129,11 @@ class EncryptTestCase extends Crypt_GPG_TestCase
// {{{ testEncryptKeyNotFoundException_none()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testEncryptNotFoundException_none()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->encrypt($data);
}
@@ -241,11 +239,10 @@ class EncryptTestCase extends Crypt_GPG_TestCase
/**
* @group file
- *
- * @expectedException Crypt_GPG_FileException
*/
public function testEncryptFileFileException_input()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file does not exist
$filename =
$this->getDataFilename('testEncryptFileFileException_input.plain');
@@ -259,11 +256,10 @@ class EncryptTestCase extends Crypt_GPG_TestCase
/**
* @group file
- *
- * @expectedException Crypt_GPG_FileException
*/
public function testEncryptFileFileException_output()
{
+ $this->expectException('Crypt_GPG_FileException');
// output file does not exist
$inputFilename = $this->getDataFilename('testFileMedium.plain');
$outputFilename = './non-existent' .
diff --git a/Crypt_GPG-1.6.4/tests/ExceptionsTest.php b/Crypt_GPG-1.6.4/tests/ExceptionsTest.php
index 4db5aea..b642e50 100644
--- a/Crypt_GPG-1.6.4/tests/ExceptionsTest.php
+++ b/Crypt_GPG-1.6.4/tests/ExceptionsTest.php
@@ -67,11 +67,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group exception
- * @expectedException Crypt_GPG_Exception
- * @expectedExceptionMessage test exception
*/
public function testException()
{
+ $this->expectException('Crypt_GPG_Exception');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_Exception('test exception');
}
@@ -82,11 +82,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group file-exception
- * @expectedException Crypt_GPG_FileException
- * @expectedExceptionMessage test exception
*/
public function testFileException()
{
+ $this->expectException('Crypt_GPG_FileException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_FileException('test exception');
}
@@ -111,11 +111,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group open-subprocess-exception
- * @expectedException Crypt_GPG_OpenSubprocessException
- * @expectedExceptionMessage test exception
*/
public function testOpenSubprocessException()
{
+ $this->expectException('Crypt_GPG_OpenSubprocessException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_OpenSubprocessException('test exception');
}
@@ -140,11 +140,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group invalid-operation-exception
- * @expectedException Crypt_GPG_InvalidOperationException
- * @expectedExceptionMessage test exception
*/
public function testInvalidOperationException()
{
+ $this->expectException('Crypt_GPG_InvalidOperationException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_InvalidOperationException('test exception');
}
@@ -169,11 +169,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group key-not-found-exception
- * @expectedException Crypt_GPG_KeyNotFoundException
- * @expectedExceptionMessage test exception
*/
public function testKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_KeyNotFoundException('test exception');
}
@@ -198,11 +198,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group no-data-exception
- * @expectedException Crypt_GPG_NoDataException
- * @expectedExceptionMessage test exception
*/
public function testNoDataException()
{
+ $this->expectException('Crypt_GPG_NoDataException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_NoDataException('test exception');
}
@@ -213,11 +213,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group bad-passphrase-exception
- * @expectedException Crypt_GPG_BadPassphraseException
- * @expectedExceptionMessage test exception
*/
public function testBadPassphraseException()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_BadPassphraseException('test exception');
}
@@ -236,8 +236,8 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
$this->assertTrue(is_array($keyIds), 'Failed to assert returned ' .
'key ids for bad passphrases is an array.');
- $this->assertContains('C097D9EC94C06363', $keyIds);
- $this->assertContains('9F93F9116728EF12', $keyIds);
+ $this->assertContainsEquals('C097D9EC94C06363', $keyIds);
+ $this->assertContainsEquals('9F93F9116728EF12', $keyIds);
}
// }}}
@@ -255,8 +255,8 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
$this->assertTrue(is_array($keyIds), 'Failed to assert returned ' .
'key ids for missing passphrases is an array.');
- $this->assertContains('C097D9EC94C06363', $keyIds);
- $this->assertContains('9F93F9116728EF12', $keyIds);
+ $this->assertContainsEquals('C097D9EC94C06363', $keyIds);
+ $this->assertContainsEquals('9F93F9116728EF12', $keyIds);
}
// }}}
@@ -266,11 +266,11 @@ class ExceptionsTestCase extends Crypt_GPG_TestCase
/**
* @group delete-private-key-exception
- * @expectedException Crypt_GPG_DeletePrivateKeyException
- * @expectedExceptionMessage test exception
*/
public function testDeletePrivateKeyException()
{
+ $this->expectException('Crypt_GPG_DeletePrivateKeyException');
+ $this->expectExceptionMessage('test exception');
throw new Crypt_GPG_DeletePrivateKeyException('test exception');
}
diff --git a/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php b/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php
index a7bdf53..7f17826 100644
--- a/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ExportPrivateKeyTest.php
@@ -75,7 +75,7 @@ class ExportPrivateKeyTestCase extends Crypt_GPG_TestCase
$keyData = $this->gpg->exportPrivateKey($keyId);
- $this->assertContains($expectedKeyData, $keyData);
+ $this->assertStringContainsString($expectedKeyData, $keyData);
}
// }}}
@@ -98,19 +98,18 @@ class ExportPrivateKeyTestCase extends Crypt_GPG_TestCase
$keyData = $this->gpg->exportPrivateKey($keyId);
// Here we're really testing only the passphrase handling in GnuPG 2.1
- $this->assertContains('PGP PRIVATE KEY', $keyData);
+ $this->assertStringContainsString('PGP PRIVATE KEY', $keyData);
}
// }}}
// {{{ testExportPrivateKey_with_bad_pass()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group export
*/
public function testExportPrivateKey_with_bad_pass()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
if (version_compare($this->gpg->getVersion(), '2.1.0', 'lt')) {
$this->markTestSkipped('GnuPG >= 2.1 requires passphrase to export private key.');
}
@@ -127,12 +126,11 @@ class ExportPrivateKeyTestCase extends Crypt_GPG_TestCase
// {{{ testExportPrivateKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group export
*/
public function testExportPrivateKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$keyId = 'non-existent-key@example.com';
$this->gpg->exportPrivateKey($keyId);
}
diff --git a/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php b/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php
index d307a14..d3ec804 100644
--- a/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ExportPublicKeyTest.php
@@ -72,19 +72,18 @@ class ExportPublicKeyTestCase extends Crypt_GPG_TestCase
$keyData = $this->gpg->exportPublicKey($keyId);
- $this->assertContains($expectedKeyData, $keyData);
+ $this->assertStringContainsString($expectedKeyData, $keyData);
}
// }}}
// {{{ testExportPublicKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group export
*/
public function testExportPublicKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$keyId = 'non-existent-key@example.com';
$this->gpg->exportPublicKey($keyId);
}
diff --git a/Crypt_GPG-1.6.4/tests/GeneralTest.php b/Crypt_GPG-1.6.4/tests/GeneralTest.php
index 033a27f..82e7f3d 100644
--- a/Crypt_GPG-1.6.4/tests/GeneralTest.php
+++ b/Crypt_GPG-1.6.4/tests/GeneralTest.php
@@ -59,11 +59,9 @@ class GeneralTestCase extends Crypt_GPG_TestCase
{
// {{{ testPublicKeyringFileException()
- /**
- * @expectedException Crypt_GPG_FileException
- */
public function testPublicKeyringFileException()
{
+ $this->expectException('Crypt_GPG_FileException');
$publicKeyringFile = $this->getTempFilename('pubring.gpg');
new Crypt_GPG(
array(
@@ -75,11 +73,9 @@ class GeneralTestCase extends Crypt_GPG_TestCase
// }}}
// {{{ testPrivateKeyringFileException()
- /**
- * @expectedException Crypt_GPG_FileException
- */
public function testPrivateKeyringFileException()
{
+ $this->expectException('Crypt_GPG_FileException');
$privateKeyringFile = $this->getTempFilename('secring.gpg');
new Crypt_GPG(
array(
@@ -91,11 +87,9 @@ class GeneralTestCase extends Crypt_GPG_TestCase
// }}}
// {{{ testTrustDatabaseFileException()
- /**
- * @expectedException Crypt_GPG_FileException
- */
public function testTrustDatabaseFileException()
{
+ $this->expectException('Crypt_GPG_FileException');
$trustDbFile = $this->getTempFilename('secring.gpg');
new Crypt_GPG(
array(
@@ -107,12 +101,10 @@ class GeneralTestCase extends Crypt_GPG_TestCase
// }}}
// {{{ testHomedirFileException_NoCreate()
- /**
- * @expectedException Crypt_GPG_FileException
- * @expectedExceptionMessage cannot be created
- */
public function testHomedirFileException_NoCreate()
{
+ $this->expectException('Crypt_GPG_FileException');
+ $this->expectExceptionMessage('cannot be created');
if (posix_getuid() === 0) {
$this->markTestSkipped('Root can write to any homedir.');
}
@@ -124,12 +116,10 @@ class GeneralTestCase extends Crypt_GPG_TestCase
// }}}
// {{{ testHomedirFileException_NoExecute()
- /**
- * @expectedException Crypt_GPG_FileException
- * @expectedExceptionMessage is not enterable
- */
public function testHomedirFileException_NoExecute()
{
+ $this->expectException('Crypt_GPG_FileException');
+ $this->expectExceptionMessage('is not enterable');
if (posix_getuid() === 0) {
$this->markTestSkipped('Root can do what it wants to any homedir.');
}
@@ -144,12 +134,10 @@ class GeneralTestCase extends Crypt_GPG_TestCase
// }}}
// {{{ testHomedirFileException_NoWrite()
- /**
- * @expectedException Crypt_GPG_FileException
- * @expectedExceptionMessage is not writable
- */
public function testHomedirFileException_NoWrite()
{
+ $this->expectException('Crypt_GPG_FileException');
+ $this->expectExceptionMessage('is not writable');
if (posix_getuid() === 0) {
$this->markTestSkipped('Root can write to any homedir.');
}
@@ -164,22 +152,18 @@ class GeneralTestCase extends Crypt_GPG_TestCase
// }}}
// {{{ testBinaryPEARException()
- /**
- * @expectedException PEAR_Exception
- */
public function testBinaryPEARException()
{
+ $this->expectException('PEAR_Exception');
new Crypt_GPG(array('binary' => './non-existent-binary'));
}
// }}}
// {{{ testGPGBinaryPEARException()
- /**
- * @expectedException PEAR_Exception
- */
public function testGPGBinaryPEARException()
{
+ $this->expectException('PEAR_Exception');
new Crypt_GPG(array('gpgBinary' => './non-existent-binary'));
}
diff --git a/Crypt_GPG-1.6.4/tests/ImportKeyTest.php b/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
index 53bea24..2a5ec22 100644
--- a/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
@@ -343,12 +343,11 @@ TEXT;
// {{{ testImportKeyNoDataException_invalid()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testImportKeyNoDataException_invalid()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$keyData = 'Invalid OpenPGP data.';
$this->gpg->importKey($keyData);
}
@@ -357,12 +356,11 @@ TEXT;
// {{{ testImportKeyNoDataException_empty()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testImportKeyNoDataException_empty()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$keyData = '';
$this->gpg->importKey($keyData);
}
@@ -489,12 +487,11 @@ TEXT;
// {{{ testImportKeyFileFileException()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testImportKeyFileFileException()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file does not exist
$filename =
$this->getDataFilename('testImportKeyFileFileException.asc');
@@ -506,12 +503,11 @@ TEXT;
// {{{ testImportKeyFileNoDataException()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group file
*/
public function testImportKeyFileNoDataException()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$filename = $this->getDataFilename('testFileEmpty.plain');
$this->gpg->importKeyFile($filename);
}
diff --git a/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php b/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
index ab08b8f..8091dfa 100644
--- a/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
+++ b/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
@@ -193,10 +193,13 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
$expectedDate = 0;
$this->generator->setExpirationDate(0);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_expirationDate = $class->getProperty('expirationDate');
+ $prop_expirationDate->setAccessible(true);
+
+ $this->assertEquals(
$expectedDate,
- 'expirationDate',
- $this->generator,
+ $prop_expirationDate->getValue($this->generator),
'Setting expiration date to zero failed.'
);
}
@@ -212,10 +215,13 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
$expectedDate = 2000000000;
$this->generator->setExpirationDate(2000000000);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_expirationDate = $class->getProperty('expirationDate');
+ $prop_expirationDate->setAccessible(true);
+
+ $this->assertEquals(
$expectedDate,
- 'expirationDate',
- $this->generator,
+ $prop_expirationDate->getValue($this->generator),
'Setting expiration date by integer failed.'
);
}
@@ -233,10 +239,13 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
$expectedDate = 2000000000;
$this->generator->setExpirationDate('2033-05-18T03:33:20');
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_expirationDate = $class->getProperty('expirationDate');
+ $prop_expirationDate->setAccessible(true);
+
+ $this->assertEquals(
$expectedDate,
- 'expirationDate',
- $this->generator,
+ $prop_expirationDate->getValue($this->generator),
'Setting expiration date by string failed.'
);
}
@@ -246,10 +255,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException InvalidArgumentException
*/
public function testSetExpirationDate_invalid_format()
{
+ $this->expectException('InvalidArgumentException');
date_default_timezone_set('UTC');
$this->generator->setExpirationDate('this is not a date');
@@ -260,10 +269,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException InvalidArgumentException
*/
public function testSetExpirationDate_too_early_date()
{
+ $this->expectException('InvalidArgumentException');
$this->generator->setExpirationDate(1301088055);
}
@@ -272,10 +281,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException InvalidArgumentException
*/
public function testSetExpirationDate_today()
{
+ $this->expectException('InvalidArgumentException');
$this->generator->setExpirationDate(time());
}
@@ -284,10 +293,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException InvalidArgumentException
*/
public function testSetExpirationDate_too_late_date()
{
+ $this->expectException('InvalidArgumentException');
$this->generator->setExpirationDate(2147483648);
}
@@ -302,10 +311,13 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
$expectedPassphrase = 'test1';
$this->generator->setPassphrase('test1');
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_passphrase = $class->getProperty('passphrase');
+ $prop_passphrase->setAccessible(true);
+
+ $this->assertEquals(
$expectedPassphrase,
- 'passphrase',
- $this->generator,
+ $prop_passphrase->getValue($this->generator),
'Setting passphrase failed.'
);
}
@@ -327,24 +339,29 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
Crypt_GPG_SubKey::ALGORITHM_ELGAMAL_ENC_SGN
);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_keyAlgorithm = $class->getProperty('keyAlgorithm');
+ $prop_keySize = $class->getProperty('keySize');
+ $prop_keyUsage = $class->getProperty('keyUsage');
+ $prop_keyAlgorithm->setAccessible(true);
+ $prop_keySize->setAccessible(true);
+ $prop_keyUsage->setAccessible(true);
+
+ $this->assertEquals(
$expectedAlgorithm,
- 'keyAlgorithm',
- $this->generator,
+ $prop_keyAlgorithm->getValue($this->generator),
'Setting key algorithm failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedSize,
- 'keySize',
- $this->generator,
+ $prop_keySize->getValue($this->generator),
'Setting key algorithm changed key size.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedUsage,
- 'keyUsage',
- $this->generator,
+ $prop_keyUsage->getValue($this->generator),
'Setting key algorithm changed key usage.'
);
}
@@ -367,24 +384,29 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
512
);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_keyAlgorithm = $class->getProperty('keyAlgorithm');
+ $prop_keySize = $class->getProperty('keySize');
+ $prop_keyUsage = $class->getProperty('keyUsage');
+ $prop_keyAlgorithm->setAccessible(true);
+ $prop_keySize->setAccessible(true);
+ $prop_keyUsage->setAccessible(true);
+
+ $this->assertEquals(
$expectedAlgorithm,
- 'keyAlgorithm',
- $this->generator,
+ $prop_keyAlgorithm->getValue($this->generator),
'Setting key algorithm failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedSize,
- 'keySize',
- $this->generator,
+ $prop_keySize->getValue($this->generator),
'Setting key size failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedUsage,
- 'keyUsage',
- $this->generator,
+ $prop_keyUsage->getValue($this->generator),
'Setting key algorithm and size changed key usage.'
);
}
@@ -411,24 +433,29 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
| Crypt_GPG_SubKey::USAGE_ENCRYPT
);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_keyAlgorithm = $class->getProperty('keyAlgorithm');
+ $prop_keySize = $class->getProperty('keySize');
+ $prop_keyUsage = $class->getProperty('keyUsage');
+ $prop_keyAlgorithm->setAccessible(true);
+ $prop_keySize->setAccessible(true);
+ $prop_keyUsage->setAccessible(true);
+
+ $this->assertEquals(
$expectedAlgorithm,
- 'keyAlgorithm',
- $this->generator,
+ $prop_keyAlgorithm->getValue($this->generator),
'Setting key algorithm failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedSize,
- 'keySize',
- $this->generator,
+ $prop_keySize->getValue($this->generator),
'Setting key size failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedUsage,
- 'keyUsage',
- $this->generator,
+ $prop_keyUsage->getValue($this->generator),
'Setting key usage failed.'
);
}
@@ -438,10 +465,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException Crypt_GPG_InvalidKeyParamsException
*/
public function testSetKeyParams_invalid_algorithm()
{
+ $this->expectException('Crypt_GPG_InvalidKeyParamsException');
$this->generator->setKeyParams(Crypt_GPG_SubKey::ALGORITHM_ELGAMAL_ENC);
}
@@ -450,10 +477,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException Crypt_GPG_InvalidKeyParamsException
*/
public function testSetKeyParams_invalid_dsa_usage()
{
+ $this->expectException('Crypt_GPG_InvalidKeyParamsException');
$this->generator->setKeyParams(
Crypt_GPG_SubKey::ALGORITHM_DSA,
2048,
@@ -477,24 +504,29 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
Crypt_GPG_SubKey::ALGORITHM_ELGAMAL_ENC_SGN
);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_subKeyAlgorithm = $class->getProperty('subKeyAlgorithm');
+ $prop_subKeySize = $class->getProperty('subKeySize');
+ $prop_subKeyUsage = $class->getProperty('subKeyUsage');
+ $prop_subKeyAlgorithm->setAccessible(true);
+ $prop_subKeySize->setAccessible(true);
+ $prop_subKeyUsage->setAccessible(true);
+
+ $this->assertEquals(
$expectedAlgorithm,
- 'subKeyAlgorithm',
- $this->generator,
+ $prop_subKeyAlgorithm->getValue($this->generator),
'Setting sub-key algorithm failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedSize,
- 'subKeySize',
- $this->generator,
+ $prop_subKeySize->getValue($this->generator),
'Setting sub-key algorithm changed key size.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedUsage,
- 'subKeyUsage',
- $this->generator,
+ $prop_subKeyUsage->getValue($this->generator),
'Setting sub-key algorithm changed key usage.'
);
}
@@ -516,24 +548,29 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
1024
);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_subKeyAlgorithm = $class->getProperty('subKeyAlgorithm');
+ $prop_subKeySize = $class->getProperty('subKeySize');
+ $prop_subKeyUsage = $class->getProperty('subKeyUsage');
+ $prop_subKeyAlgorithm->setAccessible(true);
+ $prop_subKeySize->setAccessible(true);
+ $prop_subKeyUsage->setAccessible(true);
+
+ $this->assertEquals(
$expectedAlgorithm,
- 'subKeyAlgorithm',
- $this->generator,
+ $prop_subKeyAlgorithm->getValue($this->generator),
'Setting sub-key algorithm failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedSize,
- 'subKeySize',
- $this->generator,
+ $prop_subKeySize->getValue($this->generator),
'Setting sub-key size failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedUsage,
- 'subKeyUsage',
- $this->generator,
+ $prop_subKeyUsage->getValue($this->generator),
'Setting sub-key algorithm and size changed key usage.'
);
}
@@ -558,24 +595,29 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
| Crypt_GPG_SubKey::USAGE_ENCRYPT
);
- $this->assertAttributeEquals(
+ $class = new \ReflectionObject($this->generator);
+ $prop_subKeyAlgorithm = $class->getProperty('subKeyAlgorithm');
+ $prop_subKeySize = $class->getProperty('subKeySize');
+ $prop_subKeyUsage = $class->getProperty('subKeyUsage');
+ $prop_subKeyAlgorithm->setAccessible(true);
+ $prop_subKeySize->setAccessible(true);
+ $prop_subKeyUsage->setAccessible(true);
+
+ $this->assertEquals(
$expectedAlgorithm,
- 'subKeyAlgorithm',
- $this->generator,
+ $prop_subKeyAlgorithm->getValue($this->generator),
'Setting sub-key algorithm failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedSize,
- 'subKeySize',
- $this->generator,
+ $prop_subKeySize->getValue($this->generator),
'Setting sub-key size failed.'
);
- $this->assertAttributeEquals(
+ $this->assertEquals(
$expectedUsage,
- 'subKeyUsage',
- $this->generator,
+ $prop_subKeyUsage->getValue($this->generator),
'Setting sub-key usage failed.'
);
}
@@ -585,10 +627,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException Crypt_GPG_InvalidKeyParamsException
*/
public function testSetSubKeyParams_invalid_elgamal_usage()
{
+ $this->expectException('Crypt_GPG_InvalidKeyParamsException');
$this->generator->setSubKeyParams(
Crypt_GPG_SubKey::ALGORITHM_ELGAMAL_ENC,
2048,
@@ -601,10 +643,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group mutators
- * @expectedException Crypt_GPG_InvalidKeyParamsException
*/
public function testSetSubKeyParams_invalid_dsa_usage()
{
+ $this->expectException('Crypt_GPG_InvalidKeyParamsException');
$this->generator->setSubKeyParams(
Crypt_GPG_SubKey::ALGORITHM_DSA,
2048,
@@ -928,10 +970,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group generate-key
- * @expectedException Crypt_GPG_InvalidKeyParamsException
*/
public function testGenerateKeyWithInvalidPrimaryKeyAlgorithm()
{
+ $this->expectException('Crypt_GPG_InvalidKeyParamsException');
if (!$this->config['enable-key-generation']) {
$this->markTestSkipped(
'Key generation tests are disabled. To run key generation '
@@ -954,10 +996,10 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
/**
* @group generate-key
- * @expectedException Crypt_GPG_InvalidKeyParamsException
*/
public function testGenerateKeyWithInvalidSubKeyAlgorithm()
{
+ $this->expectException('Crypt_GPG_InvalidKeyParamsException');
if (!$this->config['enable-key-generation']) {
$this->markTestSkipped(
'Key generation tests are disabled. To run key generation '
diff --git a/Crypt_GPG-1.6.4/tests/SignTest.php b/Crypt_GPG-1.6.4/tests/SignTest.php
index bdaa65c..296e69d 100644
--- a/Crypt_GPG-1.6.4/tests/SignTest.php
+++ b/Crypt_GPG-1.6.4/tests/SignTest.php
@@ -67,12 +67,11 @@ class SignTestCase extends Crypt_GPG_TestCase
// {{{ testSignKeyNotFoundException_invalid()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testSignKeyNotFoundException_invalid()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('non-existent-key@example.com');
$this->gpg->sign($data);
@@ -82,12 +81,11 @@ class SignTestCase extends Crypt_GPG_TestCase
// {{{ testSignKeyNotFoundException_none()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testSignKeyNotFoundException_none()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->sign($data);
}
@@ -96,12 +94,11 @@ class SignTestCase extends Crypt_GPG_TestCase
// {{{ testSignBadPassphraseException_missing()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testSignBadPassphraseException_missing()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('first-keypair@example.com');
$this->gpg->sign($data);
@@ -111,12 +108,11 @@ class SignTestCase extends Crypt_GPG_TestCase
// {{{ testSignBadPassphraseException_bad()
/**
- * @expectedException Crypt_GPG_BadPassphraseException
- *
* @group string
*/
public function testSignBadPassphraseException_bad()
{
+ $this->expectException('Crypt_GPG_BadPassphraseException');
$data = 'Hello, Alice! Goodbye, Bob!';
$this->gpg->addSignKey('first-keypair@example.com', 'incorrect');
$this->gpg->sign($data);
@@ -557,12 +553,11 @@ class SignTestCase extends Crypt_GPG_TestCase
// {{{ testSignFileFileException_input()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testSignFileFileException_input()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file does not exist
$inputFilename =
$this->getDataFilename('testSignFileFileFileException_input.plain');
@@ -575,12 +570,11 @@ class SignTestCase extends Crypt_GPG_TestCase
// {{{ testSignFileFileException_output()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testSignFileFileException_output()
{
+ $this->expectException('Crypt_GPG_FileException');
// input file is encrypted with first-keypair@example.com
// output file does not exist
$inputFilename = $this->getDataFilename('testFileMedium.plain');
diff --git a/Crypt_GPG-1.6.4/tests/VerifyTest.php b/Crypt_GPG-1.6.4/tests/VerifyTest.php
index 813c62d..fe72f25 100644
--- a/Crypt_GPG-1.6.4/tests/VerifyTest.php
+++ b/Crypt_GPG-1.6.4/tests/VerifyTest.php
@@ -61,12 +61,11 @@ class VerifyTestCase extends Crypt_GPG_TestCase
// {{{ testVerifyNoDataException_invalid()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testVerifyNoDataException_invalid()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$signedData = 'Invalid OpenPGP data.';
$this->gpg->verify($signedData);
}
@@ -75,12 +74,11 @@ class VerifyTestCase extends Crypt_GPG_TestCase
// {{{ testVerifyNoDataException_empty()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group string
*/
public function testVerifyNoDataException_empty()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$signedData = '';
$this->gpg->verify($signedData);
}
@@ -89,12 +87,11 @@ class VerifyTestCase extends Crypt_GPG_TestCase
// {{{ testVerifyKeyNotFoundException()
/**
- * @expectedException Crypt_GPG_KeyNotFoundException
- *
* @group string
*/
public function testVerifyKeyNotFoundException()
{
+ $this->expectException('Crypt_GPG_KeyNotFoundException');
$data = 'Hello, Alice! Goodbye, Bob!';
// {{{ detached signature
$detachedSignature = <<<TEXT
@@ -824,12 +821,11 @@ TEXT;
// {{{ testVerifyFileFileException()
/**
- * @expectedException Crypt_GPG_FileException
- *
* @group file
*/
public function testVerifyFileFileException()
{
+ $this->expectException('Crypt_GPG_FileException');
$filename = './non-existent/testVerifyFileFileException.asc';
$this->gpg->verifyFile($filename);
}
@@ -838,12 +834,11 @@ TEXT;
// {{{ testVerifyFileNoDataException()
/**
- * @expectedException Crypt_GPG_NoDataException
- *
* @group file
*/
public function testVerifyFileNoDataException()
{
+ $this->expectException('Crypt_GPG_NoDataException');
$filename = $this->getDataFilename('testFileEmpty.plain');
$this->gpg->verifyFile($filename);
}
|