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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
/*
* Copyright (c) 2007 - 2023 by mod_tile contributors (see AUTHORS file)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; If not, see http://www.gnu.org/licenses/.
*/
#include <string>
#include "catch/catch.hpp"
#include "catch_test_common.hpp"
#include "config.h"
#include "render_config.h"
#ifdef __FreeBSD__
#include <sys/wait.h>
#endif
#ifndef PROJECT_BINARY_DIR
#define PROJECT_BINARY_DIR "."
#endif
#ifndef RENDERD_CONF
#define RENDERD_CONF "./etc/renderd/renderd.conf.examples"
#endif
std::string test_binary = (std::string)PROJECT_BINARY_DIR + "/" + "render_old";
extern std::string err_log_lines, out_log_lines;
TEST_CASE("render_old common", "common testing")
{
SECTION("invalid long option", "should return 1") {
std::vector<std::string> argv = {"--doesnotexist"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
}
SECTION("invalid short options", "should return 1") {
std::vector<std::string> argv = {"-doesnotexist"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
}
SECTION("--help", "should return 0") {
std::vector<std::string> argv = {"--help"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 0);
}
SECTION("--version", "should show version number") {
std::vector<std::string> argv = {"--version"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 0);
REQUIRE(out_log_lines == VERSION);
}
SECTION("--config invalid file", "should return 1") {
std::string renderd_conf = "/path/is/invalid";
std::vector<std::string> argv = {"--config", renderd_conf};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
REQUIRE_THAT(err_log_lines, Catch::Matchers::Contains("Config file '" + renderd_conf + "' does not exist, please specify a valid file"));
}
}
TEST_CASE("render_old specific", "specific testing")
{
std::string renderd_conf = (std::string)RENDERD_CONF;
SECTION("--config with invalid --map", "should return 1") {
std::string map = "invalid";
std::vector<std::string> argv = {"--config", renderd_conf, "--map", map};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
REQUIRE_THAT(err_log_lines, Catch::Matchers::Contains("Map section '" + map + "' does not exist in config file '" + renderd_conf + "'."));
}
SECTION("--num-threads subceeds minimum of 1", "should return 1") {
std::vector<std::string> argv = {"--num-threads", "0"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
REQUIRE_THAT(err_log_lines, Catch::Matchers::Contains("Invalid number of threads, must be >= 1 (0 was provided)"));
}
SECTION("--min-zoom/--max-zoom exceeds maximum of MAX_ZOOM", "should return 1") {
std::vector<std::string> argv = {GENERATE("--max-zoom", "--min-zoom"), std::to_string(MAX_ZOOM + 1)};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
REQUIRE_THAT(err_log_lines, Catch::Matchers::Contains("zoom, must be <= 20 (21 was provided)"));
}
SECTION("--min-zoom exceeds --max-zoom", "should return 1") {
std::vector<std::string> argv = {"--max-zoom", "1", "--min-zoom", "2"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
REQUIRE_THAT(err_log_lines, Catch::Matchers::Contains("Specified min zoom (2) is larger than max zoom (1)."));
}
SECTION("--timestamp is not an integer", "should return 1") {
std::string timestamp = "invalid";
std::vector<std::string> argv = {"--timestamp", timestamp};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 1);
}
SECTION("--timestamp is a date with --help", "should return 0") {
std::string timestamp = GENERATE("01/01/69", "01/01/101");
std::vector<std::string> argv = {"--timestamp", timestamp, "--help"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 0);
}
SECTION("--timestamp is an integer with --help", "should return 0") {
std::string timestamp = "111";
std::vector<std::string> argv = {"--timestamp", timestamp, "--help"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 0);
}
}
TEST_CASE("render_old min/max int generator", "min/max int generator testing")
{
std::string option = GENERATE("--max-load", "--max-zoom", "--min-zoom", "--num-threads");
SECTION(option + " option is positive with --help", "should return 0") {
std::vector<std::string> argv = {option, "1", "--help"};
int status = run_command(test_binary, argv);
REQUIRE(WEXITSTATUS(status) == 0);
}
}
|