File: scope_fail.cpp

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (478 lines) | stat: -rw-r--r-- 13,364 bytes parent folder | download | duplicates (5)
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
/*
 * Distributed under the Boost Software License, Version 1.0.
 * (See accompanying file LICENSE_1_0.txt or copy at
 * https://www.boost.org/LICENSE_1_0.txt)
 *
 * Copyright (c) 2023 Andrey Semashev
 */
/*!
 * \file   scope_fail.cpp
 * \author Andrey Semashev
 *
 * \brief  This file contains tests for \c scope_fail.
 */

#include <boost/scope/scope_fail.hpp>
#include <boost/scope/error_code_checker.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/core/lightweight_test_trait.hpp>
#include <boost/config.hpp>
#include <utility>
#include <stdexcept>
#include <system_error>
#include "function_types.hpp"

#if defined(_MSC_VER) && !defined(__clang__)
// warning C4702: unreachable code
// This warning is triggered by tests that unconditionally throw exception at some point
// and have code after that (e.g. parts of scope guard constructor and a check that verifies
// that the following code is not reached).
#pragma warning(disable: 4702)
#endif

int g_n = 0, g_c = 0;

void check_normal()
{
    int n = 0;
    {
        boost::scope::scope_fail< normal_func > guard{ normal_func(n) };
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        boost::scope::scope_fail< moveable_only_func > guard{ moveable_only_func(n) };
        BOOST_TEST(guard.active());
        guard.set_active(false);
        BOOST_TEST(!guard.active());
        guard.set_active(true);
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        boost::scope::scope_fail< normal_func > guard(normal_func(n), false);
        BOOST_TEST(!guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        boost::scope::scope_fail< normal_func > guard(normal_func(n), false);
        BOOST_TEST(!guard.active());
        guard.set_active(true);
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        boost::scope::scope_fail< moveable_only_func > guard1{ moveable_only_func(n) };
        BOOST_TEST(guard1.active());
        boost::scope::scope_fail< moveable_only_func > guard2 = std::move(guard1);
        BOOST_TEST(!guard1.active());
        BOOST_TEST(guard2.active());
        boost::scope::scope_fail< moveable_only_func > guard3 = std::move(guard1);
        BOOST_TEST(!guard3.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        normal_func func(n);
        boost::scope::scope_fail< normal_func& > guard(func);
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        normal_func func(n);
        boost::scope::scope_fail< normal_func& > guard1(func);
        BOOST_TEST(guard1.active());
        boost::scope::scope_fail< normal_func& > guard2 = std::move(guard1);
        BOOST_TEST(!guard1.active());
        BOOST_TEST(guard2.active());
        boost::scope::scope_fail< normal_func& > guard3 = std::move(guard1);
        BOOST_TEST(!guard3.active());
    }
    BOOST_TEST_EQ(n, 0);

    struct local
    {
        static void raw_func()
        {
            ++g_n;
        }
    };

    g_n = 0;
    {
        boost::scope::scope_fail< void (&)() > guard(local::raw_func);
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(g_n, 0);

    g_n = 0;
    {
        boost::scope::scope_fail< void (&)() > guard1(local::raw_func);
        BOOST_TEST(guard1.active());
        boost::scope::scope_fail< void (&)() > guard2 = std::move(guard1);
        BOOST_TEST(!guard1.active());
        BOOST_TEST(guard2.active());
        boost::scope::scope_fail< void (&)() > guard3 = std::move(guard1);
        BOOST_TEST(!guard3.active());
    }
    BOOST_TEST_EQ(g_n, 0);
}

void check_throw()
{
    int n = 0;
    try
    {
        boost::scope::scope_fail< normal_func > guard{ normal_func(n) };
        BOOST_TEST(guard.active());
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);

    n = 0;
    try
    {
        boost::scope::scope_fail< normal_func > guard1{ normal_func(n) };
        BOOST_TEST(guard1.active());
        throw std::runtime_error("error");
    }
    catch (...)
    {
        BOOST_TEST_EQ(n, 1);

        boost::scope::scope_fail< normal_func > guard2{ normal_func(n) };
        BOOST_TEST(guard2.active());
    }
    BOOST_TEST_EQ(n, 1);

#if !defined(BOOST_CORE_UNCAUGHT_EXCEPTIONS_EMULATED)
    n = 0;
    try
    {
        boost::scope::scope_fail< normal_func > guard1{ normal_func(n) };
        BOOST_TEST(guard1.active());
        throw std::runtime_error("error 1");
    }
    catch (...)
    {
        BOOST_TEST_EQ(n, 1);

        try
        {
            boost::scope::scope_fail< normal_func > guard2{ normal_func(n) };
            BOOST_TEST(guard2.active());
            throw std::runtime_error("error 2");
        }
        catch (...) {}
    }
    BOOST_TEST_EQ(n, 2);
#endif // !defined(BOOST_CORE_UNCAUGHT_EXCEPTIONS_EMULATED)

    n = 0;
    try
    {
        boost::scope::scope_fail< throw_on_copy_func > guard{ throw_on_copy_func(n) };
        BOOST_ERROR("An exception is expected to be thrown by throw_on_copy_func");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);

    n = 0;
    try
    {
        boost::scope::scope_fail< throw_on_move_func > guard{ throw_on_move_func(n) };
    }
    catch (...)
    {
        BOOST_ERROR("An exception is not expected to be thrown by throw_on_move_func (copy ctor should be used)");
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    bool scope_ended = false, exception_thrown = false, func_destroyed = false;
    try
    {
        boost::scope::scope_fail< throw_on_call_func > guard{ throw_on_call_func(n, func_destroyed) };
        func_destroyed = false;
        scope_ended = true;
    }
    catch (...)
    {
        exception_thrown = true;
    }
    BOOST_TEST_EQ(n, 0);
    BOOST_TEST(scope_ended);
    BOOST_TEST(!exception_thrown);
    BOOST_TEST(func_destroyed);
}

void check_cond()
{
    int n = 0;
    {
        int err = 0;
        boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > > guard{ normal_func(n), boost::scope::check_error_code(err) };
        BOOST_TEST(guard.active());
        err = -1;
    }
    BOOST_TEST_EQ(n, 1);

    n = 0;
    {
        int err = 0;
        boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > > guard{ normal_func(n), boost::scope::check_error_code(err) };
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        int err = 0;
        boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > > guard{ normal_func(n), boost::scope::check_error_code(err), false };
        BOOST_TEST(!guard.active());
        err = -1;
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        std::error_code err{};
        boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< std::error_code > > guard{ normal_func(n), boost::scope::check_error_code(err) };
        BOOST_TEST(guard.active());
        err = std::make_error_code(std::errc::invalid_argument);
    }
    BOOST_TEST_EQ(n, 1);

    n = 0;
    {
        std::error_code err{};
        boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< std::error_code > > guard{ normal_func(n), boost::scope::check_error_code(err) };
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 0);

    n = 0;
    try
    {
        int err = 0;
        boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > > guard{ normal_func(n), boost::scope::check_error_code(err) };
        BOOST_TEST(guard.active());
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 0); // exception is not the failure condition, err was still 0 when the scope guard was destroyed
}

void check_deduction()
{
    int n = 0;
    try
    {
        auto guard = boost::scope::make_scope_fail(normal_func(n));
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func >);
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);

    n = 0;
    try
    {
        auto guard = boost::scope::make_scope_fail(normal_func(n), false);
        BOOST_TEST(!guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func >);
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 0);

    n = 0;
    try
    {
        const normal_func func{ n };
        auto guard = boost::scope::make_scope_fail(func, true);
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func >);
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);

    n = 0;
    {
        int err = 0;
        auto guard = boost::scope::make_scope_fail(normal_func(n), boost::scope::check_error_code(err));
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > >);
        err = -1;
    }
    BOOST_TEST_EQ(n, 1);

    struct local
    {
        static void raw_func()
        {
            ++g_n;
        }

        static bool raw_cond()
        {
            ++g_c;
            return true;
        }

#if !defined(BOOST_SCOPE_NO_CXX17_NOEXCEPT_FUNCTION_TYPES)
        static void raw_func_noexcept() noexcept
        {
            ++g_n;
        }

        static bool raw_cond_noexcept() noexcept
        {
            ++g_c;
            return true;
        }
#endif
    };

    g_n = 0;
    g_c = 0;
    {
        auto guard = boost::scope::make_scope_fail(local::raw_func, local::raw_cond);
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< void (*)(), bool (*)() >);
    }
    BOOST_TEST_EQ(g_n, 1);
    BOOST_TEST_EQ(g_c, 1);

#if !defined(BOOST_SCOPE_NO_CXX17_NOEXCEPT_FUNCTION_TYPES)
    g_n = 0;
    g_c = 0;
    {
        auto guard = boost::scope::make_scope_fail(local::raw_func_noexcept, local::raw_cond_noexcept);
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< void (*)() noexcept, bool (*)() noexcept >);
    }
    BOOST_TEST_EQ(g_n, 1);
    BOOST_TEST_EQ(g_c, 1);
