File: test_FragmentationRule.cpp

package info (click to toggle)
libxpertmass 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,908 kB
  • sloc: cpp: 50,586; xml: 2,193; python: 417; ansic: 70; makefile: 33
file content (421 lines) | stat: -rw-r--r-- 14,572 bytes parent folder | download
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
/////////////////////// 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/FragmentationRule.hpp>
#include <libXpertMass/Sequence.hpp>
#include <libXpertMass/Monomer.hpp>

namespace MsXpS
{
namespace libXpertMassCore
{

TestUtils test_utils_frag_rule_1_letter("protein-1-letter", 1);
TestUtils test_utils_frag_rule_3_letters("protein-3-letters", 1);

ErrorList error_list_frag_rule;

SCENARIO(
  "FragmentationRule objects can be constructed fully qualified in one go",
  "[FragmentationRule]")
{
  test_utils_frag_rule_1_letter.initializeXpertmassLibrary();
  PolChemDefCstSPtr pol_chem_def_csp =
    test_utils_frag_rule_1_letter.msp_polChemDef;

  WHEN("Constructing a FragmentationRule with all valid parameters")
  {
    FragmentationRule frag_rule(
      pol_chem_def_csp, "a-fgr-2", "F", "D", "E", "thecomment", "+H100");

    THEN("The FragmentationRule is valid and does validate successfully")
    {
      REQUIRE(frag_rule.isValid());
      REQUIRE(frag_rule.validate(error_list_frag_rule));
    }
    AND_THEN("The FragmentationRule is valid and does validate successfully")
    {
      REQUIRE(frag_rule.getName().toStdString() == "a-fgr-2");
      REQUIRE(frag_rule.getPrevCode().toStdString() == "F");
      REQUIRE(frag_rule.getCurrCode().toStdString() == "D");
      REQUIRE(frag_rule.getNextCode().toStdString() == "E");
      REQUIRE(frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
              "+H100");
      REQUIRE(frag_rule.getComment().toStdString() == "thecomment");
    }
  }
}

SCENARIO(
  "FragmentationRule objects can be constructed from a <fgr> XML element",
  "[FragmentationRule]")
{
  PolChemDefCstSPtr pol_chem_def_csp =
    test_utils_frag_rule_1_letter.msp_polChemDef;

  WHEN("Constructing a FragmentationRule with a valid XML element")
  {
    //  Totally fake fgr !!!
    // <fgr>
    // <name>a-fgr-2</name>
    // <formula>+H100</formula>
    // <prev-mnm-code>F</prev-mnm-code>
    // <curr-mnm-code>D</curr-mnm-code>
    // <next-mnm-code>E</next-mnm-code>
    // <comment>thecomment</comment>
    // </fgr>


    QStringList dom_strings{"fgr", // 0
                            "name",
                            "a-fgr-2",
                            "formula",
                            "+H100",
                            "prev-mnm-code",
                            "F",
                            "curr-mnm-code",
                            "D",
                            "next-mnm-code",
                            "E",
                            "comment",
                            "thecomment"};


    QDomDocument document =
      test_utils_frag_rule_1_letter.craftFgrDomDocument(dom_strings);
    QDomElement frag_rule_element =
      document.elementsByTagName(dom_strings[0]).item(0).toElement();

    //  Use indentation 1 to mimick what happens in XpertMass.
    // qDebug().noquote() << "The document:\n'"
    //                    << document.toString(/*indentation*/ 1) << "'";

    //  We need to remove all spaces from the strings to be able to compare
    //  them. There must be a bug somewhere because with the original output, at
    //  the screen everything seems correct,  but test FAILED.

    QString document_string = document.toString(/*indentation*/ 0);
    document_string         = Utils::unspacify(document_string);

    QString expected_string =
      "<fgr><name>a-fgr-2</name><formula>+H100</formula><prev-mnm-code>F</"
      "prev-mnm-code><curr-mnm-code>D</curr-mnm-code><next-mnm-code>E</"
      "next-mnm-code><comment>thecomment</comment></fgr>";
    expected_string = Utils::unspacify(expected_string);

    REQUIRE(document_string.toStdString() == expected_string.toStdString());

    FragmentationRule frag_rule(pol_chem_def_csp, frag_rule_element, 1);

    THEN("The FragmentationRule is valid and does validate successfully")
    {
      REQUIRE(frag_rule.isValid());
      REQUIRE(frag_rule.validate(error_list_frag_rule));
    }
    AND_THEN("The FragmentationRule is valid and does validate successfully")
    {
      REQUIRE(frag_rule.getName().toStdString() == "a-fgr-2");
      REQUIRE(frag_rule.getPrevCode().toStdString() == "F");
      REQUIRE(frag_rule.getCurrCode().toStdString() == "D");
      REQUIRE(frag_rule.getNextCode().toStdString() == "E");
      REQUIRE(frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
              "+H100");
      REQUIRE(frag_rule.getComment().toStdString() == "thecomment");
    }
  }
}

SCENARIO(
  "FragmentationRule objects can be constructed empty and then initialized "
  "piecemeal "
  "until they are valid",
  "[FragmentationRule]")
{
  PolChemDefCstSPtr pol_chem_def_csp =
    test_utils_frag_rule_1_letter.msp_polChemDef;

  WHEN("Constructing a FragmentationRule with no valid parameter")
  {
    FragmentationRule frag_rule;

    THEN("The FragmentationRule is invalid and does not validate successfully")
    {
      REQUIRE_FALSE(frag_rule.isValid());
      REQUIRE_FALSE(frag_rule.validate(error_list_frag_rule));
    }

    AND_WHEN(
      "Setting PolChemDef, a name, correct prev/curr/next codes, formula and "
      "comment")
    {
      frag_rule.setPolchemDefCstSPtr(pol_chem_def_csp);
      frag_rule.setName("a-fgr-2");
      frag_rule.setPrevCode("F");
      frag_rule.setCurrCode("D");
      frag_rule.setNextCode("E");
      frag_rule.setFormula(Formula("+H100"));
      frag_rule.setComment("thecomment");

      THEN("The FragmentationRule is valid and does validate successfully")
      {
        REQUIRE(frag_rule.isValid());
        REQUIRE(frag_rule.validate(error_list_frag_rule));

        AND_THEN("All the members are set correctly")
        {
          REQUIRE(frag_rule.getName().toStdString() == "a-fgr-2");
          REQUIRE(frag_rule.getPrevCode().toStdString() == "F");
          REQUIRE(frag_rule.getCurrCode().toStdString() == "D");
          REQUIRE(frag_rule.getNextCode().toStdString() == "E");
          REQUIRE(
            frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
            "+H100");
          REQUIRE(frag_rule.getComment().toStdString() == "thecomment");
        }
      }
    }
  }
}

SCENARIO(
  "FragmentationRule objects can be initialized from an <fgr> XML element",
  "[FragmentationRule]")
{
  PolChemDefCstSPtr pol_chem_def_csp =
    test_utils_frag_rule_1_letter.msp_polChemDef;

  //  Totally fake fgr !!!
  // <fgr>
  // <name>a-fgr-2</name>
  // <formula>+H100</formula>
  // <prev-mnm-code>F</prev-mnm-code>
  // <curr-mnm-code>D</curr-mnm-code>
  // <next-mnm-code>E</next-mnm-code>
  // <comment>thecomment</comment>
  // </fgr>


  QStringList dom_strings{"fgr", // 0
                          "name",
                          "a-fgr-2",
                          "formula",
                          "+H100",
                          "prev-mnm-code",
                          "F",
                          "curr-mnm-code",
                          "D",
                          "next-mnm-code",
                          "E",
                          "comment",
                          "thecomment"};


  QDomDocument document =
    test_utils_frag_rule_1_letter.craftFgrDomDocument(dom_strings);
  QDomElement frag_rule_element =
    document.elementsByTagName(dom_strings[0]).item(0).toElement();

  //  Use indentation 1 to mimick what happens in XpertMass.
  // qDebug().noquote() << "The document:\n'"
  //                    << document.toString(/*indentation*/ 1) << "'";

  //  We need to remove all spaces from the strings to be able to compare
  //  them. There must be a bug somewhere because with the original output, at
  //  the screen everything seems correct,  but test FAILED.

  QString document_string = document.toString(/*indentation*/ 0);
  document_string         = Utils::unspacify(document_string);

  QString expected_string =
    "<fgr><name>a-fgr-2</name><formula>+H100</formula><prev-mnm-code>F</"
    "prev-mnm-code><curr-mnm-code>D</curr-mnm-code><next-mnm-code>E</"
    "next-mnm-code><comment>thecomment</comment></fgr>";
  expected_string = Utils::unspacify(expected_string);

  REQUIRE(document_string.toStdString() == expected_string.toStdString());

  FragmentationRule frag_rule(pol_chem_def_csp, frag_rule_element, 1);

  WHEN(
    "A FragmentationRule instance is allocated entirely free of data (only the "
    "polymer chemistry definition is provided to the constructor)")
  {
    FragmentationRule frag_rule(pol_chem_def_csp, "");

    THEN("The FragmentationRule instance is not valid and cannot validate")
    {
      REQUIRE(frag_rule.getName().toStdString() == "");

      REQUIRE_FALSE(frag_rule.isValid());
      REQUIRE_FALSE(frag_rule.validate(error_list_frag_rule));

      AND_WHEN(
        "The FragmentationRule instance is asked to render in itself the <fgr> "
        "XML "
        "element")
      {
        REQUIRE(frag_rule.renderXmlFgrElement(frag_rule_element));

        AND_THEN("All the members are set correctly")
        {
          REQUIRE(frag_rule.getName().toStdString() == "a-fgr-2");
          REQUIRE(frag_rule.getPrevCode().toStdString() == "F");
          REQUIRE(frag_rule.getCurrCode().toStdString() == "D");
          REQUIRE(frag_rule.getNextCode().toStdString() == "E");
          REQUIRE(
            frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
            "+H100");
          REQUIRE(frag_rule.getComment().toStdString() == "thecomment");
        }
      }
    }
  }
}

SCENARIO(
  "FragmentationRule objects can output themselves to a <fgr> XML element",
  "[FragmentationRule]")
{
  PolChemDefCstSPtr pol_chem_def_csp =
    test_utils_frag_rule_1_letter.msp_polChemDef;

  QString expected_string =
    "<fgr><name>a-fgr-2</name><formula>+H100</formula><prev-mnm-code>F</"
    "prev-mnm-code><curr-mnm-code>D</curr-mnm-code><next-mnm-code>E</"
    "next-mnm-code><comment>thecomment</comment></fgr>";
  expected_string = Utils::unspacify(expected_string);

  GIVEN("Construction a FragmentationRule fully initialized")
  {
    FragmentationRule frag_rule(
      pol_chem_def_csp, "a-fgr-2", "F", "D", "E", "thecomment", "+H100");

    THEN("The FragmentationRule is valid and does validate successfully")
    {
      REQUIRE(frag_rule.isValid());
      REQUIRE(frag_rule.validate(error_list_frag_rule));

      REQUIRE(frag_rule.getName().toStdString() == "a-fgr-2");
      REQUIRE(frag_rule.getPrevCode().toStdString() == "F");
      REQUIRE(frag_rule.getCurrCode().toStdString() == "D");
      REQUIRE(frag_rule.getNextCode().toStdString() == "E");
      REQUIRE(frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
              "+H100");
      REQUIRE(frag_rule.getComment().toStdString() == "thecomment");
    }

    WHEN("The FragmentationRule is exported as a <fgr> XML element")
    {
      QString xml_text = frag_rule.formatXmlFgrElement(/*offset*/ 1);
      xml_text         = Utils::unspacify(xml_text);

      THEN("The obtained text is as expected")
      {
        REQUIRE(xml_text.toStdString() == expected_string.toStdString());
      }
    }
  }
}

SCENARIO(
  "FragmentationRule objects can be constructed by copy constructor or by "
  "assigment "
  "and then compared",
  "[FragmentationRule]")
{
  test_utils_frag_rule_1_letter.initializeXpertmassLibrary();
  PolChemDefCstSPtr pol_chem_def_csp =
    test_utils_frag_rule_1_letter.msp_polChemDef;

  GIVEN("Construction a FragmentationRule fully initialized")
  {
    FragmentationRule frag_rule(
      pol_chem_def_csp, "a-fgr-2", "F", "D", "E", "thecomment", "+H100");

    THEN("The FragmentationRule is valid and does validate successfully")
    {
      REQUIRE(frag_rule.isValid());
      REQUIRE(frag_rule.validate(error_list_frag_rule));

      REQUIRE(frag_rule.getName().toStdString() == "a-fgr-2");
      REQUIRE(frag_rule.getPrevCode().toStdString() == "F");
      REQUIRE(frag_rule.getCurrCode().toStdString() == "D");
      REQUIRE(frag_rule.getNextCode().toStdString() == "E");
      REQUIRE(frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
              "+H100");
      REQUIRE(frag_rule.getComment().toStdString() == "thecomment");
    }

    WHEN("A new FragmentationRule is instantiated by copy-construction")
    {
      FragmentationRule new_frag_rule(frag_rule);

      THEN(
        "The new FragmentationRule is valid and does validate successfully and "
        "all "
        "the members are set correctly")
      {
        REQUIRE(new_frag_rule.isValid());
        REQUIRE(new_frag_rule.validate(error_list_frag_rule));

        REQUIRE(new_frag_rule.getName().toStdString() == "a-fgr-2");
        REQUIRE(new_frag_rule.getPrevCode().toStdString() == "F");
        REQUIRE(new_frag_rule.getCurrCode().toStdString() == "D");
        REQUIRE(new_frag_rule.getNextCode().toStdString() == "E");
        REQUIRE(
          new_frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
          "+H100");
        REQUIRE(new_frag_rule.getComment().toStdString() == "thecomment");

        AND_THEN("The comparison operator do work properly")
        {
          REQUIRE(new_frag_rule == frag_rule);
          REQUIRE_FALSE(new_frag_rule != frag_rule);
        }
      }
    }

    WHEN("A new FragmentationRule is instantiated by assignment")
    {
      FragmentationRule new_frag_rule;
      new_frag_rule = frag_rule;

      THEN(
        "The new FragmentationRule is valid and does validate successfully and "
        "all "
        "the members are set correctly")
      {
        REQUIRE(new_frag_rule.isValid());
        REQUIRE(new_frag_rule.validate(error_list_frag_rule));

        REQUIRE(new_frag_rule.getName().toStdString() == "a-fgr-2");
        REQUIRE(new_frag_rule.getPrevCode().toStdString() == "F");
        REQUIRE(new_frag_rule.getCurrCode().toStdString() == "D");
        REQUIRE(new_frag_rule.getNextCode().toStdString() == "E");
        REQUIRE(
          new_frag_rule.getFormulaCstRef().getActionFormula().toStdString() ==
          "+H100");
        REQUIRE(new_frag_rule.getComment().toStdString() == "thecomment");

        AND_THEN("The comparison operator do work properly")
        {
          REQUIRE(new_frag_rule == frag_rule);
          REQUIRE_FALSE(new_frag_rule != frag_rule);
        }
      }
    }
  }
}

} // namespace libXpertMassCore
} // namespace MsXpS