-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_util.cpp
60 lines (57 loc) · 1.93 KB
/
test_util.cpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Renzoku - Re-build, re-test, and re-run a program whenever the code changes
* Copyright (C) 2015 Colton Wolkins
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "util.hpp"
#include "catch.hpp"
#include <cstring>
#include <string>
#include <unistd.h>
TEST_CASE( "Testing Utility Functions", "[Util]" ) {
SECTION("cwd") {
std::string dir;
dir = Util::cwd();
INFO("Current Directory is: " << Util::cwd());
REQUIRE_FALSE(dir == "/tmp");
REQUIRE(chdir("/tmp/") == 0);
INFO("Current Directory is: " << Util::cwd());
REQUIRE(Util::cwd() == "/tmp");
chdir(dir.c_str());
INFO("Current Directory is: " << Util::cwd());
}
SECTION("listDir") {
Util::DirList dir = Util::listDir(Util::cwd(), Util::FILETYPE);
REQUIRE_FALSE(dir.empty());
for(std::string item : dir)
INFO( "listDir: " << item );
REQUIRE_FALSE(std::find(dir.begin(), dir.end(), "Makefile") == dir.end());
}
SECTION("getCurrentDateTime") {
std::string current_time = Util::getCurrentDateTime();
REQUIRE_FALSE(current_time == "test");
}
SECTION("lowercase") {
std::string str = "TeSt H2O";
Util::lowercase(str);
REQUIRE(str == "test h2o");
}
SECTION("lowercase_r") {
std::string str = "TeSt H2O";
REQUIRE(Util::lowercase_r(str) == "test h2o");
}
}