#endif

#if !defined(BOOST_NO_CXX17_DEDUCTION_GUIDES)
    n = 0;
    try
    {
        boost::scope::scope_fail guard{ normal_func(n) };
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func >);
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);

    n = 0;
    try
    {
        boost::scope::scope_fail guard{ normal_func(n), false };
        BOOST_TEST(!guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func >);
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 0);

    n = 0;
    {
        int err = 0;
        boost::scope::scope_fail guard{ normal_func(n), boost::scope::check_error_code(err) };
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > >);
        err = -1;
    }
    BOOST_TEST_EQ(n, 1);

    n = 0;
    {
        int err = 0;
        boost::scope::scope_fail guard{ normal_func(n), boost::scope::error_code_checker(err), true };
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< normal_func, boost::scope::error_code_checker< int > >);
        err = -1;
    }
    BOOST_TEST_EQ(n, 1);

    g_n = 0;
    g_c = 0;
    {
        boost::scope::scope_fail guard{ local::raw_func, local::raw_cond };
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< void (*)(), bool (*)() >);
    }
    BOOST_TEST_EQ(g_n, 1);
    BOOST_TEST_EQ(g_c, 1);

#if !defined(BOOST_SCOPE_NO_CXX17_NOEXCEPT_FUNCTION_TYPES)
    g_n = 0;
    g_c = 0;
    {
        boost::scope::scope_fail guard{ local::raw_func_noexcept, local::raw_cond_noexcept };
        BOOST_TEST(guard.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard), boost::scope::scope_fail< void (*)() noexcept, bool (*)() noexcept >);
    }
    BOOST_TEST_EQ(g_n, 1);
    BOOST_TEST_EQ(g_c, 1);
#endif

    n = 0;
    try
    {
        boost::scope::scope_fail guard([&n] { ++n; });
        BOOST_TEST(guard.active());
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);

    n = 0;
    {
        int err = -1;
        boost::scope::scope_fail guard([&n] { ++n; }, [&err]() noexcept { return err < 0; });
        BOOST_TEST(guard.active());
    }
    BOOST_TEST_EQ(n, 1);

    n = 0;
    try
    {
        boost::scope::scope_fail guard1{ normal_func(n) };
        boost::scope::scope_fail guard2 = std::move(guard1);
        BOOST_TEST(guard2.active());
        BOOST_TEST_TRAIT_SAME(decltype(guard2), boost::scope::scope_fail< normal_func >);
        throw std::runtime_error("error");
    }
    catch (...) {}
    BOOST_TEST_EQ(n, 1);
#endif // !defined(BOOST_NO_CXX17_DEDUCTION_GUIDES)
}

int main()
{
    check_normal();
    check_throw();
    check_cond();
    check_deduction();

    return boost::report_errors();
}