X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2Ftest%2FScopeGuardTest.cpp;h=93507da2d55aa5fb9873bbe3853eeacf0699e153;hb=8cf0c3e0f10e74e89f0b868e4168ec019ed9b998;hp=b741e37503536cfbc7977e316b1f4e607b82cd16;hpb=77cc480dad0500f00717a5feec7ac37a4e3ac0a9;p=folly.git diff --git a/folly/test/ScopeGuardTest.cpp b/folly/test/ScopeGuardTest.cpp index b741e375..93507da2 100644 --- a/folly/test/ScopeGuardTest.cpp +++ b/folly/test/ScopeGuardTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2013 Facebook, Inc. + * Copyright 2016 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,10 +14,9 @@ * limitations under the License. */ -#include "folly/ScopeGuard.h" -#include "folly/Portability.h" +#include +#include -#include #include #include @@ -127,11 +126,7 @@ TEST(ScopeGuard, GuardException) { throw std::runtime_error("destructors should never throw!"); }); }, -#if FOLLY_USE_LIBCPP - "terminate called throwing an exception" -#else - "destructors should never throw" -#endif + "destructors should never throw!" ); } @@ -258,8 +253,58 @@ TEST(ScopeGuard, TEST_SCOPE_FAILURE2) { } } -int main(int argc, char** argv) { - testing::InitGoogleTest(&argc, argv); - google::ParseCommandLineFlags(&argc, &argv, true); - return RUN_ALL_TESTS(); +void testScopeFailAndScopeSuccess(ErrorBehavior error, bool expectFail) { + bool scopeFailExecuted = false; + bool scopeSuccessExecuted = false; + + try { + SCOPE_FAIL { scopeFailExecuted = true; }; + SCOPE_SUCCESS { scopeSuccessExecuted = true; }; + + try { + if (error == ErrorBehavior::HANDLED_ERROR) { + throw std::runtime_error("throwing an expected error"); + } else if (error == ErrorBehavior::UNHANDLED_ERROR) { + throw "never throw raw strings"; + } + } catch (const std::runtime_error&) { + } + } catch (...) { + // Outer catch to swallow the error for the UNHANDLED_ERROR behavior + } + + EXPECT_EQ(expectFail, scopeFailExecuted); + EXPECT_EQ(!expectFail, scopeSuccessExecuted); +} + +TEST(ScopeGuard, TEST_SCOPE_FAIL_AND_SCOPE_SUCCESS) { + testScopeFailAndScopeSuccess(ErrorBehavior::SUCCESS, false); + testScopeFailAndScopeSuccess(ErrorBehavior::HANDLED_ERROR, false); + testScopeFailAndScopeSuccess(ErrorBehavior::UNHANDLED_ERROR, true); +} + +TEST(ScopeGuard, TEST_SCOPE_SUCCESS_THROW) { + auto lambda = []() { + SCOPE_SUCCESS { throw std::runtime_error("ehm"); }; + }; + EXPECT_THROW(lambda(), std::runtime_error); +} + +TEST(ScopeGuard, TEST_THROWING_CLEANUP_ACTION) { + struct ThrowingCleanupAction { + explicit ThrowingCleanupAction(int& scopeExitExecuted) + : scopeExitExecuted_(scopeExitExecuted) {} + ThrowingCleanupAction(const ThrowingCleanupAction& other) + : scopeExitExecuted_(other.scopeExitExecuted_) { + throw std::runtime_error("whoa"); + } + void operator()() { ++scopeExitExecuted_; } + + private: + int& scopeExitExecuted_; + }; + int scopeExitExecuted = 0; + ThrowingCleanupAction onExit(scopeExitExecuted); + EXPECT_THROW(makeGuard(onExit), std::runtime_error); + EXPECT_EQ(scopeExitExecuted, 1); }