Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

131 lines
3.1KB

  1. /*
  2. * Scope Guard
  3. * Copyright (C) 2017 offa
  4. *
  5. * This file is part of Scope Guard.
  6. *
  7. * Scope Guard is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Scope Guard is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Scope Guard. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include "scope_success.h"
  21. #include "CallMocks.h"
  22. #include <catch.hpp>
  23. using namespace mock;
  24. using namespace trompeloeil;
  25. namespace
  26. {
  27. CallMock m;
  28. void deleter()
  29. {
  30. m.deleter();
  31. }
  32. }
  33. TEST_CASE("exit function called on destruction", "[ScopeSuccess]")
  34. {
  35. REQUIRE_CALL(m, deleter());
  36. auto guard = sr::scope_success{deleter};
  37. static_cast<void>(guard);
  38. }
  39. TEST_CASE("exit function lambda called on destruction", "[ScopeSuccess]")
  40. {
  41. CallMock cm;
  42. REQUIRE_CALL(cm, deleter());
  43. auto guard = sr::scope_success{[&cm] { cm.deleter(); }};
  44. static_cast<void>(guard);
  45. }
  46. TEST_CASE("exit function not called and rethrow on copy exception", "[ScopeSuccess]")
  47. {
  48. REQUIRE_THROWS([] {
  49. const ThrowOnCopyMock noMove;
  50. REQUIRE_CALL(noMove, deleter());
  51. sr::scope_success guard{noMove};
  52. }());
  53. }
  54. TEST_CASE("exit function is not called if released", "[ScopeSuccess]")
  55. {
  56. REQUIRE_CALL(m, deleter()).TIMES(0);
  57. auto guard = sr::scope_success{deleter};
  58. guard.release();
  59. }
  60. TEST_CASE("move releases moved-from object", "[ScopeSuccess]")
  61. {
  62. REQUIRE_CALL(m, deleter());
  63. auto movedFrom = sr::scope_success{deleter};
  64. auto guard = std::move(movedFrom);
  65. static_cast<void>(guard);
  66. }
  67. TEST_CASE("move with copy init releases moved-from object", "[ScopeSuccess]")
  68. {
  69. CallMock mock;
  70. const NotNothrowMoveMock notNothrow{&mock};
  71. REQUIRE_CALL(mock, deleter());
  72. sr::scope_success movedFrom{notNothrow};
  73. auto guard = std::move(movedFrom);
  74. }
  75. TEST_CASE("move transfers state", "[ScopeSuccess]")
  76. {
  77. REQUIRE_CALL(m, deleter());
  78. auto movedFrom = sr::scope_success{deleter};
  79. auto guard = std::move(movedFrom);
  80. static_cast<void>(guard);
  81. }
  82. TEST_CASE("move transfers state if released", "[ScopeSuccess]")
  83. {
  84. REQUIRE_CALL(m, deleter()).TIMES(0);
  85. auto movedFrom = sr::scope_success{deleter};
  86. movedFrom.release();
  87. auto guard = std::move(movedFrom);
  88. static_cast<void>(guard);
  89. }
  90. TEST_CASE("exit function not called on exception", "[ScopeFail]")
  91. {
  92. try
  93. {
  94. auto guard = sr::scope_success{deleter};
  95. static_cast<void>(guard);
  96. throw 3;
  97. }
  98. catch( ... )
  99. {
  100. }
  101. }
  102. TEST_CASE("exit function called on pending exception", "[ScopeFail]")
  103. {
  104. try
  105. {
  106. throw 3;
  107. }
  108. catch( ... )
  109. {
  110. REQUIRE_CALL(m, deleter());
  111. auto guard = sr::scope_success{deleter};
  112. static_cast<void>(guard);
  113. }
  114. }