TDD实例

TDD实例

github地址

项目中对于 TDD 的实战,依赖的是 GoogleTest 框架

我负责编码单元对中控提供

  • 设置编码单元
  • 设置视频源
  • 设置视频输出
  • 状态检测
  • 开启通道
  • 关闭通道

这 6 个接口,中控通过 http 调用编码单元接口,为了解耦和方便进行 TDD 测试,我们将这几个方法写成一个抽象类,编码单元再实现具体的方法:

class IEventHandler {public:virtual bool StartChannel(int channel_id) = 0;virtual bool StopChannel(int channel_id) = 0;virtual bool ConfigChannel(int channel_id,const tucodec::SChannelSourceConfig &source_config) = 0;virtual bool ConfigChannel(int channel_id,const tucodec::SChannelDestConfig &dest_config) = 0;virtual bool ConfigChannel(int channel_id,const tucodec::SChannelEncoderConfig &encoder_config) = 0;virtual void DetectWorker(int channel_id, int duration,tucodec::SWorkerStatus &worker_status) = 0;};

这里 ConfigChannel 方法处理不同的参数结构体。

在测试用例中首先继承 testing::Testpublic IEventHandler


class HttpControllerTest : public testing::Test, public IEventHandler {public:bool StartChannel(int channel_id) override {channel_id_ = channel_id;    return true;}bool StopChannel(int channel_id) override {channel_id_ = channel_id;  return true;}bool ConfigChannel(int channel_id,const tucodec::SChannelSourceConfig &source_config) override {channel_id_ = channel_id;// 其他参数省略source_config_.username = source_config.username;return true;}bool ConfigChannel(int channel_id,const tucodec::SChannelDestConfig &dest_config) override {channel_id_ = channel_id;// 其他参数省略dest_config_.port = dest_config.port;return true;}bool ConfigChannel(int channel_id,const tucodec::SChannelEncoderConfig &encoder_config) override {channel_id_ = channel_id;// 其他参数省略encoder_config_.output_h = encoder_config.output_h;  return true;}void DetectWorker(int channel_id, int duration,tucodec::SWorkerStatus &worker_status) override {channel_id_ = channel_id;};  protected:void SetUp() override {    tucodec::TuLog::Init("", "http_controller_test.log", 50, 2 * 1024 * 1024);tucodec::TuLog::Instance()->SetPriority(tucodec::kTulogDebug);   controller_.Init();}void TearDown() override {  tucodec::TuLog::Destory();}protected :  HttpController controller_{this};tucodec::SChannelSourceConfig source_config_;tucodec::SChannelDestConfig dest_config_;tucodec::SChannelEncoderConfig encoder_config_;int channel_id_{};
};TEST_F(HttpControllerTest, GetStateTest) {unsigned char get_json[] = "{\n""    \"cmd\":\"get_state\",\n""    \"chn_id\":1,\n""    \"duration\":2\n""}";controller_.ResolveData(get_json, sizeof(get_json));ASSERT_EQ(channel_id_, 1);
}TEST_F(HttpControllerTest, StartChannelTest) {unsigned char start_json[] = "{\n""    \"cmd\":\"start_chn\",\n""    \"chn_id\":1\n""}";controller_.ResolveData(start_json, sizeof(start_json));ASSERT_EQ(channel_id_, 1);
}TEST_F(HttpControllerTest, StopChannelTest) {unsigned char stop_json[] = "{\n""    \"cmd\":\"stop_chn\",\n""    \"chn_id\":2\n""}";controller_.ResolveData(stop_json, sizeof(stop_json));ASSERT_EQ(channel_id_, 2);
}TEST_F(HttpControllerTest, DestConfigTest) {unsigned char destination_json[] = "{\n""    \"cmd\":\"set_destination\",\n""    \"chn_id\":1,\n""    \"address\":\"192.168.1.221\",\n""    \"port\":554,\n""    \"destination_type\":\"onvif\",\n""    \"stream_id\":\"live1\"\n""}";controller_.ResolveData(destination_json, sizeof(destination_json));ASSERT_EQ(channel_id_, 1);ASSERT_EQ(dest_config_.address, "192.168.1.221");ASSERT_EQ(dest_config_.port, 554);ASSERT_EQ(dest_config_.destination_type, "onvif");ASSERT_EQ(dest_config_.stream_id, "live1");
}

实现具体接口,这里只需要对他进行赋值即可,将本身传入 HttpController 中,这里我们先不测试网络,直接调用接收到 http 请求后解析 json 的函数。再根据参数中命令选择调用 设置编码源还是具体哪一个接口。因为需要在回调函数中解析 json,这里就直接继承 DataCallBack 类,在接收方法中直接调用 ResolveData

class HttpController : public tucodec::DataCallBack {public:explicit HttpController(IEventHandler* event_handler);virtual ~HttpController();bool Init(const std::string &server_ip = "0.0.0.0", int server_port = 8081);bool ResolveData(unsigned char* data, unsigned int len);void ReceiveDataCallBack(int local_busy_handle,int remote_handle,unsigned char* data,unsigned int data_length,void* user) override {};void ReceiveDataCallBack(int local_busy_handle,const std::string &remote_ip,int remote_port,unsigned char* data,unsigned int data_length,void* user) override {};void ReceiveDataCallBack(int local_busy_handle,const std::string& remote_ip,int remote_port,const std::string& path,unsigned char* data,unsigned int data_length,void* user) override {tucodec::TuLog::Instance()->Info("receive data: %s length: %d ", data, data_length); //NOLINTtucodec::Server* server = reinterpret_cast<tucodec::Server*>(user);if (ResolveData(data, data_length)) {unsigned char response[] = "{\"code\":0}";int len = sizeof(response);server->SendResponse2Client(0, response, len);} else {unsigned char response[] = "{\"code\":-1}";int len = sizeof(response);server->SendResponse2Client(0, response, len);}};void StatusCallBack(int local_busy_handle,int remote_handle,std::string remote_ip,int remote_port,int remote_status,void* user) override {};private:IEventHandler* event_handler_;tucodec::Server* server_;
};
const char *k_set_codec_source = "set_codec_source";
const char *k_set_destination = "set_destination";
const char *k_start_chn = "start_chn";
const char *k_stop_chn = "stop_chn";
const char *k_get_state = "get_state";
const char *k_service_state = "service_state";HttpController::HttpController(IEventHandler *event_handler) {event_handler_ = event_handler;server_ = nullptr;
}HttpController::~HttpController() {if (server_ != nullptr) {delete server_;server_ = nullptr;}
}bool HttpController::Init(const std::string &server_ip, int server_port) {return true;
}bool HttpController::ResolveData(unsigned char *data, unsigned int len) {tucodec::TuJson json;std::stringstream x_read_write;x_read_write.write((const char *) data, len);json.Load(x_read_write);std::string cmd = json.GetString("cmd");int channel_id = json.GetInt("chn_id");if (cmd == k_set_codec_source) {SourceCodecHandler source_codec_handler;return source_codec_handler.HandleJson(json, channel_id, event_handler_);}if (cmd == k_set_destination) {DestinationHandler destination_handler;return destination_handler.HandleJson(json, channel_id, event_handler_);}if (cmd == k_get_state) {GetStatusHandler get_status_handler;return get_status_handler.HandleJson(json, channel_id, event_handler_);}if (cmd == k_start_chn) {return event_handler_->StartChannel(channel_id);}if (cmd == k_stop_chn) {return event_handler_->StopChannel(channel_id);}return false;
}

这边还添加了一个类专门用来处理不同 json,方便以后扩展

class IHttpHandler {public:virtual bool HandleJson(tucodec::TuJson &json, int channel_id, //NOLINTIEventHandler* event_handler_) = 0; //NOLINT
};class DestinationHandler : public IHttpHandler {public:bool HandleJson(tucodec::TuJson &json, int channel_id,IEventHandler* event_handler_) override;
};class SourceCodecHandler : public IHttpHandler {public:bool HandleJson(tucodec::TuJson &json, int channel_id,IEventHandler* event_handler_) override;
};class GetStatusHandler : public IHttpHandler {public:bool HandleJson(tucodec::TuJson &json, int channel_id,IEventHandler* event_handler_) override;
};

bool DestinationHandler::HandleJson(tucodec::TuJson &json,int channel_id, IEventHandler *event_handler_) { //NOLINTif (event_handler_ == nullptr) {return false;}tucodec::ChannelDestConfig channel_dest_config;channel_dest_config.port = json.GetInt("port");channel_dest_config.address = json.GetString("address");channel_dest_config.stream_id = json.GetString("stream_id");channel_dest_config.destination_type = json.GetString("destination_type");return event_handler_->ConfigChannel(channel_id, channel_dest_config);
}
bool SourceCodecHandler::HandleJson(tucodec::TuJson &json,int channel_id, IEventHandler *event_handler_) { //NOLINTif (event_handler_ == nullptr) {return false;}// codectucodec::ChannelEncoderConfig channel_encoder_config;// 省略部分参数channel_encoder_config.output_w = json.GetInt("output_w");if (!event_handler_->ConfigChannel(channel_id, channel_encoder_config)) {tucodec::TuLog::Instance()->Error("EncoderConfig Error!");return false;}// sourcetucodec::ChannelSourceConfig channel_source_config;channel_source_config.source_type = json.GetString("source_type");channel_source_config.address = json.GetString("address");channel_source_config.port = json.GetInt("port");channel_source_config.username = json.GetString("username");channel_source_config.password = json.GetString("password");return event_handler_->ConfigChannel(channel_id, channel_source_config);;
}bool GetStatusHandler::HandleJson(tucodec::TuJson &json, int channel_id, IEventHandler *event_handler_) {if (event_handler_ == nullptr) {return false;}tucodec::SWorkerStatus status;int  duration = json.GetInt("duration");event_handler_->DetectWorker(channel_id, duration, status);return status.encoder_working == 1 && status.source_working == 1;
}

解析接口测试完毕后,接下来加入网络模块。
HttpController 类中先添加成员变量 tucodec::Server *server_;,修改构造和析构

HttpController::HttpController(IEventHandler *event_handler) {event_handler_ = event_handler;server_ = nullptr;
}HttpController::~HttpController() {if (server_ != nullptr) {delete server_;server_ = nullptr;}
}

Init 方法中添加:

if (server_ == nullptr) {server_ = tucodec::NetWorkFactory::CreateHttpServer(server_ip,server_port);server_->SetDataCallBack(this,reinterpret_cast<void *>(server_));if (!server_->StartServer()) {tucodec::TuLog::Instance()->Error("start http server failed!");return false;}
}
tucodec::TuLog::Instance()->Info("start http server success!");

测试类中加入客户端初始化以及阻塞函数:

void Wait(int time) {while (watcher_ == 0 && time > 0) {std::this_thread::sleep_for(std::chrono::seconds(1));--time;}
}protected:
void SetUp() override {watcher_ = 0;tucodec::TuLog::Init("", "http_controller_test.log", 50, 2 * 1024 * 1024);tucodec::TuLog::Instance()->SetPriority(tucodec::kTulogDebug);controller_.Init();client_ = tucodec::NetWorkFactory::CreateHttpClient("apt/v1/test",tucodec::kRequestPost);client_->ConnectServer("127.0.0.1", 8081);client_->SetDataCallBack(nullptr, nullptr);
}void TearDown() override {delete client_;client_ = nullptr;tucodec::TuLog::Destory();
}
protected :
tucodec::Client *client_ = nullptr;
HttpController controller_{this};
int watcher_{};

添加测试用例:


TEST_F(HttpControllerTest, SourceCodeConfigTest) {unsigned char source_codec_json[] = "{\n""    \"cmd\":\"set_codec_source\",\n""    \"chn_id\":1,\n""    \"source_type\":\"onvif\"\n""}";client_->SendRequest2Server(source_codec_json, sizeof(source_codec_json));Wait(2);// 省略参数ASSERT_EQ(channel_id_, 1);ASSERT_EQ(source_config_.source_type, "onvif");
}

尽量解耦和,让业务依赖于接口,而非接口依赖于业务,每一个小模块都可以单独测试,在保证程序按预期稳定运行的基础上(有测试用例的存在),再将我们的代码进行重构,小步前进,出现问题也能快速定位,或者 revert


我们这里用的是 TestCase 级别的事件机制

gtest 提供了多种事件机制,非常方便我们在案例之前或之后做一些操作。总结一下 gtest 的事件一共有 3 种:

