drools8尝试(加单元测试)

drools8的maven模板项目里没有单元测试, 相比而言drools7有个非常好的test senorios

那就自己弄一个

文件是.http后缀的,写了个简单的例子如下

powershell 复制代码
//测试交通违章
POST  http://localhost:8080/Traffic Violation
accept: application/json
Content-Type: application/json

{
  "Violation": {
    "Code": "zzfdsfz",
    "Date": "2023-08-23",
    "Type": "speed",
    "Speed Limit": 10,
    "Actual Speed": 100
  },
  "Driver": {
    "Name": "string",
    "Age": 0,
    "State": "string",
    "City": "string",
    "Points": 0
  }
}

> {%
// 这块是对结果的测试
client.test("Request executed successfully", function() {
  client.assert(response.status === 200, "Response status is not 200");
  //client.assert(response.status === 203, "Response status is  200");
  //意思是说,罚金恒等于1000  否则报错"罚金计算错误"
  client.assert(response.body.Fine.Amount === 1000, "罚金计算错误");

});
%}

感觉还不错

下一步应用到k8s里,或者是看原生的微服务是什么东西

相关推荐
酱学编程20 小时前
java中的单元测试的使用以及原理
java·单元测试·log4j
qw9492 天前
Spring 6 第6章——单元测试:Junit
spring·junit·单元测试
1234Wu2 天前
NodeJs如何做API接口单元测试? --【elpis全栈项目】
单元测试·node.js
逆风局?3 天前
JUnit单元测试
junit·单元测试
m0_748234524 天前
利用@WebMvcTest测试Spring MVC应用
spring·log4j·mvc
雨 子5 天前
Spring Boot 日志
java·spring boot·后端·log4j
m0_672449605 天前
Java日志配置
java·开发语言·单元测试
大道之简6 天前
Mockito+PowerMock+Junit单元测试
junit·单元测试
程序员杰哥6 天前
Web自动化测试平台设计与落地
python·功能测试·selenium·测试工具·职场和发展·单元测试·测试用例
测试杂货铺6 天前
单元测试与unittest框架
自动化测试·软件测试·python·测试工具·职场和发展·单元测试·测试用例