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
|
// ./tests/catch2-tests [section] -s
/////////////////////// Qt includes
#include <QDebug>
#include <QString>
#include <QDir>
/////////////////////// Catch2 includes
#include <catch2/catch_test_macros.hpp>
#include <catch2/matchers/catch_matchers_floating_point.hpp>
/////////////////////// Local includes
#include "TestUtils.hpp"
#include <libXpertMass/ChemicalGroup.hpp>
namespace MsXpS
{
namespace libXpertMassCore
{
TestUtils test_utils_chemical_group_rule_1_letter("protein-1-letter", 1);
ErrorList error_list_chemical_group_rule;
SCENARIO("ChemicalGroup object can be constructed empty", "[ChemicalGroup]")
{
WHEN("Constructing an empty ChemicalGroup")
{
ChemicalGroup chemical_group;
THEN("The object is invalid")
{
REQUIRE_FALSE(chemical_group.isValid());
}
AND_WHEN(
"Setting the name, the pKa, the charge bool, the Enums::ChemicalGroupTrapped")
{
chemical_group.setName("N-term NH2");
chemical_group.setPka(9.6);
chemical_group.setAcidCharged(true);
chemical_group.setPolRule(Enums::ChemicalGroupTrapped::LEFT);
THEN("The ChemicalGroup is valid.")
{
REQUIRE(chemical_group.isValid());
}
AND_WHEN("Constructing two fully initialized ChemicalGroupRule")
{
ChemicalGroupRule chemical_group_rule_1;
chemical_group_rule_1.setName("Acetylation");
chemical_group_rule_1.setEntity("LE_PLM_MODIF");
chemical_group_rule_1.setFate(Enums::ChemicalGroupFate::LOST);
ChemicalGroupRule chemical_group_rule_2;
chemical_group_rule_2.setName("Formylation");
chemical_group_rule_2.setEntity("LE_PLM_MODIF");
chemical_group_rule_2.setFate(Enums::ChemicalGroupFate::LOST);
AND_WHEN("Adding that rule to the chemical group")
{
chemical_group.getRulesRef().push_back(
std::make_shared<ChemicalGroupRule>(chemical_group_rule_1));
chemical_group.getRulesRef().push_back(
std::make_shared<ChemicalGroupRule>(chemical_group_rule_2));
REQUIRE(chemical_group.getRulesRef().size() == 2);
std::size_t index = 0;
THEN(
"The ChemicalGroupRule instances are findable in the "
"ChemicalGroup.")
{
REQUIRE(chemical_group.getRulesRef().size() == 2);
REQUIRE(chemical_group.getRulesCstRef().size() == 2);
ChemicalGroupRuleSPtr chemical_group_rule_1_sp =
chemical_group.getRulesCstRef().at(0);
REQUIRE(chemical_group_rule_1_sp != nullptr);
REQUIRE(chemical_group_rule_1_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
// Begin erroneous cases
REQUIRE(nullptr ==
chemical_group.findRuleByEntity("Not_existent", index));
std::size_t out_of_bounds_index = 10;
REQUIRE(nullptr == chemical_group.findRuleByEntity(
"LE_PLM_MODIF", out_of_bounds_index));
REQUIRE(nullptr ==
chemical_group.findRuleByName("Not_existent", index));
REQUIRE(nullptr == chemical_group.findRuleByName(
"Acetylation", out_of_bounds_index));
// End erroneous cases
chemical_group_rule_1_sp =
chemical_group.findRuleByEntity("LE_PLM_MODIF", index);
REQUIRE(chemical_group_rule_1_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(index == 0);
chemical_group_rule_1_sp =
chemical_group.findRuleByName("Acetylation", index);
REQUIRE(chemical_group_rule_1_sp->getName().toStdString() ==
"Acetylation");
REQUIRE(index == 0);
chemical_group_rule_1_sp = chemical_group.findRuleByEntityAndName(
"LE_PLM_MODIF", "Acetylation", index);
REQUIRE(chemical_group_rule_1_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(chemical_group_rule_1_sp->getName().toStdString() ==
"Acetylation");
REQUIRE(index == 0);
ChemicalGroupRuleSPtr chemical_group_rule_2_sp =
chemical_group.getRulesRef().at(1);
REQUIRE(chemical_group_rule_2_sp != nullptr);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
index = 0;
chemical_group_rule_2_sp =
chemical_group.findRuleByEntity("LE_PLM_MODIF", index);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(index == 0);
index = 1;
chemical_group_rule_2_sp =
chemical_group.findRuleByEntity("LE_PLM_MODIF", index);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(index == 1);
index = 0;
chemical_group_rule_2_sp =
chemical_group.findRuleByName("Formylation", index);
REQUIRE(chemical_group_rule_2_sp->getName().toStdString() ==
"Formylation");
REQUIRE(index == 1);
index = 0;
chemical_group_rule_2_sp = chemical_group.findRuleByEntityAndName(
"LE_PLM_MODIF", "Formylation", index);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(chemical_group_rule_2_sp->getName().toStdString() ==
"Formylation");
REQUIRE(index == 1);
}
AND_WHEN(
"An new ChemicalGroup is allocated and initialized with "
"operator=() or allocated with the copy constructor")
{
ChemicalGroup other_chemical_group;
other_chemical_group = chemical_group;
ChemicalGroup another_chemical_group(other_chemical_group);
THEN("The new ChemicalGroup is identical to the first one.")
{
REQUIRE(another_chemical_group.isValid());
REQUIRE(another_chemical_group.getName().toStdString() ==
"N-term NH2");
REQUIRE_THAT(chemical_group.getPka(),
Catch::Matchers::WithinAbs(9.6, 0.0001));
REQUIRE(chemical_group.isAcidCharged());
REQUIRE(chemical_group.getPolRule() ==
Enums::ChemicalGroupTrapped::LEFT);
ChemicalGroupRuleSPtr chemical_group_rule_1_sp =
another_chemical_group.getRulesRef().at(0);
REQUIRE(chemical_group_rule_1_sp != nullptr);
REQUIRE(chemical_group_rule_1_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
chemical_group_rule_1_sp =
another_chemical_group.findRuleByEntity("LE_PLM_MODIF", index);
REQUIRE(chemical_group_rule_1_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(index == 0);
chemical_group_rule_1_sp =
another_chemical_group.findRuleByName("Acetylation", index);
REQUIRE(chemical_group_rule_1_sp->getName().toStdString() ==
"Acetylation");
REQUIRE(index == 0);
chemical_group_rule_1_sp =
another_chemical_group.findRuleByEntityAndName(
"LE_PLM_MODIF", "Acetylation", index);
REQUIRE(chemical_group_rule_1_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(chemical_group_rule_1_sp->getName().toStdString() ==
"Acetylation");
REQUIRE(index == 0);
ChemicalGroupRuleSPtr chemical_group_rule_2_sp =
another_chemical_group.getRulesRef().at(1);
REQUIRE(chemical_group_rule_2_sp != nullptr);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
index = 0;
chemical_group_rule_2_sp =
another_chemical_group.findRuleByEntity("LE_PLM_MODIF", index);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(index == 0);
index = 1;
chemical_group_rule_2_sp =
another_chemical_group.findRuleByEntity("LE_PLM_MODIF", index);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(index == 1);
index = 0;
chemical_group_rule_2_sp =
another_chemical_group.findRuleByName("Formylation", index);
REQUIRE(chemical_group_rule_2_sp->getName().toStdString() ==
"Formylation");
REQUIRE(index == 1);
index = 0;
chemical_group_rule_2_sp =
another_chemical_group.findRuleByEntityAndName(
"LE_PLM_MODIF", "Formylation", index);
REQUIRE(chemical_group_rule_2_sp->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(chemical_group_rule_2_sp->getName().toStdString() ==
"Formylation");
REQUIRE(index == 1);
}
}
}
}
}
}
}
SCENARIO(
"ChemicalGroup objects can be created by reading a mnmchemgroup XML element",
"[ChemicalGroup]")
{
WHEN("Constructing an empty ChemicalGroup")
{
ChemicalGroup chemical_group;
AND_WHEN("Initializing it with a <mnmchemgroup> XML element")
{
// QString dom_string = "<mnmchemgroup><name>N-term
// NH2</name><pka>9.6</pka><acidcharged>TRUE</acidcharged><polrule>left_trapped</polrule><chemgrouprule><entity>LE_PLM_MODIF</entity><name>Acetylation</name><outcome>LOST</outcome></chemgrouprule></mnmchemgroup>";
QDomDocument document;
QDomElement mnmchemgroup_element = document.createElement("mnmchemgroup");
QDomElement name_element = document.createElement("name");
QDomText name_text = document.createTextNode("N-term NH2");
name_element.appendChild(name_text);
QDomElement pka_element = document.createElement("pka");
QDomText pka_text = document.createTextNode("9.6");
pka_element.appendChild(pka_text);
QDomElement acidcharged_element = document.createElement("acidcharged");
QDomText acidcharged_text = document.createTextNode("TRUE");
acidcharged_element.appendChild(acidcharged_text);
QDomElement polrule_element = document.createElement("polrule");
QDomText polrule_text = document.createTextNode("left_trapped");
polrule_element.appendChild(polrule_text);
QDomElement chemgrouprule_element =
document.createElement("chemgrouprule");
QDomElement entity_element = document.createElement("entity");
QDomText entity_text = document.createTextNode("LE_PLM_MODIF");
entity_element.appendChild(entity_text);
QDomElement rule_name_element = document.createElement("name");
QDomText rule_name_text = document.createTextNode("Acetylation");
rule_name_element.appendChild(rule_name_text);
QDomElement outcome_element = document.createElement("outcome");
QDomText outcome_text = document.createTextNode("LOST");
outcome_element.appendChild(outcome_text);
chemgrouprule_element.appendChild(entity_element);
chemgrouprule_element.appendChild(rule_name_element);
chemgrouprule_element.appendChild(outcome_element);
mnmchemgroup_element.appendChild(name_element);
mnmchemgroup_element.appendChild(pka_element);
mnmchemgroup_element.appendChild(acidcharged_element);
mnmchemgroup_element.appendChild(polrule_element);
mnmchemgroup_element.appendChild(chemgrouprule_element);
document.appendChild(mnmchemgroup_element);
REQUIRE(chemical_group.renderXmlMnmElement(mnmchemgroup_element));
THEN("The object is valid and the member data are set correctly")
{
REQUIRE(chemical_group.isValid());
REQUIRE(chemical_group.getName().toStdString() == "N-term NH2");
REQUIRE_THAT(chemical_group.getPka(),
Catch::Matchers::WithinAbs(9.6, 0.001));
REQUIRE(chemical_group.isAcidCharged());
REQUIRE(chemical_group.getPolRule() == Enums::ChemicalGroupTrapped::LEFT);
REQUIRE(
chemical_group.getRulesCstRef().front()->getName().toStdString() ==
"Acetylation");
REQUIRE(
chemical_group.getRulesCstRef().front()->getEntity().toStdString() ==
"LE_PLM_MODIF");
REQUIRE(chemical_group.getRulesCstRef().front()->getFate() ==
Enums::ChemicalGroupFate::LOST);
}
}
}
}
SCENARIO(
"ChemicalGroup objects can be created by reading a mdfchemgroup XML element",
"[ChemicalGroup]")
{
WHEN("Constructing an empty ChemicalGroup")
{
ChemicalGroup chemical_group;
AND_WHEN("Initializing it with a <mdfchemgroup> XML element")
{
// QString dom_string =
// "<mdfchemgroup><name>Phosphorylation</name><pka>1.2</pka><acidcharged>FALSE</acidcharged></mdfchemgroup>";
QDomDocument document;
QDomElement mdfchemgroup_element = document.createElement("mdfchemgroup");
QDomElement name_element = document.createElement("name");
QDomText name_text = document.createTextNode("Phosphorylation");
name_element.appendChild(name_text);
QDomElement pka_element = document.createElement("pka");
QDomText pka_text = document.createTextNode("1.2");
pka_element.appendChild(pka_text);
QDomElement acidcharged_element = document.createElement("acidcharged");
QDomText acidcharged_text = document.createTextNode("FALSE");
acidcharged_element.appendChild(acidcharged_text);
mdfchemgroup_element.appendChild(name_element);
mdfchemgroup_element.appendChild(pka_element);
mdfchemgroup_element.appendChild(acidcharged_element);
document.appendChild(mdfchemgroup_element);
REQUIRE(chemical_group.renderXmlMdfElement(mdfchemgroup_element));
THEN("The object is valid and the member data are set correctly")
{
REQUIRE(chemical_group.isValid());
REQUIRE(chemical_group.getName().toStdString() == "Phosphorylation");
REQUIRE_THAT(chemical_group.getPka(),
Catch::Matchers::WithinAbs(1.2, 0.001));
REQUIRE_FALSE(chemical_group.isAcidCharged());
}
}
}
}
} // namespace libXpertMassCore
} // namespace MsXpS
|