  1. 全局的,所有案例执行前后。
  2. TestSuite 级别的,在某一批案例中第一个案例前,最后一个案例执行后。
  3. TestCase 级别的,每个 TestCase 前后。

全局事件

要实现全局事件,必须写一个类,继承 testing::Environment 类,实现里面的 SetUpTearDown 方法。

  1. SetUp() 方法在所有案例执行前执行
  2. TearDown() 方法在所有案例执行后执行
class FooEnvironment : public testing::Environment
{
public:virtual void SetUp(){std::cout << "Foo FooEnvironment SetUP" << std::endl;}virtual void TearDown(){std::cout << "Foo FooEnvironment TearDown" << std::endl;}
};

当然,这样还不够,我们还需要告诉 gtest 添加这个全局事件,我们需要在 main 函数中通过 testing::AddGlobalTestEnvironment 方法将事件挂进来,也就是说,我们可以写很多个这样的类,然后将他们的事件都挂上去。

int main(int argc, char* argv[])
{testing::AddGlobalTestEnvironment(new FooEnvironment);testing::InitGoogleTest(&argc, argv);return RUN_ALL_TESTS();
}

TestSuite事件

我们需要写一个类,继承 testing::Test ,然后实现两个静态方法

  1. SetUpTestCase() 方法在第一个 TestCase 之前执行
  2. TearDownTestCase() 方法在最后一个 TestCase 之后执行
class FooTest : public testing::Test {protected:static void SetUpTestCase() {shared_resource_ = new ;}static void TearDownTestCase() {delete shared_resource_;shared_resource_ = NULL;}// Some expensive resource shared by all tests.static T* shared_resource_;
};

在编写测试案例时,我们需要使用 TEST_F 这个宏,第一个参数必须是我们上面类的名字,代表一个 TestSuite

TEST_F(FooTest, Test1){// you can refer to shared_resource here
}
TEST_F(FooTest, Test2){// you can refer to shared_resource here
}

TestCase事件

TestCase 事件是挂在每个案例执行前后的,实现方式和上面的几乎一样,不过需要实现的是 SetUp 方法和 TearDown 方法:

