3
3
4
4
## 同步和异步
5
5
6
- ``` tsx
6
+ ``` js
7
7
8
8
describe (" test suite" , function () {
9
9
it .only (" test if works correctly" , async function (t ) {
@@ -20,9 +20,9 @@ test('callback passing test', (t, done) => {
20
20
21
21
## 常用技巧
22
22
23
- Exclusive && Inclusive其实很好理解,分别对应only和skip函数。这是只有写的test case比较多的时候才会用的简单技巧。(下面代码时正常写法 ,但在Node.js v20也是直接运行)
23
+ Exclusive && Inclusive其实很好理解,分别对应only和skip函数。这是只有写的test case比较多的时候才会用的简单技巧。(下面代码是正常写法 ,但在Node.js v20也是直接运行)
24
24
25
- ` ` ` tsx
25
+ ` ` ` js
26
26
import { it , describe } from " node:test" ;
27
27
import assert from " node:assert" ;
28
28
@@ -55,7 +55,7 @@ describe("test suite", function () {
55
55
56
56
skip
57
57
58
- ` ` ` tsx
58
+ ` ` ` js
59
59
// The skip option is used, but no message is provided.
60
60
test (' skip option' , { skip: true }, (t ) => {
61
61
// This code is never executed.
@@ -79,7 +79,7 @@ test('skip() method with message', (t) => {
79
79
80
80
only
81
81
82
- ` ` ` tsx
82
+ ` ` ` js
83
83
// Assume Node.js is run with the --test-only command-line option.
84
84
// The 'only' option is set, so this test is run.
85
85
test (' this test is run' , { only: true }, async (t ) => {
@@ -111,13 +111,13 @@ test('this test is not run', () => {
111
111
112
112

113
113
114
- 有意思的是它竟然加了** ` todo ` **这个测试,是一个TODO的简写。
114
+ 有意思的是它竟然加了 **` todo` ** 这个测试,是一个TODO的简写。
115
115
116
116
## 生命周期
117
117
118
118
细心的读者应该发现了我们每次在单元测试开始和结束前都需要做一些准备工作,要么是stub函数,要么是准备mock数据。测试框架提供了四个生命周期钩子,我们可以把一些可以复用的准备工作放到钩子中去:
119
119
120
- ` ` ` tsx
120
+ ` ` ` js
121
121
describe (' test' , function () {
122
122
// 在本测试块的所有测试用例之前执行且仅执行一次
123
123
before (function () {
@@ -148,11 +148,11 @@ describe('test', function() {
148
148
149
149
## TDD vs BDD
150
150
151
- BDD(Behaviour Driven Development)是TDD的一种, 倾向于断言被测对象的行为特征而非输入输出。 [Chai](http://chaijs.com/)的BDD风格断言库包括两部分: ` expect ` 和 ` should ` 。=
151
+ BDD(Behaviour Driven Development)是TDD的一种, 倾向于断言被测对象的行为特征而非输入输出。 [Chai](http://chaijs.com/)的BDD风格断言库包括两部分:` expect` 和` should` 。
152
152
153
153
前面所讲的describe, it, before, after等都属于BDD的范畴,对于TDD,Mocha、Ava等测试库都用suite, test, setup, teardown。
154
154
155
- ` ` ` tsx
155
+ ` ` ` bash
156
156
suite ' Array' , ! - >
157
157
setup ! - >
158
158
console .log ' setup'
@@ -190,17 +190,17 @@ TDD更多的是方法论,指导代码编写方式用的。这块可以讲的
190
190
191
191
在软件测试中,stub、mock 和 spy 是三种用于模拟和测试依赖关系的技术。
192
192
193
- - Stub **(插桩)**是一种用于在测试过程中替换外部依赖的技术。它的目的是为了在测试中提供所需的输入,并阻止实际的依赖代码被执行。这样,就可以对代码进行单元测试,而无需考虑外部依赖的影响。
194
- - Mock **(伪造)**是一种用于在测试过程中模拟依赖关系的技术。它的目的是为了测试代码的行为,而不是实际的结果。通常,mock 会跟踪依赖代码的调用次数和参数,并根据预期的行为给出响应。
195
- - Spy(**间谍**) 是一种用于在测试过程中监视依赖关系的技术。它的目的是为了测试依赖代码的实际行为,而不仅仅是它的返回值。通常,spy 会跟踪依赖代码的调用次数和参数,并记录下实际执行的行为。
193
+ - Stub **(插桩)** 是一种用于在测试过程中替换外部依赖的技术。它的目的是为了在测试中提供所需的输入,并阻止实际的依赖代码被执行。这样,就可以对代码进行单元测试,而无需考虑外部依赖的影响。
194
+ - Mock **(伪造)** 是一种用于在测试过程中模拟依赖关系的技术。它的目的是为了测试代码的行为,而不是实际的结果。通常,mock 会跟踪依赖代码的调用次数和参数,并根据预期的行为给出响应。
195
+ - Spy **(间谍)** 是一种用于在测试过程中监视依赖关系的技术。它的目的是为了测试依赖代码的实际行为,而不仅仅是它的返回值。通常,spy 会跟踪依赖代码的调用次数和参数,并记录下实际执行的行为。
196
196
197
197
总的来说,stub 和 mock 的目的都是为了在测试中替换依赖关系,但是 mock 更加强调对代码行为的测试,而 stub 更加强调提供测试所需的输入。相比之下,spy 的目的是为了监视依赖关系的。
198
198
199
199
在Node.js v20中,stub和spy都可以通过mock来实现。
200
200
201
201
1、mock示例
202
202
203
- ` ` ` tsx
203
+ ` ` ` js
204
204
' use strict' ;
205
205
const assert = require (' node:assert' );
206
206
const { mock , test } = require (' node:test' );
@@ -226,7 +226,7 @@ test('spies on a function', () => {
226
226
227
227
2、spy示例
228
228
229
- ` ` ` tsx
229
+ ` ` ` js
230
230
import {
231
231
describe ,
232
232
it ,
@@ -255,7 +255,7 @@ describe('Spies Test Suite', () => {
255
255
256
256
3、stub示例
257
257
258
- ` ` ` tsx
258
+ ` ` ` js
259
259
import {
260
260
describe ,
261
261
it ,
0 commit comments