YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/path_util-test.cc
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
33
#include <gtest/gtest.h>
34
35
#include "yb/util/env.h"
36
#include "yb/util/path_util.h"
37
#include "yb/util/status.h"
38
#include "yb/util/test_macros.h"
39
40
namespace yb {
41
42
1
TEST(TestPathUtil, BaseNameTest) {
43
1
  ASSERT_EQ(".", BaseName(""));
44
1
  ASSERT_EQ(".", BaseName("."));
45
1
  ASSERT_EQ("..", BaseName(".."));
46
1
  ASSERT_EQ("/", BaseName("/"));
47
1
  ASSERT_EQ("/", BaseName("//"));
48
1
  ASSERT_EQ("a", BaseName("a"));
49
1
  ASSERT_EQ("ab", BaseName("ab"));
50
1
  ASSERT_EQ("ab", BaseName("ab/"));
51
1
  ASSERT_EQ("cd", BaseName("ab/cd"));
52
1
  ASSERT_EQ("ab", BaseName("/ab"));
53
1
  ASSERT_EQ("ab", BaseName("/ab///"));
54
1
  ASSERT_EQ("cd", BaseName("/ab/cd"));
55
1
}
56
57
1
TEST(TestPathUtil, DirNameTest) {
58
1
  ASSERT_EQ(".", DirName(""));
59
1
  ASSERT_EQ(".", DirName("."));
60
1
  ASSERT_EQ(".", DirName(".."));
61
1
  ASSERT_EQ("/", DirName("/"));
62
#if defined(__linux__)
63
  // On OS X this test case returns "/", while Linux returns "//". On both
64
  // platforms dirname(1) returns "/". The difference is unlikely to matter in
65
  // practice.
66
  ASSERT_EQ("//", DirName("//"));
67
#else
68
1
  ASSERT_EQ("/", DirName("//"));
69
1
#endif // defined(__linux__)
70
1
  ASSERT_EQ(".", DirName("a"));
71
1
  ASSERT_EQ(".", DirName("ab"));
72
1
  ASSERT_EQ(".", DirName("ab/"));
73
1
  ASSERT_EQ("ab", DirName("ab/cd"));
74
1
  ASSERT_EQ("/", DirName("/ab"));
75
1
  ASSERT_EQ("/", DirName("/ab///"));
76
1
  ASSERT_EQ("/ab", DirName("/ab/cd"));
77
1
}
78
79
1
TEST(TestPathUtil, JoinPathSegments) {
80
1
  ASSERT_EQ(JoinPathSegments("/usr/bin", "vim"), "/usr/bin/vim");
81
1
  ASSERT_EQ(JoinPathSegments("/usr/bin/", "vim"), "/usr/bin/vim");
82
1
}
83
84
85
#if defined(__linux__)
86
TEST(TestPathUtil, TestODirectFileCreationInDir) {
87
  string dir = "/var/run";
88
  Env* env_test = yb::Env::Default();
89
  ASSERT_NOK(CheckODirectTempFileCreationInDir(env_test, dir));
90
}
91
#endif
92
} // namespace yb