  1. SetUp() 方法在每个 TestCase 之前执行
  2. TearDown() 方法在每个 TestCase 之后执行
class FooCalcTest:public testing::Test
{
protected:virtual void SetUp(){m_foo.Init();}virtual void TearDown(){m_foo.Finalize();}FooCalc m_foo;
};TEST_F(FooCalcTest, HandleNoneZeroInput)
{EXPECT_EQ(4, m_foo.Calc(12, 16));
}TEST_F(FooCalcTest, HandleNoneZeroInput_Error)
{EXPECT_EQ(5, m_foo.Calc(12, 16));
}

TEST_F 中使用的变量可以在初始化函数SetUp中初始化,在 TearDown 中销毁,并且所有的 TEST_F 是互相独立的,都是在初始化以后的状态开始运行,一个 TEST_F 不会影响另一个 TEST_F 所使用的数据

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/448070.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

修改Sql server中列的属性脚本

alter tablename alter column columnname varchar(100) not null 转载于:https://www.cnblogs.com/pw/archive/2007/01/08/615062.html

推荐 21 个顶级的 Vue UI 库

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 1、Vuetify Star 数为 11K&#xff0c;提供了 80 多个 Vue.js 组件&#xff0c;这些组件是根据谷歌 Material Design 指南实现的。Vuet…

MSCRM日志配置

之前有很多人问我在MSCRM上日志怎么做&#xff0c;具体的如&#xff08;登录日志&#xff0c;操作日志&#xff09;。个人认为操作日志确实比较难做&#xff08;不过我可以给一个思路可以用触发器或者plugin来实现&#xff0c;不过比较麻烦&#xff0c;对系统压力也比较大&…

机动车驾驶人科目三考试项目及合格标准

机动车驾驶人科目三考试项目及合格标准 &#xff08;2013年道路考试智能评判&#xff09; 科目三考试综合评判标准 一般规定&#xff1a;道路驾驶技能满分为100分&#xff0c;成绩达到90分为合格。 道路驾驶技能通用评判 不合格情形&#xff1a;考试时出现下列情形之一的&#…

数据结构——数组

数组 github地址 数组基础 数组最大的有点&#xff1a;快速查询。索引快数组最好应用于 “索引有语义” 的情况但并非所有有语义的索引都适用于数组&#xff08;身份证号&#xff09;数组也可以处理 ”索引没有语义“ 的情况 封装数组类 数组类该具备的功能&#xff1a;增…

十分钟入门 RocketMQ

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 本文首先引出消息中间件通常需要解决哪些问题&#xff0c;在解决这些问题当中会遇到什么困难&#xff0c;Apache RocketMQ作为阿里开源的…

高智商孩子14个独有的特点

每一位家长都希望自己的孩子具有高智商&#xff0c;但据专家分析孩子的智商一种是与生俱来的&#xff0c;另一种是在2岁之前还可以提高的&#xff0c;一起来看看怎样才能提高孩子的智商? 智商高的孩子都具有哪些特点? 提高孩子智商的方法 1、改变儿童的饮食习惯。 提高孩…

Onvif2.6.1命名空间前缀对照

Onvif2.6.1命名空间前缀对照 tds http://www.onvif.org/ver10/device/wsdl tev http://www.onvif.org/ver10/events/wsdl tls http://www.onvif.org/ver10/display/wsdl tmd http://www.onvif.org/ver10/deviceIO/wsdl timg http://www.onvif.org/ver20/imaging/wsdl trt…

使用delegate类型设计自定义事件

在C#编程中&#xff0c;除了Method和Property&#xff0c;任何Class都可以有自己的事件&#xff08;Event&#xff09;。定义和使用自定义事件的步骤如下&#xff1a; &#xff08;1&#xff09;在Class之外定义一个delegate类型&#xff0c;用于确定事件程序的接口 &#xff0…

各种学习资源 文档、手册 (Docker 、springboot 、Guava、git、logback 、Linux 、MQ、vue、Axios)

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 1. Docker 中文手册 &#xff1a;https://yeasy.gitbooks.io/docker_practice/advanced_network/bridge.html 2. RESTful java with JA…

C语言的“编译时多态”

typeof 在 kernel 中的使用 —— C 语言的“编译时多态” C 语言本身没有多态的概念&#xff0c;函数没有重载的概念。然而随着 C 语言编写的软件逐渐庞大&#xff0c;越来越多地需要引入一些其他语言中的特性&#xff0c;来帮助更高效地进行开发&#xff0c;Linux kernel 是一…

看脸色知体内各积毒 有效清洁内脏妙方

观察下五脏六腑是否中毒。 淤血、痰湿、寒气这些不能及时排出体外&#xff0c;危害健康和精气神的物质&#xff0c;中医称之为毒素&#xff0c;在镜子里你也可以看出它们。识别之后&#xff0c;你更需要有效的内脏清洁妙方! 症状一&#xff1a;面色青两侧长痘黄褐斑愁云满面…

UTC Time

整个地球分为二十四时区&#xff0c;每个时区都有自己的本地时间。在国际无线电通信场合&#xff0c;为了统一起见&#xff0c;使用一个统一的时间&#xff0c;称为通用协调时(UTC, Universal Time Coordinated)。UTC与格林尼治平均时(GMT, Greenwich Mean Time)一样&#xff0…

解决:Unknown custom element: <myData> - did you register the component correctly? For recursive compon

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 1. 引用一个组件报错&#xff1a; Unknown custom element: <myData> - did you register the component correctly?For recursi…

无处不在的container_of

无处不在的container_of linux 内核中定义了一个非常精炼的双向循环链表及它的相关操作。如下所示&#xff1a; struct list_head {struct list_head* next, * prev; };ubuntu 12.04 中这个结构定义在 /usr/src/linux-headers-3.2.0-24-generic/include/linux/types.h 中&…

程序员学习能力提升三要素

摘要&#xff1a;IT技术的发展日新月异&#xff0c;新技术层出不穷&#xff0c;具有良好的学习能力&#xff0c;能及时获取新知识、随时补充和丰富自己&#xff0c;已成为程序员职业发展的核心竞争力。本文中&#xff0c;作者结合多年的学习经验总结出了提高程序员学习能力的三…

时间,数字 ,字符串之间的转换

package com.JUtils.base;import java.sql.Timestamp; import java.text.SimpleDateFormat;/*** 转换工具类<br>* 若待转换值为null或者出现异常&#xff0c;则使用默认值**/ public class ConvertUtils {/*** 字符串转换为int*** param str * 待转换的字符串* param …

宏定义及相关用法

宏定义及相关用法 欢迎各位补充 目录 一些成熟软件中常用的宏定义&#xff1a;使用一些内置宏跟踪调试&#xff1a;宏定义防止使用时错误&#xff1a;宏与函数 带副作用的宏参数 特殊符号&#xff1a;’#’、’##’ 1、一般用法2、当宏参数是另一个宏的时候 __VA_ARGS__与##…

解决:Cannot read property ‘component‘ of undefined ( 即 vue-router 0.x 转化为 2.x)

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到教程。 vue项目原本是用0.x版本的vue-router&#xff0c;但是去报出&#xff1a;Cannot read property component of undefined 这是因为版本问…

AMD Mantle再添新作,引发下代GPU架构猜想

摘要&#xff1a;今年秋天即将发布的《希德梅尔文明&#xff1a;太空》将全面支持AMD Mantle API&#xff0c;如此强大的功能背后离不开强大的CPU、GPU支持。上周AMD爆出了下一代海盗岛R9 300系列&#xff0c;据网友猜测海盗岛家族可能用上速度更快的HBM堆栈式内存。 小伙伴们…