使用Kakapo.js进行动态模拟

by zzarcon

由zzarcon

使用Kakapo.js进行动态模拟 (Dynamic mocking with Kakapo.js)

3 months after the first commit, Kakapo.js reaches the first release and we are proud to announce that now it is ready to use. Let us introduce you Kakapo.

首次提交3个月后, Kakapo.js到达了第一个发行版,我们很自豪地宣布现在可以使用了。 让我们向您介绍Kakapo。

Kakapo - The next generation mocking framework in Javascript
Kakapo-Java的下一代模拟框架

Kakapo is just a set of tools that tries to make your life easier when building web apps, specially when creating client side mocks. It provides components and APIs which let you easily replicate your backend logic and responses in the client-side.

Kakapo只是一组工具,可在构建Web应用程序时使您的生活更加轻松,特别是在创建客户端模拟时 。 它提供了组件和API,使您可以轻松地在客户端复制后端逻辑和响应。

This is nothing new and I’m quite sure you are familiar with tools like jquery-mockjax, FakeXMLHttpRequest or fetch-mock, those tools are great and have been there for quite a loot of time but in my opinion they are just one part of the solution of a big problem.

这并不是什么新鲜事,我敢肯定,您熟悉诸如jquery-mockjax , FakeXMLHttpRequest或fetch-mock之类的工具,这些工具很棒,并且已经存在了很长一段时间,但在我看来,它们只是其中的一部分解决一个大问题。

Why should you care about client side mocking? To solve the Backend-Bottleneck.

您为什么要关心客户端嘲笑? 解决Backend-Bottleneck问题

后端瓶颈 (Backend Bottleneck)

Last sprint retrospective, after the third sprint in a row missing more than 50% of the planed points, we were starting to ask ourselves what was going wrong. Some back end devs were saying:

上次冲刺回顾,在连续第三次冲刺错过了超过50%的计划点之后,我们开始问自己出了什么问题。 一些后端开发人员在说:

  • Yeah, we thought it was an easy task but we had to spend 1 week refactoring the current functionality to make it working as expected…

    是的,我们认为这是一项轻松的任务,但是我们不得不花1周的时间来重构当前功能,以使其按预期工作……

  • Too much not planned stuff came out and we had to take care of those issues happening in production…

    太多计划外的东西出来了,我们不得不照顾生产中发生的那些问题……

  • Staging servers were not working at all and we had to re-deploy the service more than 5 times…

    登台服务器根本无法正常工作,我们不得不重新部署该服务超过5次…

On the other side, front end devs:

另一方面,前端开发人员:

  • I spent the whole Monday trying to figure out why the endpoint was returning 500 status code instead of getting the expected response…

    我花了整个星期一试图弄清楚为什么端点返回500状态代码而不是得到预期的响应…

  • We were building the user profile but the create endpoint was not documented, so we couldn’t make it for the release…

    我们正在构建用户个人资料,但未记录创建端点,因此我们无法在发布中使用它…

  • Yesterday I had to switch too many times within different staging environments that I didn’t had time to work on the feature…

    昨天,我不得不在不同的登台环境中切换太多次,以至于我没有时间来使用该功能……

I was very frustrated about the current situation and, specially, not being able to ship a small feature in the estimated time. It took me quite some time to realize that it was not a backend or client problem: the issue was something deeper and would require more time and effort to be fixed.

对于当前的情况,我感到非常沮丧,特别是无法在预计的时间内发布小功能。 我花了相当多的时间才意识到这不是后端或客户问题:这个问题更深层次,需要花费更多时间和精力来解决。

What about not dealing with backend issues and staging environments but instead building the feature based on a JSON response agreed with the backend team beforehand?
不处理后端问题和暂存环境,而是根据事先与后端团队同意的JSON响应来构建功能,该怎么办?

Let’s see a basic example to get an idea of how it works:

让我们看一个基本的例子,以了解其工作原理:

In the example above we are just defining a couple of endpoints and one factory, then we define some business logic inside the request handlers in order to return the fake responses. To do this we use three key elements of Kakapo:

