2014-08-14 09:51:26 -07:00
|
|
|
// Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include "util/misc/initialization_state_dcheck.h"
|
|
|
|
|
|
|
|
#include "base/logging.h"
|
|
|
|
#include "gtest/gtest.h"
|
test: Move util/test to its own top-level directory, test.
After 9e79ea1da719, it no longer makes sense for crashpad_util_test_lib
to “hide” in util/util_test.gyp. All of util/test is moved to its own
top-level directory, test, which all other test code is allowed to
depend on. test, too, is allowed to depend on all other non-test code.
In a future change, when crashpad_util_test_lib gains a dependency on
crashpad_client, it won’t look so weird for something in util (even
though it’s in util/test) to depend on something in client, because the
thing that needs to depend on client will live in test, not util.
BUG=crashpad:33
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/1051533002
2015-03-31 17:44:14 -04:00
|
|
|
#include "test/gtest_death_check.h"
|
2014-08-14 09:51:26 -07:00
|
|
|
|
2014-10-07 17:28:50 -04:00
|
|
|
namespace crashpad {
|
|
|
|
namespace test {
|
2014-08-14 09:51:26 -07:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheck, InitializationStateDcheck) {
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialization_state_dcheck);
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:47:36 -04:00
|
|
|
#if DCHECK_IS_ON()
|
2014-08-14 09:51:26 -07:00
|
|
|
|
|
|
|
// InitializationStateDcheck only DCHECKs, so the death tests can only run
|
|
|
|
// when DCHECKs are enabled.
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Uninitialized_NotInvalid) {
|
|
|
|
// This tests that an attempt to set an uninitialized object as valid without
|
|
|
|
// transitioning through the initializing (invalid) state fails.
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck),
|
|
|
|
"kStateInvalid");
|
2014-08-14 09:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Uninitialized_NotValid) {
|
|
|
|
// This tests that an attempt to use an uninitialized object as though it
|
|
|
|
// were valid fails.
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialization_state_dcheck),
|
|
|
|
"kStateValid");
|
2014-08-14 09:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Invalid_NotUninitialized) {
|
|
|
|
// This tests that an attempt to begin initializing an object on which
|
|
|
|
// initialization was already attempted fails.
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
2014-08-14 09:51:26 -07:00
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck),
|
|
|
|
"kStateUninitialized");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Invalid_NotValid) {
|
|
|
|
// This tests that an attempt to use an initializing object as though it
|
|
|
|
// were valid fails.
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialization_state_dcheck),
|
|
|
|
"kStateValid");
|
2014-08-14 09:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Valid_NotUninitialized) {
|
|
|
|
// This tests that an attempt to begin initializing an object that has already
|
|
|
|
// been initialized fails.
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck);
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
2014-08-14 09:51:26 -07:00
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck),
|
|
|
|
"kStateUninitialized");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Valid_NotInvalid) {
|
|
|
|
// This tests that an attempt to set a valid object as valid a second time
|
|
|
|
// fails.
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck);
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck),
|
|
|
|
"kStateInvalid");
|
2014-08-14 09:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Destroyed_NotUninitialized) {
|
|
|
|
// This tests that an attempt to reinitialize a destroyed object fails. See
|
|
|
|
// the InitializationState.InitializationState test for an explanation of this
|
|
|
|
// use-after-free test.
|
|
|
|
InitializationStateDcheck* initialization_state_dcheck_pointer;
|
|
|
|
{
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
initialization_state_dcheck_pointer = &initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialization_state_dcheck);
|
|
|
|
}
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(INITIALIZATION_STATE_SET_INITIALIZING(
|
|
|
|
*initialization_state_dcheck_pointer),
|
|
|
|
"kStateUninitialized");
|
2014-08-14 09:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(InitializationStateDcheckDeathTest, Destroyed_NotValid) {
|
|
|
|
// This tests that an attempt to use a destroyed object fails. See the
|
|
|
|
// InitializationState.InitializationState test for an explanation of this
|
|
|
|
// use-after-free test.
|
|
|
|
InitializationStateDcheck* initialization_state_dcheck_pointer;
|
|
|
|
{
|
|
|
|
InitializationStateDcheck initialization_state_dcheck;
|
|
|
|
initialization_state_dcheck_pointer = &initialization_state_dcheck;
|
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialization_state_dcheck);
|
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialization_state_dcheck);
|
|
|
|
}
|
2015-03-09 18:02:14 -04:00
|
|
|
ASSERT_DEATH_CHECK(
|
2014-08-14 09:51:26 -07:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(*initialization_state_dcheck_pointer),
|
|
|
|
"kStateValid");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace
|
2014-10-07 17:28:50 -04:00
|
|
|
} // namespace test
|
|
|
|
} // namespace crashpad
|