gpt4 book ai didi

testing - fcgi 脚本是如何测试的?

转载 作者:行者123 更新时间:2023-11-28 21:16:02 25 4
gpt4 key购买 nike

我是新手,如果这听起来很天真,请原谅我。我用 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 testninja 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-8\r\n\r\n";
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解析器,我在测试中使用的是google test

最佳答案

The problem is now I do not control from where the test is run.

默认情况下,测试在构建目录中运行,但有参数 workdir(请参阅 reference),您可以使用它来设置 将用作工作目录的绝对路径测试目录,例如:

exe = executable(...)
wdir = join_paths(meson.current_source_dir(), 'some_dir')
test('basic', exe, workdir : wdir)

检查 meson object其他可能的引用目录。

关于testing - fcgi 脚本是如何测试的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58129656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com