在上面的示例中,我们仅定义了两个端点和一个工厂,然后在请求处理程序中定义了一些业务逻辑,以便返回假响应。 为此,我们使用了Kakapo的三个关键要素:

  • Router: Kakapo’s router recognizes URLs (routes) and dispatches them to the associated handlers. It also provides a request object as argument that gives you useful information about the incoming request.

    路由器 :Kakapo的路由器识别URL(路由),并将其分派到关联的处理程序。 它还提供了一个请求对象作为参数,为您提供有关传入请求的有用信息。

  • Database: This class along with factories and relationships allows you to define how your entities should be represented and their behaviors.

    数据库 :该类与工厂关系一起使您可以定义应如何表示实体及其行为。

  • Server: It connects all other components and lets you activate or deactivate them; this feature gives you the ability to switch between multiple databases and routers, we call this scenarios.

    服务器 :它连接所有其他组件,并允许您激活或停用它们; 此功能使您能够在多个数据库和路由器之间切换,我们将其称为“ 方案” 。

现实生活中的客户端嘲笑 (Client side mocking in real life)

Usually mocking APIs is done by creating a static JSON for every single request and testing against it. Creating and maintaining the JSON is a repetitive task and error-prone.

通常,通过为每个请求创建静态JSON并对其进行测试来完成模拟API。 创建和维护JSON是一项重复性任务,容易出错。

Kakapo, instead, lets you dynamically mock your responses by defining how they should look like and automatically serialize them into JSON.

相反,Kakapo允许您通过定义响应的外观来动态模拟响应,并自动将其序列化为JSON。

As an example, let’s try to make a CRUD

例如,让我们尝试制作CRUD

That’s how easy is to replicate a CRUD with Kakapo, you might also take a look at fake data and serializers to see some goodies of Kakapo.

用Kakapo复制CRUD很容易,您还可以查看伪数据和序列化程序,以了解Kakapo的一些优点。

技术挑战 (Technical challenges)

Besides all the stuff we have learned in the process of building the library, I would like to point out some of the most challenging things we had to face:

除了我们在构建库的过程中学到的所有东西之外,我还要指出一些我们必须面对的最具挑战性的事情:

拦截器 (Interceptors)

The interceptors components are the ones in charge of intercepting the user request, check if matches any of the routes and apply the mock, they are designed in such a pluggable way that the user can define his owns. Currently we are supporting the browser networking APIs, XMLHttpRequest and fetch but soon we will support Node.js ?.

拦截器的组件是负责拦截用户请求,检查是否匹配任何路由并应用模拟的组件,它们以可插入的方式设计,用户可以定义自己的。 当前,我们支持浏览器网络API, XMLHttpRequest和fetch,但不久之后我们将支持Node.js?。

Reinventing the wheel is not implicitly bad. You can learn a lot doing it.
重新发明轮子并不是很坏。 您可以学到很多东西。

I found this component complicated because you have to replicate the same functionality that the browser APIs provides, as soon as you behave a bit differently, the application might break since it depends on the native behavior. You can learn a lot while building this stuff directly with native APIs instead of using wrappers like jQuery, because you will really understand how it internally works.

我发现此组件很复杂,因为您必须复制浏览器API提供的相同功能,一旦行为有所不同,应用程序可能会中断,因为它取决于本机行为。 在直接使用本机API而不是像jQuery这样的包装器直接构建这些东西时,您可以学到很多东西,因为您将真正了解它的内部工作原理。

While implementing the interceptors we had to make sure to not break popular networking libraries like jQuery and Superagent; we created integration tests to ensure that Kakapo will continue to work as expected after introducing new changes.

在实现拦截器时,我们必须确保不要破坏流行的联网库,例如jQuery和Superagent ; 我们创建了集成测试 以确保Kakapo在进行新更改后将继续按预期工作。

测试中 (Testing)

Testing is a must when developing software, but is even more critical in open source projects that other developers will potentially use. We always had this in mind while creating Kakapo and this was the first project I ever did in a strict TDD way. I have to admit that the feeling I had at the beginning was way different than the one I have now. Sometimes I felt that writing so many tests was slowing us down, but now with high code coverage, I feel really confident when I have to refactor a critical component or add a new feature to the library.

