| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <fstream> |
| #include <iostream> |
|
|
| #include "src/Common.hpp" |
| #include "gtest/gtest.h" |
|
|
| #ifdef BAZEL |
| #include "tools/cpp/runfiles/runfiles.h" |
| using bazel::tools::cpp::runfiles::Runfiles; |
| #endif |
|
|
| namespace opencc { |
|
|
| class CommandLineConvertTest : public ::testing::Test { |
| protected: |
| CommandLineConvertTest() { GetCurrentWorkingDirectory(); } |
|
|
| virtual ~CommandLineConvertTest() { free(originalWorkingDirectory); } |
|
|
| virtual void SetUp() { |
| #ifdef BAZEL |
| runfiles_.reset(Runfiles::CreateForTest()); |
| #else |
| ASSERT_NE("", PROJECT_BINARY_DIR); |
| ASSERT_NE("", CMAKE_SOURCE_DIR); |
| ASSERT_EQ(0, chdir(PROJECT_BINARY_DIR "/data")); |
| #endif |
| } |
|
|
| virtual void TearDown() { ASSERT_EQ(0, chdir(originalWorkingDirectory)); } |
|
|
| std::string GetFileContents(const std::string& fileName) const { |
| std::ifstream fs(fileName); |
| EXPECT_TRUE(fs.is_open()) << fileName; |
| const std::string content((std::istreambuf_iterator<char>(fs)), |
| (std::istreambuf_iterator<char>())); |
| fs.close(); |
| return content; |
| } |
|
|
| void GetCurrentWorkingDirectory() { |
| originalWorkingDirectory = getcwd(nullptr, 0); |
| } |
|
|
| std::string OpenccCommand() const { |
| #ifdef BAZEL |
| return runfiles_->Rlocation("_main/src/tools/command_line"); |
| #else |
| #ifndef _MSC_VER |
| return PROJECT_BINARY_DIR "/src/tools/opencc"; |
| #else |
| #ifdef NDEBUG |
| return PROJECT_BINARY_DIR "/src/tools/Release/opencc.exe"; |
| #else |
| return PROJECT_BINARY_DIR "/src/tools/Debug/opencc.exe"; |
| #endif |
| #endif |
| #endif |
| } |
|
|
| std::string InputDirectory() const { |
| #ifdef BAZEL |
| return runfiles_->Rlocation("_main/test/testcases") + "/"; |
| #else |
| return CMAKE_SOURCE_DIR "/test/testcases/"; |
| #endif |
| } |
|
|
| std::string OutputDirectory() const { |
| #ifdef BAZEL |
| return ::testing::TempDir() + "/"; |
| #else |
| return PROJECT_BINARY_DIR "/test/"; |
| #endif |
| } |
|
|
| std::string AnswerDirectory() const { |
| #ifdef BAZEL |
| return runfiles_->Rlocation("_main/test/testcases") + "/"; |
| #else |
| return CMAKE_SOURCE_DIR "/test/testcases/"; |
| #endif |
| } |
|
|
| std::string ConfigurationDirectory() const { |
| #ifdef BAZEL |
| return ""; |
| #else |
| return CMAKE_SOURCE_DIR "/data/config/"; |
| #endif |
| } |
|
|
| std::string InputFile(const char* config) const { |
| return InputDirectory() + config + ".in"; |
| } |
|
|
| std::string OutputFile(const char* config) const { |
| return OutputDirectory() + config + ".out"; |
| } |
|
|
| std::string AnswerFile(const char* config) const { |
| return AnswerDirectory() + config + ".ans"; |
| } |
|
|
| std::string TestCommand(const char* config, const std::string& inputFile, |
| const std::string& outputFile) const { |
| std::string cmd = OpenccCommand() + " -i " + inputFile + " -o " + |
| outputFile + " -c " + ConfigurationDirectory() + config + |
| ".json"; |
| #ifdef BAZEL |
| cmd += " --path " + runfiles_->Rlocation("_main/data/dictionary") + "/" + |
| " --path " + runfiles_->Rlocation("_main/data/config") + "/"; |
| #endif |
| return cmd; |
| } |
|
|
| char* originalWorkingDirectory; |
|
|
| #ifdef BAZEL |
| std::unique_ptr<Runfiles> runfiles_; |
| #endif |
| }; |
|
|
| class ConfigurationTest : public CommandLineConvertTest, |
| public ::testing::WithParamInterface<const char*> {}; |
|
|
| TEST_P(ConfigurationTest, Convert) { |
| const char* config = GetParam(); |
| const std::string inputFile = InputFile(config); |
| const std::string outputFile = OutputFile(config); |
| ASSERT_EQ(0, system(TestCommand(config, inputFile, outputFile).c_str())); |
| const std::string output = GetFileContents(OutputFile(config)); |
| const std::string answer = GetFileContents(AnswerFile(config)); |
| ASSERT_EQ(answer, output); |
| } |
|
|
| TEST_P(ConfigurationTest, InPlaceConvert) { |
| const char* config = GetParam(); |
| |
| const std::string inputFile = InputFile(config); |
| const std::string outputFile = OutputFile(config); |
| std::ifstream source(inputFile, std::ios::binary); |
| std::ofstream dest(outputFile, std::ios::binary); |
| dest << source.rdbuf(); |
| source.close(); |
| dest.close(); |
| |
| ASSERT_EQ(0, system(TestCommand(config, outputFile, outputFile).c_str())); |
| const std::string output = GetFileContents(OutputFile(config)); |
| const std::string answer = GetFileContents(AnswerFile(config)); |
| ASSERT_EQ(answer, output); |
| } |
|
|
| INSTANTIATE_TEST_SUITE_P( |
| CommandLine, ConfigurationTest, |
| ::testing::Values("hk2s", "hk2t", "jp2t", "s2hk", "s2t", "s2tw", "s2twp", |
| "t2hk", "t2jp", "t2s", "tw2s", "tw2sp", "tw2t"), |
| [](const testing::TestParamInfo<ConfigurationTest::ParamType>& info) { |
| return info.param; |
| }); |
|
|
| } |
|
|