1 Star 0 Fork 242

xiongying/cpp-tbox

forked from cpp-master/cpp-tbox 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
respond_test.cpp 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
海卫哥 提交于 2023-07-25 00:13 +08:00 . tidy: 添加文件头
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include <gtest/gtest.h>
#include "respond.h"
namespace tbox {
namespace http {
namespace {
using namespace std;
TEST(Respond, ToString)
{
Respond rsp;
rsp.status_code = StatusCode::k200_OK;
rsp.http_ver = HttpVer::k1_1;
rsp.body = "hello world!";
rsp.headers["Content-Type"] = "plain/text";
EXPECT_TRUE(rsp.isValid());
const char *target_str = \
"HTTP/1.1 200 OK\r\n"
"Content-Type: plain/text\r\n"
"Content-Length: 12\r\n"
"\r\n"
"hello world!";
EXPECT_EQ(rsp.toString(), target_str);
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/VisionDeveloper/cpp-tbox.git
git@gitee.com:VisionDeveloper/cpp-tbox.git
VisionDeveloper
cpp-tbox
cpp-tbox
master

搜索帮助