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
|
// ./tests/catch2-tests [section] -s
/////////////////////// Stdlib includes
/////////////////////// Qt includes
#include <QDebug>
#include <QString>
/////////////////////// Catch2 includes
#include <catch2/catch_test_macros.hpp>
#include <catch2/matchers/catch_matchers_floating_point.hpp>
/////////////////////// libXpertMassCore includes
#include <libXpertMass/Isotope.hpp>
/////////////////////// Local includes
#include "TestUtils.hpp"
namespace MsXpS
{
namespace libXpertMassCore
{
SCENARIO("Isotope construction with correct arguments", "[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
test_utils.initializeXpertmassLibrary();
WHEN("An isotope is constructed with fully descriptive arguments")
{
Isotope isotope_1(
"carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("All the member data are set accordingly")
{
// qDebug() << "The isotope string is: " <<
// isotope_1.toString().toStdString();
REQUIRE(isotope_1.getName().toStdString() == "carbon");
REQUIRE(isotope_1.getSymbol().toStdString() == "C");
REQUIRE(isotope_1.getMass() == 12.0);
REQUIRE(isotope_1.getProbability() ==
0.989211941850466902614869013632414862513542175292968750000000);
AND_THEN("The Isotope should both be valid and validate successfully")
{
REQUIRE(isotope_1.isValid());
REQUIRE(isotope_1.validate(&error_list));
REQUIRE(error_list_p->size() == 0);
}
WHEN("A new Isotope is assignment operator constructed")
{
Isotope new_isotope;
new_isotope = isotope_1;
THEN("The new instance should be identical to the first one")
{
REQUIRE(new_isotope == isotope_1);
REQUIRE(new_isotope.validate(&error_list));
REQUIRE(error_list_p->size() == 0);
}
THEN("An Isotope instance == compared to itself should return true")
{
REQUIRE((isotope_1 == isotope_1));
}
THEN("An Isotope instance != compared to itself should return false")
{
REQUIRE_FALSE((isotope_1 != isotope_1));
}
}
WHEN(
"An Isotope is assigned to itself, a reference to itself is returned")
{
REQUIRE((isotope_1 = isotope_1) == isotope_1);
}
}
AND_WHEN(
"An identical isotope is constructed with an identical textual "
"representation")
{
QString isotope_string(" carbon, C, 12.0, ");
isotope_string +=
"0.989211941850466902614869013632414862513542175292968750000000";
// qDebug() << "The isotope_string:" << isotope_string.toStdString();
Isotope isotope_2(isotope_string);
THEN("All the member data are set accordingly")
{
// qDebug() << "The isotope string is: " <<
// isotope_1.toString().toStdString();
REQUIRE(isotope_2.getName() == "carbon");
REQUIRE(isotope_2.getSymbol() == "C");
REQUIRE(isotope_2.getMass() == 12.0);
REQUIRE(isotope_2.getProbability() ==
0.989211941850466902614869013632414862513542175292968750000000);
AND_THEN("The Isotope should both be valid and validate successfully")
{
REQUIRE(isotope_2.isValid());
QVector<QString> error_list;
REQUIRE(isotope_2.validate(&error_list));
REQUIRE(error_list_p->size() == 0);
}
AND_THEN("Both isotopes are identical")
{
REQUIRE(isotope_2 == isotope_1);
}
}
}
AND_WHEN("A new isotope is copy-constructed")
{
Isotope isotope_3(isotope_1);
THEN("All the member data are set accordingly")
{
REQUIRE(isotope_3.getName().toStdString() == "carbon");
REQUIRE(isotope_3.getSymbol().toStdString() == "C");
REQUIRE(isotope_3.getMass() == 12.0);
REQUIRE(isotope_3.getProbability() ==
0.989211941850466902614869013632414862513542175292968750000000);
AND_THEN("The Isotope should both be valid and validate successfully")
{
REQUIRE(isotope_3.isValid());
QVector<QString> error_list;
REQUIRE(isotope_3.validate(&error_list));
REQUIRE(error_list_p->size() == 0);
}
AND_THEN("Both isotopes are identical")
{
REQUIRE(isotope_3 == isotope_1);
}
}
}
AND_WHEN("A new isotope is assignment-operator-constructed")
{
Isotope isotope_4 = isotope_1;
THEN("All the member data are set accordingly")
{
REQUIRE(isotope_4.getName().toStdString() == "carbon");
REQUIRE(isotope_4.getSymbol().toStdString() == "C");
REQUIRE(isotope_4.getMass() == 12.0);
REQUIRE(isotope_4.getProbability() ==
0.989211941850466902614869013632414862513542175292968750000000);
AND_THEN("The Isotope should both be valid and validate successfully")
{
REQUIRE(isotope_4.isValid());
QVector<QString> error_list;
REQUIRE(isotope_4.validate(&error_list));
REQUIRE(error_list_p->size() == 0);
}
AND_THEN("Both isotopes are identical")
{
REQUIRE(isotope_4 == isotope_1);
}
}
}
AND_WHEN(
"An absurd isotope is constructed with a failing descriptive string")
{
QString isotope_string = " nothing, N, 600, 1.3";
Isotope isotope_5(isotope_string);
THEN("The isotope has to be different than the other correct ones")
{
REQUIRE(isotope_5 != isotope_1);
}
}
}
}
SCENARIO("Isotope construction with incorrect arguments", "[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
WHEN("Constructing Isotope with failing element's name")
{
Isotope isotope(
"Carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
AND_WHEN("Copy-constructing a new Isotope using it")
{
Isotope isotope_new(isotope);
THEN("It is also invalid")
{
REQUIRE_FALSE(isotope_new.isValid());
}
}
}
WHEN("Constructing Isotope with all failing members")
{
Isotope isotope("Carbon", "c", -1, 1.1);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
AND_WHEN("Copy-constructing a new Isotope using it")
{
Isotope isotope_new(isotope);
THEN("It is also invalid")
{
REQUIRE_FALSE(isotope_new.isValid());
}
}
}
WHEN("Constructing Isotope with failing element's name")
{
Isotope isotope(
"1Carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Constructing Isotope with failing element's symbol")
{
Isotope isotope(
"carbon",
"c",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Constructing Isotope with failing element's symbol")
{
Isotope isotope(
"carbon",
"1c",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Constructing Isotope with failing mass")
{
Isotope isotope(
"carbon",
"C",
-0.00001,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Constructing Isotope with failing probability")
{
Isotope isotope("carbon", "C", 12.0, -0.00000001);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Constructing Isotope with failing probability")
{
Isotope isotope("carbon", "C", 12.0, 1.0000001);
THEN("The isotope is invalid.")
{
REQUIRE_FALSE(isotope.isValid());
}
}
}
SCENARIO("Isotope instances can be initialized with the four parameters",
"[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
GIVEN("An empty Isotope")
{
Isotope isotope;
WHEN("Initialized with all proper arguments")
{
isotope.initialize("carbon", "C", 12.0, 0.9892119418504669026);
THEN("The Isotope should be valid")
{
REQUIRE(isotope.isValid());
REQUIRE(isotope.validate(&error_list));
}
}
WHEN("Intialized with failing name")
{
isotope.initialize("Carbon", "C", 12.0, 0.9892119418504669026);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Initialized with failing name")
{
isotope.initialize("", "C", 12.0, 0.9892119418504669026);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Initialized with failing symbol")
{
isotope.initialize("carbon", "c", 12.0, 0.9892119418504669026);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Initialized with failing symbol")
{
isotope.initialize("carbon", "", 12.0, 0.9892119418504669026);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Initialized with failing mass")
{
isotope.initialize("carbon", "C", -0.00000120, 0.9892119418504669026);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Initialized with failing probability")
{
isotope.initialize("carbon", "C", 12.0, -0.00001);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
WHEN("Initialized with failing probability")
{
isotope.initialize("carbon", "C", 12.0, 1.00001);
THEN("The Isotope should not be valid")
{
REQUIRE_FALSE(isotope.isValid());
}
}
}
}
SCENARIO("Isotope instances can be initialized piecemeal with setter functions",
"[Isotope]")
{
QVector<QString> error_list;
GIVEN("An empty Isotope instance")
{
Isotope isotope;
THEN("The instance is invalid")
{
REQUIRE_FALSE(isotope.isValid());
}
WHEN("Failing name is set")
{
isotope.setName("carbon");
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Failing name is set")
{
isotope.setName("");
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Failing symbol is set")
{
isotope.setSymbol("carbon");
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Failing symbol is set")
{
isotope.setSymbol("");
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Failing mass is set")
{
isotope.setMass(-0.00001);
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Failing probability is set")
{
isotope.setProbability(-0.00001);
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Failing probability is set")
{
isotope.setProbability(1.000001);
THEN("The Isotope is invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
}
WHEN("Proper name is set")
{
isotope.setName("carbon");
THEN("The Isotope is still invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
AND_WHEN("Proper symbol is set")
{
isotope.setSymbol("C");
THEN("The Isotope is still invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
AND_WHEN("Proper mass is set")
{
isotope.setMass(12.00000);
THEN("The Isotope is still invalid")
{
REQUIRE_FALSE(isotope.validate(&error_list));
}
AND_WHEN("Proper probability is set")
{
isotope.setProbability(0.988);
THEN("The Isotope is finally valid")
{
REQUIRE(isotope.validate(&error_list));
}
}
}
}
}
}
}
SCENARIO("Isotope instances can be initialized with a descriptive text",
"[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
// Easy means to craft various lengths of descriptive text strings.
QStringList isotope_descriptive_strings;
isotope_descriptive_strings
<< "carbon"
<< "C"
<< "12.000000000000000000000000000000000000000000000000000000000000"
<< "0.989211941850466902614869013632414862513542175292968750000000";
QString isotope_descriptive_string = isotope_descriptive_strings.join(",");
GIVEN("Two correct and identical Isotope instances")
{
Isotope isotope_1(
"carbon",
"C",
12.000000000000000000000000000000000000000000000000000000000000,
0.989211941850466902614869013632414862513542175292968750000000);
REQUIRE(isotope_1.isValid());
REQUIRE(isotope_1.validate(&error_list));
Isotope isotope_2(
"carbon",
"C",
12.000000000000000000000000000000000000000000000000000000000000,
0.989211941850466902614869013632414862513542175292968750000000);
REQUIRE(isotope_2.isValid());
REQUIRE(isotope_2.validate(&error_list));
REQUIRE(isotope_1 == isotope_2);
WHEN("Self-documenting one of them to a string")
{
QString isotope_1_string = isotope_1.toString();
THEN("The string has to be correct")
{
REQUIRE(isotope_1_string.toStdString() ==
isotope_descriptive_string.toStdString());
}
AND_WHEN("The descriptive text is cleared")
{
isotope_descriptive_string.clear();
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(isotope_descriptive_string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The descriptive text is incomplete")
{
QStringList strings = isotope_descriptive_strings;
strings.removeLast();
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The element name in the descriptive text is incorrect")
{
QStringList strings = isotope_descriptive_strings;
strings[0] = "1234";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The element name in the descriptive text starts uppercase")
{
QStringList strings = isotope_descriptive_strings;
strings[0] = "Carbon";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The symbol in the descriptive text is incorrect")
{
QStringList strings = isotope_descriptive_strings;
strings[1] = "1234";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The symbol in the descriptive text is lowercase")
{
QStringList strings = isotope_descriptive_strings;
strings[1] = "c";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The mass in the descriptive text is < 0")
{
QStringList strings = isotope_descriptive_strings;
strings[2] = "-0.0000001";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The mass in the descriptive text is not double")
{
QStringList strings = isotope_descriptive_strings;
strings[2] = "waouw";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The probability in the descriptive text is < 0")
{
QStringList strings = isotope_descriptive_strings;
strings[3] = "-0.0000001";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The probability in the descriptive text is > 1")
{
QStringList strings = isotope_descriptive_strings;
strings[3] = "1.0000001";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
AND_WHEN("The probability in the descriptive text is not double")
{
QStringList strings = isotope_descriptive_strings;
strings[3] = "a1254";
QString string = strings.join(",");
THEN("Initialization of an Isotope instance using it should fail")
{
REQUIRE(isotope_1.initialize(string) == false);
AND_THEN("The isotope should become invalid")
{
REQUIRE_FALSE(isotope_1.isValid());
}
}
}
}
}
}
SCENARIO("All Isotope member data can be set using setters", "[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
WHEN("An absurd Isotope is created starting for a failing descriptive string")
{
QString isotope_string = " 0, nothing, N, 600, 1200, 1200, 1,";
isotope_string += "1.3,";
isotope_string += "-2,";
isotope_string += "0 ";
Isotope isotope_1(isotope_string);
AND_WHEN("Using setters to configure it and make it a correct Isotope")
{
// Now test all the set functions.
isotope_1.setName("carbon");
isotope_1.setSymbol("C");
isotope_1.setMass(12.0);
isotope_1.setProbability(
0.989211941850466902614869013632414862513542175292968750000000);
}
AND_WHEN(
"Another Isotope is constructed to be identical to the configured one")
{
Isotope isotope_2(
"carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("Both isotopes need to turn out identical")
{
REQUIRE("isotope_1 == isotope_2");
}
}
}
}
SCENARIO("Isotope instances can be compared with operators ==() and !=()",
"[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
WHEN("Two identical Isotope instances are created")
{
Isotope isotope_1(
"carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
Isotope isotope_2(
"carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("Operators ==() and !=() should return correct results")
{
REQUIRE(isotope_1 == isotope_2);
REQUIRE_FALSE(isotope_1 != isotope_2);
}
AND_WHEN("One of the isotopes is modified")
{
isotope_1.setSymbol("N");
THEN("Operators ==() and !=() should return correct results")
{
REQUIRE(isotope_1 != isotope_2);
REQUIRE_FALSE(isotope_1 == isotope_2);
}
}
}
}
SCENARIO("Failed validation of Isotope instances report error strings",
"[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
WHEN("A correct Isotope is instanciated")
{
Isotope isotope_1(
"carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("Validation should be successful with no error strings")
{
REQUIRE(isotope_1.isValid());
REQUIRE(isotope_1.validate(&error_list));
REQUIRE(!error_list_p->size());
}
AND_WHEN("The symbol is crippled")
{
isotope_1.setSymbol("");
THEN("Validation should return an informative string")
{
REQUIRE_FALSE(isotope_1.validate(&error_list));
REQUIRE(error_list_p->size() == 1);
REQUIRE(error_list.front().toStdString() ==
"Failed to validate the element's symbol.");
}
}
AND_WHEN("The mass is also crippled")
{
isotope_1.setSymbol("");
isotope_1.setMass(-10);
THEN("Validation should return an informative string")
{
error_list.clear();
REQUIRE_FALSE(isotope_1.validate(&error_list));
REQUIRE(error_list_p->size() == 2);
REQUIRE(error_list.front().toStdString() ==
"Failed to validate the element's symbol.");
REQUIRE(error_list.back().toStdString() ==
"Failed to validate the isotope's mass.");
}
}
AND_WHEN("The probability is also crippled")
{
isotope_1.setSymbol("");
isotope_1.setMass(-10);
isotope_1.setProbability(-0.10);
THEN("Validation should return an informative string")
{
error_list.clear();
REQUIRE_FALSE(isotope_1.validate(&error_list));
REQUIRE(error_list.front().toStdString() ==
"Failed to validate the element's symbol.");
REQUIRE(error_list.back().toStdString() ==
"Failed to validate the isotope's probability.");
}
}
}
}
SCENARIO("Isotope instances can be self-documenting with as descriptive string",
"[Isotope]")
{
TestUtils test_utils;
QVector<QString> error_list;
WHEN("Instantiating a correct Isotope")
{
Isotope isotope_1(
"carbon",
"C",
12.0,
0.989211941850466902614869013632414862513542175292968750000000);
THEN("That Isotope instance can produce a descriptive string")
{
QString isotope_string = isotope_1.toString();
REQUIRE(isotope_string.toStdString() ==
"carbon,C,"
"12.000000000000000000000000000000000000000000000000000000000000,"
"0.989211941850466902614869013632414862513542175292968750000000");
AND_WHEN("That descriptive string is used to instantiate a new Isotope")
{
Isotope isotope_2(isotope_string);
THEN("Both isotopes need to be identical")
{
REQUIRE(isotope_1 == isotope_2);
REQUIRE_FALSE(isotope_1 != isotope_2);
}
}
}
}
}
} // namespace libXpertMassCore
} // namespace MsXpS
|