在开发软件时,测试是必须的,但在其他开发人员可能使用的开源项目中,测试则更为关键。 在创建Kakapo时,我们始终牢记这一点,这是我有史以来以严格的TDD方式进行的第一个项目。 我必须承认,我一开始的感觉与我现在的感觉有很大不同。 有时,我觉得编写这么多的测试会拖慢我们的脚步,但是现在有了高代码覆盖率 ,当我必须重构关键组件或向库中添加新功能时,我感到非常有信心。

This is something you have to introduce in your workflow incrementally and define with the team. Since this was the biggest open source project I ever worked on, I learned how to coordinate and work with a team. Sometimes things need to be discussed twice or more just to make sure that all the members are on the same page, but at the end is going to work out.

您必须在工作流程中逐步引入并与团队一起定义。 由于这是我从事过的最大的开源项目,因此我学会了如何与团队协调和合作。 有时需要讨论两次或更多次 ,以确保所有成员都在同一页面上,但最后要进行工作。

文件的重要性 (Importance of documentation)

Developers hate writing documentation. Unfortunately, it is as important as having a good library and will be the first thing your users and contributors will see.

开发人员讨厌编写文档。 不幸的是,它与拥有一个好的库同样重要,并且将是您的用户和贡献者首先看到的。

Think about it this way: you have been building your library for some months and now is finally ready, don’t you think it is worth the effort to spend some days building a website and writing some good examples?

这样考虑:您已经建立了几个月的图书馆,现在终于可以使用了,您认为花几天时间建立一个网站并编写一些好的示例值得您付出吗?

This is a talk from React Europe 2016 in which Christopher Chedeau explains how Facebook deal with spreading open source libraries.

这是来自React Europe 2016的一个演讲, 克里斯托弗·切多( Christopher Chedeau)在演讲中解释了Facebook如何处理传播的开源库。

杰基尔 (Jekyll)

Jekyll literally saved us, it improved the way we write documentation and the velocity. Before choosing Jekyll, I used to build static websites with some css and html to then place there the docs. However, some developers might not be fluent and miss the simplicity of Markdown. That’s why we decided to go for Jekyll which lets you write your pages in Kramdown (markdown with steroids) and is integrated with Github Pages.

Jekyll从字面上拯救了我们,它改善了我们编写文档的方式和速度。 在选择Jekyll之前,我曾经用一些CSS和html构建静态网站,然后将文档放置在那里。 但是,有些开发人员可能不会流利,会错过Markdown的简单性。 这就是为什么我们决定选择Jekyll的原因,它可以让您用Kramdown编写页面(类固醇的降价),并与Github Pages集成。

Once we felt comfortable with the status of the docs and the examples, we also wanted to give a good first impression to newcomers. We created a script which fetches the md file from the github page, adds some content and outputs the readme ?

一旦我们对文档和示例的状态感到满意,我们还希望给新手一个良好的第一印象。 我们创建了一个脚本 ,该脚本从github页面获取md文件 ,添加了一些内容并输出了自述文件 ?

演示应用 (Demo Apps)

Everyone likes demos, they show what your library does and how it does it. It might sound weird, but it will also help you to learn how to use your own library, as well as finding bugs or missing features.

每个人都喜欢演示,他们演示了您的库做什么以及如何做。 听起来可能很奇怪,但是它也将帮助您学习如何使用自己的库,以及发现错误或缺少功能。

Until we built our first todo app using Kakapo we didn’t realize about the major pain points and how to solve them, that’s why we later built our second demo app, a github explorer.

直到我们使用Kakapo构建了第一个todo应用程序之前,我们才意识到主要的难点以及如何解决它们,这就是为什么我们后来构建了第二个演示应用程序(一个github Explorer)的原因 。

Having a good library without documentation is like having rocket that nobody knows how to use it.
拥有一个没有文档的好的图书馆就像拥有一个没人知道如何使用它的火箭一样。

路线图 (ROADMAP)

The project just started but we have ambitious plans for it; feel free to check the open issues or open new ones, we will really appreciate it! Here are some of the most important:

这个项目刚刚开始,但是我们有雄心勃勃的计划。 随时检查未解决的问题或发现新的问题,我们将非常感谢! 以下是一些最重要的信息:

  • Full JSON API serializer support

    全面的JSON API序列化程序支持

  • Node.js interceptors support

    Node.js拦截器支持

  • Async handlers support

    异步处理程序支持

