summaryrefslogtreecommitdiffstats
path: root/src/rocksdb/test_util/testutil_test.cc
blob: 41f26e3890dbe26634c2029c5b8c7f17f4bf7994 (plain)
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
//  Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
//  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).

#include "test_util/testutil.h"

#include "file/file_util.h"
#include "port/port.h"
#include "port/stack_trace.h"
#include "test_util/testharness.h"

namespace ROCKSDB_NAMESPACE {

void CreateFile(Env* env, const std::string& path) {
  std::unique_ptr<WritableFile> f;
  ASSERT_OK(env->NewWritableFile(path, &f, EnvOptions()));
  f->Close();
}

TEST(TestUtil, DestroyDirRecursively) {
  auto env = Env::Default();
  // test_util/file
  //          /dir
  //          /dir/file
  std::string test_dir = test::PerThreadDBPath("test_util");
  ASSERT_OK(env->CreateDir(test_dir));
  CreateFile(env, test_dir + "/file");
  ASSERT_OK(env->CreateDir(test_dir + "/dir"));
  CreateFile(env, test_dir + "/dir/file");

  ASSERT_OK(DestroyDir(env, test_dir));
  auto s = env->FileExists(test_dir);
  ASSERT_TRUE(s.IsNotFound());
}

}  // namespace ROCKSDB_NAMESPACE

int main(int argc, char** argv) {
  ROCKSDB_NAMESPACE::port::InstallStackTraceHandler();
  ::testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}