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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*
* (C) Copyright 1996- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
* In applying this licence, ECMWF does not waive the privileges and immunities
* granted to it by virtue of its status as an intergovernmental organisation nor
* does it submit to any jurisdiction.
*/
#include <fstream>
#include <string>
#include "eckit/exception/Exceptions.h"
#include "eckit/filesystem/LocalPathName.h"
#include "eckit/filesystem/PathExpander.h"
#include "eckit/filesystem/PathName.h"
#include "eckit/testing/Test.h"
using namespace std;
using namespace eckit;
using namespace eckit::testing;
namespace eckit::test {
//----------------------------------------------------------------------------------------------------------------------
CASE("Expand a CWD") {
std::string s = "{CWD}/tmp/foo";
char* e = ::getenv("CURRENT_TEST_DIR");
EXPECT(e != nullptr);
std::string r = std::string(e) + std::string("/tmp/foo");
LocalPathName px = PathExpander::expand(s);
EXPECT(px.realName() == LocalPathName(r).realName());
}
CASE("Expand using missing handler") {
std::string s = "{FOO}/tmp/foo";
EXPECT_THROWS_AS(PathExpander::expand(s), eckit::UserError);
}
CASE("Expand an environment variable") {
std::string s = "{ENVVAR?FOO}/tmp/bar";
SYSCALL(::setenv("FOO", "/foobar", 1));
std::string ps = PathExpander::expand(s);
std::string pr = "/foobar/tmp/bar";
EXPECT(ps == pr); // paths dont exist, compare strings
}
static std::string write_file() { // write file contents
char* e = ::getenv("CURRENT_TEST_DIR");
ASSERT(e != nullptr);
PathName foo(e);
foo /= "foo";
std::ofstream of(foo.asString().c_str(), std::ofstream::trunc);
of << "/hoofa/lomp" << std::endl;
of.close();
return foo.asString();
}
CASE("Expand with contents of a file") {
std::string foo = write_file();
std::string s = "/baz/{FILE?" + foo + "}/tmp/bar";
LocalPathName px = PathExpander::expand(s);
std::string r = std::string("/baz/hoofa/lomp/tmp/bar");
EXPECT(px == LocalPathName(r)); // paths dont exist, compare strings
}
CASE("Expand multiple times, multiple paths") {
std::string foo = write_file();
SYSCALL(::setenv("TDIR", "testdir", 1));
std::string s = "/baz/{ENVVAR?TDIR}/tmp/bar:{FILE?" + foo + "}/xxx";
LocalPathName px = PathExpander::expand(s);
std::string r = std::string("/baz/testdir/tmp/bar:/hoofa/lomp/xxx");
EXPECT(px == LocalPathName(r)); // paths dont exist, compare strings
}
//----------------------------------------------------------------------------------------------------------------------
} // namespace eckit::test
int main(int argc, char** argv) {
return run_tests(argc, argv);
}
|