EnvVarSaver.
[folly.git] / folly / experimental / test / TestUtilTest.cpp
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/experimental/TestUtil.h>
18
19 #include <sys/stat.h>
20 #include <sys/types.h>
21 #include <fcntl.h>
22
23 #include <system_error>
24
25 #include <boost/algorithm/string.hpp>
26 #include <folly/Memory.h>
27 #include <glog/logging.h>
28 #include <gtest/gtest.h>
29
30 using namespace folly;
31 using namespace folly::test;
32
33 TEST(TemporaryFile, Simple) {
34   int fd = -1;
35   char c = 'x';
36   {
37     TemporaryFile f;
38     EXPECT_FALSE(f.path().empty());
39     EXPECT_TRUE(f.path().is_absolute());
40     fd = f.fd();
41     EXPECT_LE(0, fd);
42     ssize_t r = write(fd, &c, 1);
43     EXPECT_EQ(1, r);
44   }
45
46   // The file must have been closed.  This assumes that no other thread
47   // has opened another file in the meanwhile, which is a sane assumption
48   // to make in this test.
49   ssize_t r = write(fd, &c, 1);
50   int savedErrno = errno;
51   EXPECT_EQ(-1, r);
52   EXPECT_EQ(EBADF, savedErrno);
53 }
54
55 TEST(TemporaryFile, Prefix) {
56   TemporaryFile f("Foo");
57   EXPECT_TRUE(f.path().is_absolute());
58   EXPECT_TRUE(boost::algorithm::starts_with(f.path().filename().native(),
59                                             "Foo"));
60 }
61
62 TEST(TemporaryFile, PathPrefix) {
63   TemporaryFile f("Foo", ".");
64   EXPECT_EQ(fs::path("."), f.path().parent_path());
65   EXPECT_TRUE(boost::algorithm::starts_with(f.path().filename().native(),
66                                             "Foo"));
67 }
68
69 TEST(TemporaryFile, NoSuchPath) {
70   EXPECT_THROW({TemporaryFile f("", "/no/such/path");},
71                std::system_error);
72 }
73
74 void testTemporaryDirectory(TemporaryDirectory::Scope scope) {
75   fs::path path;
76   {
77     TemporaryDirectory d("", "", scope);
78     path = d.path();
79     EXPECT_FALSE(path.empty());
80     EXPECT_TRUE(path.is_absolute());
81     EXPECT_TRUE(fs::exists(path));
82     EXPECT_TRUE(fs::is_directory(path));
83
84     fs::path fp = path / "bar";
85     int fd = open(fp.c_str(), O_RDWR | O_CREAT | O_TRUNC, 0666);
86     EXPECT_NE(fd, -1);
87     close(fd);
88
89     TemporaryFile f("Foo", d.path());
90     EXPECT_EQ(d.path(), f.path().parent_path());
91   }
92   bool exists = (scope == TemporaryDirectory::Scope::PERMANENT);
93   EXPECT_EQ(exists, fs::exists(path));
94 }
95
96 TEST(TemporaryDirectory, Permanent) {
97   testTemporaryDirectory(TemporaryDirectory::Scope::PERMANENT);
98 }
99
100 TEST(TemporaryDirectory, DeleteOnDestruction) {
101   testTemporaryDirectory(TemporaryDirectory::Scope::DELETE_ON_DESTRUCTION);
102 }
103
104 TEST(ChangeToTempDir, ChangeDir) {
105   auto pwd1 = fs::current_path();
106   {
107     ChangeToTempDir d;
108     EXPECT_NE(pwd1, fs::current_path());
109   }
110   EXPECT_EQ(pwd1, fs::current_path());
111 }
112
113 TEST(PCREPatternMatch, Simple) {
114   EXPECT_PCRE_MATCH(".*a.c.*", "gabca");
115   EXPECT_NO_PCRE_MATCH("a.c", "gabca");
116   EXPECT_NO_PCRE_MATCH(".*ac.*", "gabca");
117 }
118
119 TEST(CaptureFD, GlogPatterns) {
120   CaptureFD stderr(2);
121   LOG(INFO) << "All is well";
122   EXPECT_NO_PCRE_MATCH(glogErrOrWarnPattern(), stderr.readIncremental());
123   {
124     LOG(ERROR) << "Uh-oh";
125     auto s = stderr.readIncremental();
126     EXPECT_PCRE_MATCH(glogErrorPattern(), s);
127     EXPECT_NO_PCRE_MATCH(glogWarningPattern(), s);
128     EXPECT_PCRE_MATCH(glogErrOrWarnPattern(), s);
129   }
130   {
131     LOG(WARNING) << "Oops";
132     auto s = stderr.readIncremental();
133     EXPECT_NO_PCRE_MATCH(glogErrorPattern(), s);
134     EXPECT_PCRE_MATCH(glogWarningPattern(), s);
135     EXPECT_PCRE_MATCH(glogErrOrWarnPattern(), s);
136   }
137 }
138
139 class EnvVarSaverTest : public testing::Test {};
140
141 TEST_F(EnvVarSaverTest, ExampleNew) {
142   auto key = "hahahahaha";
143   EXPECT_EQ(nullptr, getenv(key));
144
145   auto saver = make_unique<EnvVarSaver>();
146   PCHECK(0 == setenv(key, "blah", true));
147   EXPECT_EQ("blah", std::string{getenv(key)});
148   saver = nullptr;
149   EXPECT_EQ(nullptr, getenv(key));
150 }
151
152 TEST_F(EnvVarSaverTest, ExampleExisting) {
153   auto key = "USER";
154   EXPECT_NE(nullptr, getenv(key));
155   auto value = std::string{getenv(key)};
156
157   auto saver = make_unique<EnvVarSaver>();
158   PCHECK(0 == setenv(key, "blah", true));
159   EXPECT_EQ("blah", std::string{getenv(key)});
160   saver = nullptr;
161   EXPECT_TRUE(value == getenv(key));
162 }
163
164 TEST_F(EnvVarSaverTest, ExampleDeleting) {
165   auto key = "USER";
166   EXPECT_NE(nullptr, getenv(key));
167   auto value = std::string{getenv(key)};
168
169   auto saver = make_unique<EnvVarSaver>();
170   PCHECK(0 == unsetenv(key));
171   EXPECT_EQ(nullptr, getenv(key));
172   saver = nullptr;
173   EXPECT_TRUE(value == getenv(key));
174 }
175
176 int main(int argc, char *argv[]) {
177   testing::InitGoogleTest(&argc, argv);
178   gflags::ParseCommandLineFlags(&argc, &argv, true);
179   return RUN_ALL_TESTS();
180 }