我是新手,所以如果这听起来很幼稚,请原谅我。我用fastcgi++写了一个脚本。我测试了基本用例。但就像一个优秀的软件工程师一样,我想在每次进行更改时都测试脚本,以确保我不会破坏东西。
这是我以前做的:
这是我的目录结构:
script:
- bin
- build (contained the bash script to compile the script)
- src
- tests
- build (contained bash script to compile the test)
- src (contained the test file)
- output
我破解了我测试的方式。我曾经使用 curl 调用我的脚本并将其输出重定向到测试/输出中的文件(使用相对路径(并将其与预期的输出进行比较。我可以这样做,因为测试是手动编译的,我只有在将目录更改为tests/build
后才执行测试。我最近决定使用构建系统。我选择了介子。使用介子进行测试的方式是运行meson test
或ninja test
。问题是现在我无法控制从何处运行测试。
在这种情况下如何测试?以及如何测试 fcgi 脚本?
编辑:这是我如何编译和测试的一个例子。这是一个完整的可验证示例:
#include <fastcgi++/request.hpp>
#include <fastcgi++/manager.hpp>
class test : public Fastcgipp::Request<char>
{
bool response() {
nlohmann::json output;
out << "Content-Type: application/json; charset:utf-8rnrn";
out << "{"success": true}";
}
}
int main() {
Fastcgipp::Manager<test> manager;
manager.setupSignals();
manager.listen();
manager.start();
manager.join();
}
你可以把响应看作是主要的。这是您开始处理事物的地方。你可以接受输入和输出以及所有好东西。
这就是我测试的方式:
TEST(test, test1) {
std::string fileName = "test.txt";
nlohmann::json input, output;
input["success"] = true;
std::system(std::string("curl -X GET "localhost/cgi-bin/test.fcg" > " + fileName).c_str());
std::ifstream file(fileName);
std::string out;
std::getline(file, out);
output = nlohmann::json::parse(out);
ASSERT_EQ(input, output);
std::system(std::string("rm " + fileName).c_str());
}
注意:nlohmann::json是一个json解析器,我在测试中使用谷歌测试
问题是现在我无法控制测试的运行位置。
默认情况下,测试在构建目录中运行,但您可以使用参数workdir(请参阅参考(来设置将用作测试工作目录的绝对路径,例如:
exe = executable(...)
wdir = join_paths(meson.current_source_dir(), 'some_dir')
test('basic', exe, workdir : wdir)
检查介子对象是否有其他可能的引用目录。