Skip to content

Commit d70a501

Browse files
committed
fix: 修复第5章节内容错误
1 parent 0e4f1a6 commit d70a501

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

src/5/5.1.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Node.js遵循与JavaScript本身相同的"最小核心"原则。因此,像代
4040

4141
在Node.js v18开始内置了测试框架,在Node.js v20版本中,已经被标记为Stable能力,大家可以放心使用。
4242

43-
```bash
43+
```js
4444
import {test, describe} from 'node:test';
4545
import assert from 'node:assert';
4646

@@ -73,7 +73,7 @@ $ npm test
7373
7474
创建index.test-d.ts文件
7575
76-
```bash
76+
```ts
7777
import { expectType } from "tsd";
7878

7979
import { IPerson } from ".";
@@ -105,7 +105,7 @@ $ npx tsd
105105
106106
这样的描述被称作 **规范(specification, spec)**,包含用例的描述以及针对它们的测试,如下所示:
107107
108-
```bash
108+
```js
109109
import { it, describe } from "node:test";
110110
import assert from "node:assert";
111111

@@ -133,11 +133,11 @@ describe("test suite", function () {
133133
134134
正如你所看到的,一个规范包含三个主要的模块:
135135
136-
1、**`describe("title", function() { ... })`**表示我们正在描述的功能是什么,相当于一个group。用于组织“工人(workers)” —— `it` 代码块。
136+
1、**`describe("title", function() { ... })`** 表示我们正在描述的功能是什么,相当于一个group。用于组织“工人(workers)” —— `it` 代码块。
137137
138-
2、**`it("use case description", function() { ... })**it` 里面的描述部分,我们以一种**易于理解** 的方式描述特定的用例,第二个参数是用于对其进行测试的函数。表示这是"一系列测试"中的一项,相当于item,如何测试?测试逻辑?都是在it的回调函数中实现的
138+
2、**`it("use case description", function() { ... })`** `it` 里面的描述部分,我们以一种**易于理解** 的方式描述特定的用例,第二个参数是用于对其进行测试的函数。表示这是"一系列测试"中的一项,相当于item,如何测试?测试逻辑?都是在it的回调函数中实现的
139139
140-
3、**`assert.equal(value1, value2)**it` 块中的代码,如果实现是正确的,它应该在执行的时候不产生任何错误。
140+
3、**`assert.equal(value1, value2)`** `it` 块中的代码,如果实现是正确的,它应该在执行的时候不产生任何错误。
141141
`assert.*` 函数用于检查 测试 函数是否按照预期工作。在这里我们使用了其中之一 —— `assert.equal`,它会对参数进行比较,如果它们不相等则会抛出一个错误。这里它检查了 `pow(2, 3)` 的值是否等于 `8`。还有其他类型的比较和检查,我们将在后面介绍到。
142142
143143
规范可以被执行,它将运行在 `it` 块中指定的测试。我们稍后会看到。

src/5/5.2.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## 同步和异步
55

6-
```tsx
6+
```js
77

88
describe("test suite", function () {
99
it.only("test if works correctly", async function (t) {
@@ -20,9 +20,9 @@ test('callback passing test', (t, done) => {
2020
2121
## 常用技巧
2222
23-
Exclusive && Inclusive其实很好理解,分别对应only和skip函数。这是只有写的test case比较多的时候才会用的简单技巧。(下面代码时正常写法,但在Node.js v20也是直接运行)
23+
Exclusive && Inclusive其实很好理解,分别对应only和skip函数。这是只有写的test case比较多的时候才会用的简单技巧。(下面代码是正常写法,但在Node.js v20也是直接运行)
2424
25-
```tsx
25+
```js
2626
import { it, describe } from "node:test";
2727
import assert from "node:assert";
2828

@@ -55,7 +55,7 @@ describe("test suite", function () {
5555
5656
skip
5757
58-
```tsx
58+
```js
5959
// The skip option is used, but no message is provided.
6060
test('skip option', { skip: true }, (t) => {
6161
// This code is never executed.
@@ -79,7 +79,7 @@ test('skip() method with message', (t) => {
7979
8080
only
8181
82-
```tsx
82+
```js
8383
// Assume Node.js is run with the --test-only command-line option.
8484
// The 'only' option is set, so this test is run.
8585
test('this test is run', { only: true }, async (t) => {
@@ -111,13 +111,13 @@ test('this test is not run', () => {
111111
112112
![Untitled](img/Untitled%201.png)
113113
114-
有意思的是它竟然加了**`todo`**这个测试,是一个TODO的简写。
114+
有意思的是它竟然加了 **`todo`** 这个测试,是一个TODO的简写。
115115
116116
## 生命周期
117117
118118
细心的读者应该发现了我们每次在单元测试开始和结束前都需要做一些准备工作,要么是stub函数,要么是准备mock数据。测试框架提供了四个生命周期钩子,我们可以把一些可以复用的准备工作放到钩子中去:
119119
120-
```tsx
120+
```js
121121
describe('test', function() {
122122
// 在本测试块的所有测试用例之前执行且仅执行一次
123123
before(function() {
@@ -148,11 +148,11 @@ describe('test', function() {
148148
149149
## TDD vs BDD
150150
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`
152152
153153
前面所讲的describe, it, before, after等都属于BDD的范畴,对于TDD,Mocha、Ava等测试库都用suite, test, setup, teardown。
154154
155-
```tsx
155+
```bash
156156
suite 'Array', !->
157157
setup !->
158158
console.log 'setup'
@@ -190,17 +190,17 @@ TDD更多的是方法论,指导代码编写方式用的。这块可以讲的
190190
191191
在软件测试中,stub、mock 和 spy 是三种用于模拟和测试依赖关系的技术。
192192
193-
- Stub **(插桩)**是一种用于在测试过程中替换外部依赖的技术。它的目的是为了在测试中提供所需的输入,并阻止实际的依赖代码被执行。这样,就可以对代码进行单元测试,而无需考虑外部依赖的影响。
194-
- Mock **(伪造)**是一种用于在测试过程中模拟依赖关系的技术。它的目的是为了测试代码的行为,而不是实际的结果。通常,mock 会跟踪依赖代码的调用次数和参数,并根据预期的行为给出响应。
195-
- Spy(**间谍**) 是一种用于在测试过程中监视依赖关系的技术。它的目的是为了测试依赖代码的实际行为,而不仅仅是它的返回值。通常,spy 会跟踪依赖代码的调用次数和参数,并记录下实际执行的行为。
193+
- Stub **(插桩)** 是一种用于在测试过程中替换外部依赖的技术。它的目的是为了在测试中提供所需的输入,并阻止实际的依赖代码被执行。这样,就可以对代码进行单元测试,而无需考虑外部依赖的影响。
194+
- Mock **(伪造)** 是一种用于在测试过程中模拟依赖关系的技术。它的目的是为了测试代码的行为,而不是实际的结果。通常,mock 会跟踪依赖代码的调用次数和参数,并根据预期的行为给出响应。
195+
- Spy **(间谍)** 是一种用于在测试过程中监视依赖关系的技术。它的目的是为了测试依赖代码的实际行为,而不仅仅是它的返回值。通常,spy 会跟踪依赖代码的调用次数和参数,并记录下实际执行的行为。
196196
197197
总的来说,stub 和 mock 的目的都是为了在测试中替换依赖关系,但是 mock 更加强调对代码行为的测试,而 stub 更加强调提供测试所需的输入。相比之下,spy 的目的是为了监视依赖关系的。
198198
199199
在Node.js v20中,stub和spy都可以通过mock来实现。
200200
201201
1、mock示例
202202
203-
```tsx
203+
```js
204204
'use strict';
205205
const assert = require('node:assert');
206206
const { mock, test } = require('node:test');
@@ -226,7 +226,7 @@ test('spies on a function', () => {
226226
227227
2、spy示例
228228
229-
```tsx
229+
```js
230230
import {
231231
describe,
232232
it,
@@ -255,7 +255,7 @@ describe('Spies Test Suite', () => {
255255
256256
3、stub示例
257257
258-
```tsx
258+
```js
259259
import {
260260
describe,
261261
it,

src/5/5.3.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
增加配置.c8rc.json,注意配置中的reporter里的lcov是必须配置的。
7676

77-
```bash
77+
```json
7878
{
7979
"reporter": [
8080
"lcov",
@@ -96,7 +96,7 @@ jobs:
9696

9797
还是以之前的代码举例
9898

99-
```bash
99+
```ts
100100
import { IPerson } from "..";
101101

102102
export class HelloWorld implements IPerson {
@@ -120,7 +120,7 @@ export class HelloWorld implements IPerson {
120120

121121
如果只是测试sayHi,代码如下。
122122

123-
```bash
123+
```js
124124
import { test, describe } from "node:test";
125125
import assert from "node:assert";
126126

@@ -178,7 +178,7 @@ All files | 89.47 | 83.33 | 100 | 89.47 |
178178
179179
修改测试代码,增加下面的代码。
180180
181-
```bash
181+
```js
182182
test("test if works incorrectly", async function () {
183183
const cli: IPerson = new HelloWorld();
184184
assert.rejects(async () => await cli.sayHi(), new Error("fail"));
@@ -199,7 +199,7 @@ test("test if works incorrectly", async function () {
199199
200200
![Untitled](img/Untitled%2011.png)
201201
202-
```tsx
202+
```md
203203
![build status](https://github.com/npmstudy/your-first-nodejs-helloworld-with-ts/actions/workflows/main.yml/badge.svg)
204204
```
205205

src/5/5.4.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# 小结
33

4-
本章节主要讲解测试技巧,ts测试除了比js测试多了类型测试外,其他都是一样的。这里主要Node.js内置的test runner,在不增加模块的前提下就可以搞定,相对来说更简单,对未来Node.js v20这一测试潮流能掌握也是好的。
4+
本章节主要讲解测试技巧,ts测试除了比js测试多了类型测试外,其他都是一样的。这里主要使用Node.js内置的test runner,在不增加模块的前提下就可以搞定,相对来说更简单,对未来Node.js v20这一测试潮流能掌握也是好的。
55

66
至于高级测试技巧和CI/CD,能掌握多少掌握多少,毕竟测试是高阶技巧,而spy、mock这些又是高阶中的高级技巧,不必强求必须掌握。
77

0 commit comments

Comments
 (0)