File: test_IndexRange.cpp

package info (click to toggle)
libxpertmass 1.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,148 kB
  • sloc: cpp: 52,453; xml: 2,193; python: 417; ansic: 70; sh: 54; makefile: 33
file content (396 lines) | stat: -rw-r--r-- 9,159 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
// ./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 "MsXpS/libXpertMassCore/IndexRange.hpp"

namespace MsXpS
{
namespace libXpertMassCore
{

SCENARIO("Construction of IndexRange instances", "[IndexRange]")
{
  GIVEN("Construction with no argument")
  {
    IndexRange index_range;

    WHEN("Checking for its values")
    {
      qsizetype start = index_range.m_start;
      qsizetype stop  = index_range.m_stop;

      THEN("The values should be std::numeric_limits<qsizetype>::max()")
      {
        REQUIRE(start == std::numeric_limits<qsizetype>::max());
        REQUIRE(stop == std::numeric_limits<qsizetype>::max());
      }
    }
  }

  GIVEN("Construction with start and stop params")
  {
    IndexRange index_range(50, 150);

    WHEN("Checking for its values")
    {
      qsizetype start = index_range.m_start;
      qsizetype stop  = index_range.m_stop;

      THEN("The values should be correctly set")
      {
        REQUIRE(start == 50);
        REQUIRE(stop == 150);
      }
    }

    WHEN("Pseudo copy-constructing another IndexRange")
    {
      IndexRange other_index_range(index_range);

      WHEN("Checking for its values")
      {
        qsizetype start = other_index_range.m_start;
        qsizetype stop  = other_index_range.m_stop;

        THEN("The values should be correctly set")
        {
          REQUIRE(start == 50);
          REQUIRE(stop == 150);
        }
      }
    }
  }
}

SCENARIO("Initialization functions", "[IndexRange]")
{
  GIVEN(
    "Construction of two instances, the first with arguments and the second "
    "without")
  {
    IndexRange index_range(50, 150);
    IndexRange other_index_range;

    WHEN("Initializing the second with the first")
    {
      other_index_range.initialize(index_range);

      qsizetype start = other_index_range.m_start;
      qsizetype stop  = other_index_range.m_stop;

      THEN("The values should be set correctly")
      {
        REQUIRE(start == index_range.m_start);
        REQUIRE(stop == index_range.m_stop);
      }
    }
  }
}

SCENARIO("Cloning functions", "[IndexRange]")
{
  GIVEN("Construction of one instance with arguments")
  {
    IndexRange index_range(50, 150);

    WHEN("Cloning it into a heap-allocated instance")
    {
      IndexRange *other_index_range_p = index_range.clone();

      qsizetype start = other_index_range_p->m_start;
      qsizetype stop  = other_index_range_p->m_stop;

      THEN("The values should be set correctly")
      {
        REQUIRE(start == index_range.m_start);
        REQUIRE(stop == index_range.m_stop);
      }
    }

    WHEN(
      "Using it for cloning it into a heap-allocated instance with static "
      "function")
    {
      IndexRange *other_index_range_p = IndexRange::clone(index_range);

      qsizetype start = other_index_range_p->m_start;
      qsizetype stop  = other_index_range_p->m_stop;

      THEN("The values should be set correctly")
      {
        REQUIRE(start == index_range.m_start);
        REQUIRE(stop == index_range.m_stop);
      }
    }
  }
}

SCENARIO("Equality and inequality operators", "[IndexRange]")
{
  GIVEN("Construction of two instancse with identical arguments")
  {
    IndexRange index_range(50, 150);
    IndexRange other_index_range(50, 150);

    THEN("The values should be identical in both instances")
    {
      REQUIRE(index_range == other_index_range);
      REQUIRE_FALSE(index_range != other_index_range);
    }

    WHEN("Changing the start value of the other instance")
    {
      other_index_range.m_start = 51;

      THEN("The values should be different in both instances")
      {
        REQUIRE(index_range != other_index_range);
        REQUIRE_FALSE(index_range == other_index_range);
      }

      WHEN("Changing the stop value of the other instance")
      {
        other_index_range.m_start = 50;
        other_index_range.m_stop  = 151;

        THEN("The values should be different in both instances")
        {
          REQUIRE(index_range != other_index_range);
          REQUIRE_FALSE(index_range == other_index_range);
        }

        WHEN("Changing both the start and stop values of the other instance")
        {
          other_index_range.m_start = 51;
          other_index_range.m_stop  = 151;

          THEN("The values should be different in both instances")
          {
            REQUIRE(index_range != other_index_range);
            REQUIRE_FALSE(index_range == other_index_range);
          }
        }
      }
    }
  }
}

SCENARIO("Sorting functions", "[IndexRange]")
{
  GIVEN("Construction of one instance with arguments")
  {
    IndexRange index_range(50, 150);

    WHEN("Sorting ascending")
    {
      index_range.sortAscending();

      qsizetype start = index_range.m_start;
      qsizetype stop  = index_range.m_stop;

      THEN("Nothing should be changed")
      {
        REQUIRE(start == 50);
        REQUIRE(stop == 150);
      }
    }

    WHEN("Sorting descending")
    {
      IndexRange checker_index_range(index_range);
      index_range.sortDescending();

      qsizetype start = index_range.m_start;
      qsizetype stop  = index_range.m_stop;

      THEN("The values should be swapped")
      {
        REQUIRE(start == 150);
        REQUIRE(stop == 50);
      }
    }
  }

  GIVEN(
    "Construction of one instance without parameters and setting values in "
    "descending order")
  {
    IndexRange index_range;

    index_range.m_start = 150;
    index_range.m_stop  = 50;

    WHEN("Sorting descending")
    {
      index_range.sortDescending();

      qsizetype start = index_range.m_start;
      qsizetype stop  = index_range.m_stop;

      THEN("Nothing should be changed")
      {
        REQUIRE(start == 150);
        REQUIRE(stop == 50);
      }
    }

    WHEN("Sorting ascending")
    {
      index_range.sortAscending();

      qsizetype start = index_range.m_start;
      qsizetype stop  = index_range.m_stop;

      THEN("Nothing should be changed")
      {
        REQUIRE(start == 50);
        REQUIRE(stop == 150);
      }
    }
  }
}

SCENARIO("Validity assessment", "[IndexRange]")
{
  GIVEN("Construction of one instance with ascending-order arguments")
  {
    IndexRange index_range(50, 150);

    WHEN("Checking Validity")
    {
      bool is_valid = index_range.isValid();

      THEN("The instance should be valid")
      {
        REQUIRE(is_valid);
      }
    }
  }

  GIVEN("Construction of one instance with uninitialized arguments")
  {
    IndexRange index_range;

    WHEN("Checking Validity")
    {
      bool is_valid = index_range.isValid();

      THEN("The instance should be invalid")
      {
        REQUIRE_FALSE(is_valid);
      }
    }

    WHEN("Setting only the start value")
    {
      index_range.m_start = 50;

      bool is_valid = index_range.isValid();

      THEN("The instance should be invalid")
      {
        REQUIRE_FALSE(is_valid);
      }

      AND_WHEN("Setting also the stop value")
      {
        index_range.m_stop = 150;

        bool is_valid = index_range.isValid();

        THEN("The instance should be valid")
        {
          REQUIRE(is_valid);
        }

        AND_WHEN("Setting only the stop value")
        {
          index_range.m_start = std::numeric_limits<qsizetype>::max();
          index_range.m_stop  = 150;

          bool is_valid = index_range.isValid();

          THEN("The instance should be invalid")
          {
            REQUIRE_FALSE(is_valid);
          }
        }
      }
    }
  }
}

SCENARIO("Resetting to default values", "[IndexRange]")
{
  GIVEN("Construction of one instance with ascending-order arguments")
  {
    IndexRange index_range(50, 150);

    WHEN("Checking Validity")
    {
      bool is_valid = index_range.isValid();

      THEN("The instance should be valid")
      {
        REQUIRE(is_valid);
      }

      AND_WHEN("Resetting the values and checking validity")
      {
        index_range.reset();

        bool is_valid = index_range.isValid();

        THEN("The instance should be valid")
        {
          REQUIRE_FALSE(is_valid);
        }
      }
    }
  }
}

SCENARIO("Outputting text string representing IndexRange instances",
         "[IndexRange]")
{
  GIVEN("Construction of one instance with ascending-order arguments")
  {
    IndexRange index_range(50, 150);

    WHEN("Outputting as string as indices")
    {
      QString index_range_as_text = index_range.indicesAsText();

      THEN("The string should be correct")
      {
        REQUIRE(index_range_as_text.toStdString() == "[50-150]");
      }

      WHEN("Outputting as string as positions")
      {
        QString index_range_as_text = index_range.positionsAsText();

        THEN("The string should be correct")
        {
          REQUIRE(index_range_as_text.toStdString() == "[51-151]");
        }
      }
    }
  }
}

} // namespace libXpertMassCore
} // namespace MsXpS