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
|
// Code generated by tools/cmd/genjwa/main.go. DO NOT EDIT
package jwa_test
import (
"testing"
"github.com/lestrrat-go/jwx/v2/jwa"
"github.com/stretchr/testify/assert"
)
func TestKeyEncryptionAlgorithm(t *testing.T) {
t.Parallel()
t.Run(`accept jwa constant A128GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.A128GCMKW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A128GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string A128GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("A128GCMKW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A128GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for A128GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "A128GCMKW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A128GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for A128GCMKW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "A128GCMKW", jwa.A128GCMKW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.A128KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("A128KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "A128KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for A128KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "A128KW", jwa.A128KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant A192GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.A192GCMKW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A192GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string A192GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("A192GCMKW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A192GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for A192GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "A192GCMKW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A192GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for A192GCMKW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "A192GCMKW", jwa.A192GCMKW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.A192KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("A192KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "A192KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for A192KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "A192KW", jwa.A192KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant A256GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.A256GCMKW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A256GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string A256GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("A256GCMKW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A256GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for A256GCMKW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "A256GCMKW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A256GCMKW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for A256GCMKW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "A256GCMKW", jwa.A256GCMKW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.A256KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("A256KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "A256KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for A256KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "A256KW", jwa.A256KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant DIRECT`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.DIRECT), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.DIRECT, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string dir`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("dir"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.DIRECT, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for dir`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "dir"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.DIRECT, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for dir`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "dir", jwa.DIRECT.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant ECDH_ES`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.ECDH_ES), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string ECDH-ES`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("ECDH-ES"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for ECDH-ES`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "ECDH-ES"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for ECDH-ES`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "ECDH-ES", jwa.ECDH_ES.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant ECDH_ES_A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.ECDH_ES_A128KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string ECDH-ES+A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("ECDH-ES+A128KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for ECDH-ES+A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "ECDH-ES+A128KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for ECDH-ES+A128KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "ECDH-ES+A128KW", jwa.ECDH_ES_A128KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant ECDH_ES_A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.ECDH_ES_A192KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string ECDH-ES+A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("ECDH-ES+A192KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for ECDH-ES+A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "ECDH-ES+A192KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for ECDH-ES+A192KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "ECDH-ES+A192KW", jwa.ECDH_ES_A192KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant ECDH_ES_A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.ECDH_ES_A256KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string ECDH-ES+A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("ECDH-ES+A256KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for ECDH-ES+A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "ECDH-ES+A256KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.ECDH_ES_A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for ECDH-ES+A256KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "ECDH-ES+A256KW", jwa.ECDH_ES_A256KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant PBES2_HS256_A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.PBES2_HS256_A128KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS256_A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string PBES2-HS256+A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("PBES2-HS256+A128KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS256_A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for PBES2-HS256+A128KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "PBES2-HS256+A128KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS256_A128KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for PBES2-HS256+A128KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "PBES2-HS256+A128KW", jwa.PBES2_HS256_A128KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant PBES2_HS384_A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.PBES2_HS384_A192KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS384_A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string PBES2-HS384+A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("PBES2-HS384+A192KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS384_A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for PBES2-HS384+A192KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "PBES2-HS384+A192KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS384_A192KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for PBES2-HS384+A192KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "PBES2-HS384+A192KW", jwa.PBES2_HS384_A192KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant PBES2_HS512_A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.PBES2_HS512_A256KW), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS512_A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string PBES2-HS512+A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("PBES2-HS512+A256KW"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS512_A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for PBES2-HS512+A256KW`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "PBES2-HS512+A256KW"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.PBES2_HS512_A256KW, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for PBES2-HS512+A256KW`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "PBES2-HS512+A256KW", jwa.PBES2_HS512_A256KW.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant RSA1_5`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.RSA1_5), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA1_5, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string RSA1_5`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("RSA1_5"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA1_5, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for RSA1_5`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "RSA1_5"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA1_5, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for RSA1_5`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "RSA1_5", jwa.RSA1_5.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant RSA_OAEP`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.RSA_OAEP), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string RSA-OAEP`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("RSA-OAEP"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for RSA-OAEP`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "RSA-OAEP"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for RSA-OAEP`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "RSA-OAEP", jwa.RSA_OAEP.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant RSA_OAEP_256`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.RSA_OAEP_256), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_256, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string RSA-OAEP-256`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("RSA-OAEP-256"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_256, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for RSA-OAEP-256`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "RSA-OAEP-256"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_256, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for RSA-OAEP-256`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "RSA-OAEP-256", jwa.RSA_OAEP_256.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant RSA_OAEP_384`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.RSA_OAEP_384), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_384, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string RSA-OAEP-384`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("RSA-OAEP-384"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_384, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for RSA-OAEP-384`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "RSA-OAEP-384"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_384, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for RSA-OAEP-384`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "RSA-OAEP-384", jwa.RSA_OAEP_384.String(), `stringified value matches`) {
return
}
})
t.Run(`accept jwa constant RSA_OAEP_512`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(jwa.RSA_OAEP_512), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_512, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept the string RSA-OAEP-512`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept("RSA-OAEP-512"), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_512, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`accept fmt.Stringer for RSA-OAEP-512`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: "RSA-OAEP-512"}), `accept is successful`) {
return
}
if !assert.Equal(t, jwa.RSA_OAEP_512, dst, `accepted value should be equal to constant`) {
return
}
})
t.Run(`stringification for RSA-OAEP-512`, func(t *testing.T) {
t.Parallel()
if !assert.Equal(t, "RSA-OAEP-512", jwa.RSA_OAEP_512.String(), `stringified value matches`) {
return
}
})
t.Run(`bail out on random integer value`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.Error(t, dst.Accept(1), `accept should fail`) {
return
}
})
t.Run(`do not accept invalid (totally made up) string value`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.Error(t, dst.Accept(`totallyInvalidValue`), `accept should fail`) {
return
}
})
t.Run(`check symmetric values`, func(t *testing.T) {
t.Parallel()
t.Run(`A128GCMKW`, func(t *testing.T) {
assert.True(t, jwa.A128GCMKW.IsSymmetric(), `jwa.A128GCMKW should be symmetric`)
})
t.Run(`A128KW`, func(t *testing.T) {
assert.True(t, jwa.A128KW.IsSymmetric(), `jwa.A128KW should be symmetric`)
})
t.Run(`A192GCMKW`, func(t *testing.T) {
assert.True(t, jwa.A192GCMKW.IsSymmetric(), `jwa.A192GCMKW should be symmetric`)
})
t.Run(`A192KW`, func(t *testing.T) {
assert.True(t, jwa.A192KW.IsSymmetric(), `jwa.A192KW should be symmetric`)
})
t.Run(`A256GCMKW`, func(t *testing.T) {
assert.True(t, jwa.A256GCMKW.IsSymmetric(), `jwa.A256GCMKW should be symmetric`)
})
t.Run(`A256KW`, func(t *testing.T) {
assert.True(t, jwa.A256KW.IsSymmetric(), `jwa.A256KW should be symmetric`)
})
t.Run(`DIRECT`, func(t *testing.T) {
assert.True(t, jwa.DIRECT.IsSymmetric(), `jwa.DIRECT should be symmetric`)
})
t.Run(`ECDH_ES`, func(t *testing.T) {
assert.False(t, jwa.ECDH_ES.IsSymmetric(), `jwa.ECDH_ES should NOT be symmetric`)
})
t.Run(`ECDH_ES_A128KW`, func(t *testing.T) {
assert.False(t, jwa.ECDH_ES_A128KW.IsSymmetric(), `jwa.ECDH_ES_A128KW should NOT be symmetric`)
})
t.Run(`ECDH_ES_A192KW`, func(t *testing.T) {
assert.False(t, jwa.ECDH_ES_A192KW.IsSymmetric(), `jwa.ECDH_ES_A192KW should NOT be symmetric`)
})
t.Run(`ECDH_ES_A256KW`, func(t *testing.T) {
assert.False(t, jwa.ECDH_ES_A256KW.IsSymmetric(), `jwa.ECDH_ES_A256KW should NOT be symmetric`)
})
t.Run(`PBES2_HS256_A128KW`, func(t *testing.T) {
assert.True(t, jwa.PBES2_HS256_A128KW.IsSymmetric(), `jwa.PBES2_HS256_A128KW should be symmetric`)
})
t.Run(`PBES2_HS384_A192KW`, func(t *testing.T) {
assert.True(t, jwa.PBES2_HS384_A192KW.IsSymmetric(), `jwa.PBES2_HS384_A192KW should be symmetric`)
})
t.Run(`PBES2_HS512_A256KW`, func(t *testing.T) {
assert.True(t, jwa.PBES2_HS512_A256KW.IsSymmetric(), `jwa.PBES2_HS512_A256KW should be symmetric`)
})
t.Run(`RSA1_5`, func(t *testing.T) {
assert.False(t, jwa.RSA1_5.IsSymmetric(), `jwa.RSA1_5 should NOT be symmetric`)
})
t.Run(`RSA_OAEP`, func(t *testing.T) {
assert.False(t, jwa.RSA_OAEP.IsSymmetric(), `jwa.RSA_OAEP should NOT be symmetric`)
})
t.Run(`RSA_OAEP_256`, func(t *testing.T) {
assert.False(t, jwa.RSA_OAEP_256.IsSymmetric(), `jwa.RSA_OAEP_256 should NOT be symmetric`)
})
t.Run(`RSA_OAEP_384`, func(t *testing.T) {
assert.False(t, jwa.RSA_OAEP_384.IsSymmetric(), `jwa.RSA_OAEP_384 should NOT be symmetric`)
})
t.Run(`RSA_OAEP_512`, func(t *testing.T) {
assert.False(t, jwa.RSA_OAEP_512.IsSymmetric(), `jwa.RSA_OAEP_512 should NOT be symmetric`)
})
})
t.Run(`check list of elements`, func(t *testing.T) {
t.Parallel()
var expected = map[jwa.KeyEncryptionAlgorithm]struct{}{
jwa.A128GCMKW: {},
jwa.A128KW: {},
jwa.A192GCMKW: {},
jwa.A192KW: {},
jwa.A256GCMKW: {},
jwa.A256KW: {},
jwa.DIRECT: {},
jwa.ECDH_ES: {},
jwa.ECDH_ES_A128KW: {},
jwa.ECDH_ES_A192KW: {},
jwa.ECDH_ES_A256KW: {},
jwa.PBES2_HS256_A128KW: {},
jwa.PBES2_HS384_A192KW: {},
jwa.PBES2_HS512_A256KW: {},
jwa.RSA1_5: {},
jwa.RSA_OAEP: {},
jwa.RSA_OAEP_256: {},
jwa.RSA_OAEP_384: {},
jwa.RSA_OAEP_512: {},
}
for _, v := range jwa.KeyEncryptionAlgorithms() {
if _, ok := expected[v]; !assert.True(t, ok, `%s should be in the expected list`, v) {
return
}
delete(expected, v)
}
if !assert.Len(t, expected, 0) {
return
}
})
}
// Note: this test can NOT be run in parallel as it uses options with global effect.
func TestKeyEncryptionAlgorithmCustomAlgorithm(t *testing.T) {
// These subtests can NOT be run in parallel as options with global effect change.
customAlgorithm := jwa.KeyEncryptionAlgorithm("custom-algorithm")
// Unregister the custom algorithm, in case tests fail.
t.Cleanup(func() {
jwa.UnregisterKeyEncryptionAlgorithm(customAlgorithm)
})
t.Run(`with custom algorithm registered`, func(t *testing.T) {
jwa.RegisterKeyEncryptionAlgorithm(customAlgorithm)
t.Run(`accept variable used to register custom algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(customAlgorithm), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`accept the string custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(`custom-algorithm`), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`accept fmt.Stringer for custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: `custom-algorithm`}), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`check symmetric`, func(t *testing.T) {
t.Parallel()
assert.False(t, customAlgorithm.IsSymmetric(), `custom algorithm should NOT be symmetric`)
})
})
t.Run(`with custom algorithm deregistered`, func(t *testing.T) {
jwa.UnregisterKeyEncryptionAlgorithm(customAlgorithm)
t.Run(`reject variable used to register custom algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(customAlgorithm), `accept failed`)
})
t.Run(`reject the string custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(`custom-algorithm`), `accept failed`)
})
t.Run(`reject fmt.Stringer for custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(stringer{src: `custom-algorithm`}), `accept failed`)
})
t.Run(`check symmetric`, func(t *testing.T) {
t.Parallel()
assert.False(t, customAlgorithm.IsSymmetric(), `custom algorithm should NOT be symmetric`)
})
})
t.Run(`with custom algorithm registered with WithSymmetricAlgorithm(false)`, func(t *testing.T) {
jwa.RegisterKeyEncryptionAlgorithmWithOptions(customAlgorithm, jwa.WithSymmetricAlgorithm(false))
t.Run(`accept variable used to register custom algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(customAlgorithm), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`accept the string custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(`custom-algorithm`), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`accept fmt.Stringer for custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: `custom-algorithm`}), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`check symmetric`, func(t *testing.T) {
t.Parallel()
assert.False(t, customAlgorithm.IsSymmetric(), `custom algorithm should NOT be symmetric`)
})
})
t.Run(`with custom algorithm deregistered (was WithSymmetricAlgorithm(false))`, func(t *testing.T) {
jwa.UnregisterKeyEncryptionAlgorithm(customAlgorithm)
t.Run(`reject variable used to register custom algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(customAlgorithm), `accept failed`)
})
t.Run(`reject the string custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(`custom-algorithm`), `accept failed`)
})
t.Run(`reject fmt.Stringer for custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(stringer{src: `custom-algorithm`}), `accept failed`)
})
t.Run(`check symmetric`, func(t *testing.T) {
t.Parallel()
assert.False(t, customAlgorithm.IsSymmetric(), `custom algorithm should NOT be symmetric`)
})
})
t.Run(`with custom algorithm registered with WithSymmetricAlgorithm(true)`, func(t *testing.T) {
jwa.RegisterKeyEncryptionAlgorithmWithOptions(customAlgorithm, jwa.WithSymmetricAlgorithm(true))
t.Run(`accept variable used to register custom algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(customAlgorithm), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`accept the string custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(`custom-algorithm`), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`accept fmt.Stringer for custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
if !assert.NoError(t, dst.Accept(stringer{src: `custom-algorithm`}), `accept is successful`) {
return
}
assert.Equal(t, customAlgorithm, dst, `accepted value should be equal to variable`)
})
t.Run(`check symmetric`, func(t *testing.T) {
t.Parallel()
assert.True(t, customAlgorithm.IsSymmetric(), `custom algorithm should be symmetric`)
})
})
t.Run(`with custom algorithm deregistered (was WithSymmetricAlgorithm(true))`, func(t *testing.T) {
jwa.UnregisterKeyEncryptionAlgorithm(customAlgorithm)
t.Run(`reject variable used to register custom algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(customAlgorithm), `accept failed`)
})
t.Run(`reject the string custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(`custom-algorithm`), `accept failed`)
})
t.Run(`reject fmt.Stringer for custom-algorithm`, func(t *testing.T) {
t.Parallel()
var dst jwa.KeyEncryptionAlgorithm
assert.Error(t, dst.Accept(stringer{src: `custom-algorithm`}), `accept failed`)
})
t.Run(`check symmetric`, func(t *testing.T) {
t.Parallel()
assert.False(t, customAlgorithm.IsSymmetric(), `custom algorithm should NOT be symmetric`)
})
})
}
|