We are also working hard to finish the Swift version of Kakapo which is almost ready for the beta phase and we think is going to be a game changer to build iOS applications: stay tuned! ?

我们也正在努力完成Kakapo的Swift版本,该版本几乎已经可以进入Beta测试阶段,我们认为它将成为构建iOS应用程序的颠覆者:敬请期待! ?

翻译自: https://www.freecodecamp.org/news/dynamic-mocking-with-kakapo-js-bdbd3d7b58e2/

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

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

相关文章

android ble 实现自动连接,Android:自动重新连接BLE设备

经过多次试验和磨难之后,这就是我最好让Android自动连接的唯一用户操作是首先选择设备(如果使用设置菜单然后首先配对).您必须将配对事件捕获到BroadcastReceiver中并执行BluetoothDevice.connectGatt()将autoconnect设置为true.然后当设备断开连接时,调用gatt.connect().更新&…

莱斯 (less)

less中的变量 1、声明变量:变量名:变量值 使用变量名:变量名 less中的变量类型 ①数字类1 10px ②字符串:无引号字符串red和有引号字符串"haha" ③颜色类red#000000 rgb() …

hackintosh黑苹果_如何构建用于编码的Hackintosh

hackintosh黑苹果by Simon Waters西蒙沃特斯(Simon Waters) 如何构建用于编码的Hackintosh (How to build a Hackintosh for coding) Let’s talk about Hackintosh-ing — the installation of Mac OS X on PC hardware.我们来谈谈Hackintosh-ing-在PC硬件上安装Mac OSX。 I…

hide show vue 动画_(Vue动效)7.Vue中动画封装

关键词&#xff1a;动画封装——进行可复用一、如何封装&#xff1f;1、使用&#xff1a;局部组件传递数据局部组件中使用JS动画2、原理&#xff1a;将动画效果完全第封装在一个名为<fade>的组件中&#xff0c;今后如要复用&#xff0c;只需要复制有其组件名的部分&#…

android项目编译命令行,命令行编译Android项目

1. 生成R文件> aapt package -f -m -J ./gen -S res -M AndroidManifest.xml -I D:\android.jar-f 如果编译生成的文件已经存在&#xff0c;强制覆盖。-m 使生成的包的目录存放在-J参数指定的目录-J 指定生成的R.java 的输出目录路径-S 指定res文件夹的路径-I 指定某个版本平…

jQuery datepicker和jQuery validator 共用时bug

当我们给一个元素绑定一个datepick后又要对它用validator进行验证时会发现验证并没有成功 因为当点击该元素时候input弹出datepick的UI就已经失去了焦点它验证的仍然是前一个值&#xff0c; 不过还好 datepick提供了onSelect 事件我们可以在这个事件触发的时候重新把焦点在赋给…

《Python地理数据处理》——导读

前言本书可以帮助你学习使用地理空间数据的基础知识&#xff0c;主要是使用GDAL / OGR。当然&#xff0c;还有其他选择&#xff0c;但其中一些都是建立在GDAL的基础之上&#xff0c;所以如果你理解了本书中的内容&#xff0c;就可以很轻松地学习其他知识。这不是一本关于地理信…

记一次Java AES 加解密 对应C# AES加解密 的一波三折

最近在跟三方对接 对方采用AES加解密 作为一个资深neter Ctrl CV 是我最大的优点 所以我义正言辞的问他们要了demo java demo代码&#xff1a; public class EncryptDecryptTool {private static final String defaultCharset "UTF-8";private static final String …

zemax评价函数编辑器_ZEMAX与光学设计案例:激光扩束系统详细设计与公差分析(二)...

目前超过两千人的光学与光学设计方面的微信公众号&#xff0c;欢迎您的到来&#xff01;激光扩束系统公差分析ZEMAX与光学设计案例&#xff1a;激光扩束系统详细设计与公差分析(二)作者&#xff1a;墨子川上10倍扩束系统在上篇已经设计好了&#xff0c;接下来就是进行系统的公差…

决策者根据什么曲线做出决策_如何做出产品设计决策

