2016-02-09 15:12:00 -08:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-15 16:03:42 -07:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2013-10-16 14:59:46 -07:00
|
|
|
//
|
2011-03-18 22:37:00 +00:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2013-10-04 22:32:05 -07:00
|
|
|
#pragma once
|
2011-03-18 22:37:00 +00:00
|
|
|
|
2017-04-21 20:41:37 -07:00
|
|
|
#ifdef OS_AIX
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#else
|
2015-03-17 14:08:00 -07:00
|
|
|
#include <gtest/gtest.h>
|
2017-04-21 20:41:37 -07:00
|
|
|
#endif
|
2015-03-17 14:08:00 -07:00
|
|
|
|
2014-10-31 15:08:10 -07:00
|
|
|
#include <string>
|
2013-08-23 08:38:13 -07:00
|
|
|
#include "rocksdb/env.h"
|
2011-03-18 22:37:00 +00:00
|
|
|
|
2020-02-20 12:07:53 -08:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2011-03-18 22:37:00 +00:00
|
|
|
namespace test {
|
|
|
|
|
|
|
|
// Return the directory to use for temporary storage.
|
2015-03-19 16:52:59 -07:00
|
|
|
std::string TmpDir(Env* env = Env::Default());
|
2011-03-18 22:37:00 +00:00
|
|
|
|
2018-07-13 17:18:39 -07:00
|
|
|
// A path unique within the thread
|
|
|
|
std::string PerThreadDBPath(std::string name);
|
|
|
|
std::string PerThreadDBPath(Env* env, std::string name);
|
|
|
|
std::string PerThreadDBPath(std::string dir, std::string name);
|
|
|
|
|
2011-03-18 22:37:00 +00:00
|
|
|
// Return a randomization seed for this run. Typically returns the
|
|
|
|
// same number on repeated invocations of this binary, but automated
|
|
|
|
// runs may be able to vary the seed.
|
2015-03-19 16:52:59 -07:00
|
|
|
int RandomSeed();
|
2011-03-18 22:37:00 +00:00
|
|
|
|
2015-03-19 17:32:43 -07:00
|
|
|
::testing::AssertionResult AssertStatus(const char* s_expr, const Status& s);
|
|
|
|
|
2020-02-20 12:07:53 -08:00
|
|
|
#define ASSERT_OK(s) \
|
|
|
|
ASSERT_PRED_FORMAT1(ROCKSDB_NAMESPACE::test::AssertStatus, s)
|
2015-03-19 17:32:43 -07:00
|
|
|
#define ASSERT_NOK(s) ASSERT_FALSE((s).ok())
|
2020-02-20 12:07:53 -08:00
|
|
|
#define EXPECT_OK(s) \
|
|
|
|
EXPECT_PRED_FORMAT1(ROCKSDB_NAMESPACE::test::AssertStatus, s)
|
2015-03-19 17:32:43 -07:00
|
|
|
#define EXPECT_NOK(s) EXPECT_FALSE((s).ok())
|
2011-10-31 17:22:06 +00:00
|
|
|
} // namespace test
|
2020-02-20 12:07:53 -08:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|