决策者根据什么曲线做出决策by Tanner Christensen由Tanner Christensen 如何做出产品设计决策 (How Product Design Decisions are Made) Recently in a Facebook group dedicated to designers, known as Designers Guild, a young design student named Marina Candela ask…

移动前端框架重构几个关键问题

1. 是否该废弃iscroll&#xff1f; 我得出的结论是&#xff0c;是该废弃了。那当时为什么要用iscroll&#xff1f; 原因有三个&#xff1a; 1. 因为别人也用了。 2. 为了iPhone上页面滑动更顺畅。 3. 为了用上拉、下拉刷新。 关于这三个原因有几点观点&#xff1a; 1. 人最容易…

android 内部共享存储,Android共享内部存储

我现在面对txt文件的类似情况,并做到了这一点.File downloadedFile new File( context.getFilesDir(),"simple.txt" );downloadedFile.setReadable( true,false );downloadedFile.setWritable( true,false ); //set read/write for othersUri downloadFileUri Uri.f…

UiPath: Selectors repair 选择器的修复,即被选择的按钮发生改变如何选择第二按钮...

实现批量注册用户功能时&#xff0c;出现第一个用户注册完时&#xff0c;弹出确认按钮&#xff0c;点击即可&#xff0c;但是第二个用户注册完成时&#xff0c;弹出的按钮与第一个有差异&#xff0c;图形用户界面元素及其父元素的属性都发生改变。所以就点不了按钮&#xff0c;…

《C专家编程》一1.6 它很棒,但它符合标准吗

本节书摘来自异步社区《C专家编程》一书中的第1章&#xff0c;第1.6节&#xff0c;作者 【美】Perter Van Der Linde&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看 1.6 它很棒&#xff0c;但它符合标准吗 不要添乱——立即解散ISO工作小组。 ——匿名人士 …

abap al设置单元格可编辑 oo_excel表格操作: 图形和图表编辑技巧汇总(二)

1. 快速选取图表元素图表创建好以后&#xff0c;我们还需要对某些图表元素进行编辑和格式化。图表区包括整个图表和它的全部元素&#xff0c;当你选取图表区后&#xff0c;你就可以看到8个黑色小方块。要想调整单个的图表对象&#xff0c;首先必须选取该对象&#xff0c;然后更…

trie树查找前缀串_Trie数据结构(前缀树)

trie树查找前缀串by Julia GeistJulia盖斯特(Julia Geist) A Trie, (also known as a prefix tree) is a special type of tree used to store associative data structuresTrie (也称为前缀树)是一种特殊类型的树&#xff0c;用于存储关联数据结构 A trie (pronounced try) g…

我的北航故事

我的北航故事 致 沙航的我 既然是故事&#xff0c;那就一定少不了我们耳熟能详的时间&#xff0c;地点&#xff0c;人物&#xff0c;事件&#xff0c;发展&#xff0c;高潮&#xff0c;结局。经过反复的琢磨&#xff0c;我觉得还是写成日记形式比较适合&#xff0c;一是为了掩盖…

oppo r11 android版本,OPPO R11手机一共有几个版本?各版本都有哪些区别?

OPPO正式发布了新一代R11和R11 Plus两款旗舰手机&#xff0c;那么OPPO R11有几个版本&#xff1f;OPPO R11各个版本有什么区别&#xff1f;下面带来OPPO R11各版本区别对比详细评测&#xff0c;一起来了解下吧!外观方面&#xff0c;采用微弧面设计&#xff0c;全新打磨轻薄“小…

CDB和PDB的创建、连接、启动、关闭

CDB和PDB的创建、连接、启动、关闭 一、CDB和PDB基本管理 基本概念&#xff1a; Multitenant Environment&#xff1a;多租户环境 CDB&#xff08;Container Database&#xff09;&#xff1a;数据库容器 PD&#xff08;Pluggable Database&#xff09;&#xff1a;可插拔数据库…

《Java和Android开发学习指南(第2版)》——第2章,第2.10节本章小结

本节书摘来自异步社区《Java和Android开发学习指南&#xff08;第2版&#xff09;》一书中的第2章&#xff0c;第2.10节本章小结&#xff0c;作者 【加】Budi Kurniawan&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看 2.10 本章小结本章介绍了Java语言的基础…