亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nodejs漸入佳境[20]-postman測試express+mogoDB項目

發布時間:2020-07-13 18:27:06 來源:網絡 閱讀:468 作者:jonson_jackson 欄目:開發技術

安裝postman

網址:https://www.getpostman.com

網址訪問,保存數據

postman.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var mongoose = require('mongoose');
var express = require('express');
var bodyParser = require('body-parser');

//app
var app = express();

//express middleware  Jonson對象與字符串轉換。
app.use(bodyParser.json());

//
mongoose.Promise = global.Promise;
//連接mogodb
mongoose.connect('mongodb://localhost:27017/TodoApp');

//模版
var Todo = mongoose.model('Todo',{
   text:{
     type:String,  //類型
     required:true, //必須要有
     minlength:1, //最小長度
     trim:true   //去除空格
   },
   completed:{
     type:Boolean,
     default:false  //默認值
   },
   completedAt:{
     type:Number,
     default:null
   }
});

//express route
app.post('/todos',(req,res)=>{
//  console.log(req.body);

   //建立對象document
   var todo = new Todo({
       text:req.body.text
   });
   //保存
     todo.save().then((doc)=>{
     res.send(doc);
   },(e)=>{
       res.status(400).send(e);
   });

})
//監聽
app.listen(3000,()=>{
   console.log('Start on port 3000');
});

module.exports = {
  app,
  Todo
}

測試

安裝expect nodemon supertest mocha
//test/postman.test.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

const {app,Todo} = require('../postman')

const expect = require('expect')
const request = require('supertest')



beforeEach((done) => {
 Todo.remove({}).then(() => done());
});

describe('POST /todos', () => {
 it('should create a new todo', (done) => {
   var text = 'Test todo text';

   request(app)
     .post('/todos')
     .send({text})
     .expect(200)
     .expect((res) => {
       expect(res.body.text).toBe(text);
     })
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find().then((todos) => {
         expect(todos.length).toBe(1);
         expect(todos[0].text).toBe(text);
         done();
       }).catch((e) => done(e));
     });
 });

 it('should not create todo with invalid body data', (done) => {
   request(app)
     .post('/todos')
     .send({})
     .expect(400)
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find().then((todos) => {
         expect(todos.length).toBe(0);
         done();
       }).catch((e) => done(e));
     });
 });
});

修改package.json

1
2
3
4
"scripts": {
 "test": "mocha",
 "test-watch":"nodemon --exec 'npm test'",
}

運行

1
>npm run test-watch

獲取所有document

1
2
3
4
5
6
7
app.get('/todos', (req, res) => {
 Todo.find().then((todos) => {
   res.send({todos});
 }, (e) => {
   res.status(400).send(e);
 })
});

測試2

//test/postman.test.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

const {app,Todo} = require('../postman')

const expect = require('expect')
const request = require('supertest')



const todos = [{
 text: 'First test todo'
}, {
 text: 'Second test todo'
}];

beforeEach((done) => {
 Todo.remove({}).then(() => {// 刪除后插入對象
   return Todo.insertMany(todos);
 }).then(() => done());
});

describe('POST /todos', () => {
 it('should create a new todo', (done) => {
   var text = 'Test todo text';

   request(app)
     .post('/todos')
     .send({text})
     .expect(200)
     .expect((res) => {
       expect(res.body.text).toBe(text);
     })
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find({text}).then((todos) => {
         expect(todos.length).toBe(1);
         expect(todos[0].text).toBe(text);
         done();
       }).catch((e) => done(e));
     });
 });

 it('should not create todo with invalid body data', (done) => {
   request(app)
     .post('/todos')
     .send({})
     .expect(400)
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find().then((todos) => {
         expect(todos.length).toBe(2);
         done();
       }).catch((e) => done(e));
     });
 });
});

describe('GET /todos', () => {
 it('should get all todos', (done) => {
   request(app)
     .get('/todos')
     .expect(200)
     .expect((res) => {
       expect(res.body.todos.length).toBe(2);
     })
     .end(done);
 });
});

查詢id

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//查詢id
app.get('/todos/:id', (req, res) => {
 var id = req.params.id;

 if (!ObjectID.isValid(id)) {
   return res.status(404).send();
 }

 Todo.findById(id).then((todo) => {
   if (!todo) {
     return res.status(404).send();
   }

   res.send({todo});
 }).catch((e) => {
   res.status(400).send();
 });
});

測試3:

//test/postman.test.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

const {app,Todo} = require('../postman')
const {ObjectID} = require('mongodb');
const expect = require('expect')
const request = require('supertest')


const todos = [{
 _id: new ObjectID(),
 text: 'First test todo'
}, {
 _id: new ObjectID(),
 text: 'Second test todo'
}];

beforeEach((done) => {
 Todo.remove({}).then(() => {
   return Todo.insertMany(todos);
 }).then(() => done());
});

describe('POST /todos', () => {
 it('should create a new todo', (done) => {
   var text = 'Test todo text';

   request(app)
     .post('/todos')
     .send({text})
     .expect(200)
     .expect((res) => {
       expect(res.body.text).toBe(text);
     })
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find({text}).then((todos) => {
         expect(todos.length).toBe(1);
         expect(todos[0].text).toBe(text);
         done();
       }).catch((e) => done(e));
     });
 });

 it('should not create todo with invalid body data', (done) => {
   request(app)
     .post('/todos')
     .send({})
     .expect(400)
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find().then((todos) => {
         expect(todos.length).toBe(2);
         done();
       }).catch((e) => done(e));
     });
 });
});

describe('GET /todos', () => {
 it('should get all todos', (done) => {
   request(app)
     .get('/todos')
     .expect(200)
     .expect((res) => {
       expect(res.body.todos.length).toBe(2);
     })
     .end(done);
 });
});

describe('GET /todos/:id', () => {
 it('should return todo doc', (done) => {
   request(app)
     .get(`/todos/${todos[0]._id.toHexString()}`)
     .expect(200)
     .expect((res) => {
       expect(res.body.todo.text).toBe(todos[0].text);
     })
     .end(done);
 });

 it('should return 404 if todo not found', (done) => {
   var hexId = new ObjectID().toHexString();

   request(app)
     .get(`/todos/${hexId}`)
     .expect(404)
     .end(done);
 });

 it('should return 404 for non-object ids', (done) => {
   request(app)
     .get('/todos/123abc')
     .expect(404)
     .end(done);
 });
});

刪除id

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//刪除
app.delete('/todos/:id', (req, res) => {
 var id = req.params.id;

 if (!ObjectID.isValid(id)) {
   return res.status(404).send();
 }

 Todo.findByIdAndRemove(id).then((todo) => {
   if (!todo) {
     return res.status(404).send();
   }

   res.send({todo});
 }).catch((e) => {
   res.status(400).send();
 });
});

測試4

//test/postman.test.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
const {app,Todo} = require('../postman')
const {ObjectID} = require('mongodb');
const expect = require('expect')
const request = require('supertest')


const todos = [{
 _id: new ObjectID(),
 text: 'First test todo'
}, {
 _id: new ObjectID(),
 text: 'Second test todo'
}];

beforeEach((done) => {
 Todo.remove({}).then(() => {
   return Todo.insertMany(todos);
 }).then(() => done());
});

describe('POST /todos', () => {
 it('should create a new todo', (done) => {
   var text = 'Test todo text';

   request(app)
     .post('/todos')
     .send({text})
     .expect(200)
     .expect((res) => {
       expect(res.body.text).toBe(text);
     })
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find({text}).then((todos) => {
         expect(todos.length).toBe(1);
         expect(todos[0].text).toBe(text);
         done();
       }).catch((e) => done(e));
     });
 });

 it('should not create todo with invalid body data', (done) => {
   request(app)
     .post('/todos')
     .send({})
     .expect(400)
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.find().then((todos) => {
         expect(todos.length).toBe(2);
         done();
       }).catch((e) => done(e));
     });
 });
});

describe('GET /todos', () => {
 it('should get all todos', (done) => {
   request(app)
     .get('/todos')
     .expect(200)
     .expect((res) => {
       expect(res.body.todos.length).toBe(2);
     })
     .end(done);
 });
});

describe('GET /todos/:id', () => {
 it('should return todo doc', (done) => {
   request(app)
     .get(`/todos/${todos[0]._id.toHexString()}`)
     .expect(200)
     .expect((res) => {
       expect(res.body.todo.text).toBe(todos[0].text);
     })
     .end(done);
 });

 it('should return 404 if todo not found', (done) => {
   var hexId = new ObjectID().toHexString();

   request(app)
     .get(`/todos/${hexId}`)
     .expect(404)
     .end(done);
 });

 it('should return 404 for non-object ids', (done) => {
   request(app)
     .get('/todos/123abc')
     .expect(404)
     .end(done);
 });
});

describe('DELETE /todos/:id', () => {
 it('should remove a todo', (done) => {
   var hexId = todos[1]._id.toHexString();

   request(app)
     .delete(`/todos/${hexId}`)
     .expect(200)
     .expect((res) => {
       expect(res.body.todo._id).toBe(hexId);
     })
     .end((err, res) => {
       if (err) {
         return done(err);
       }

       Todo.findById(hexId).then((todo) => {
         expect(todo).toBeFalsy();
         done();
       }).catch((e) => done(e));
     });
 });

 it('should return 404 if todo not found', (done) => {
   var hexId = new ObjectID().toHexString();

   request(app)
     .delete(`/todos/${hexId}`)
     .expect(404)
     .end(done);
 });

 it('should return 404 if object id is invalid', (done) => {
   request(app)
     .delete('/todos/123abc')
     .expect(404)
     .end(done);
 });
});

更新

1
> npm install --save lodash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//更新
app.patch('/todos/:id', (req, res) => {
 var id = req.params.id;
 var body = _.pick(req.body, ['text', 'completed']);

 if (!ObjectID.isValid(id)) {
   return res.status(404).send();
 }

 if (_.isBoolean(body.completed) && body.completed) {
   body.completedAt = new Date().getTime();
 } else {
   body.completed = false;
   body.completedAt = null;
 }

 Todo.findByIdAndUpdate(id, {$set: body}, {new: true}).then((todo) => {
   if (!todo) {
     return res.status(404).send();
   }

   res.send({todo});
 }).catch((e) => {
   res.status(400).send();
 })
});

測試5

//test/postman.test.js:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
describe('PATCH /todos/:id', () => {
 it('should update the todo', (done) => {
   var hexId = todos[0]._id.toHexString();
   var text = 'This should be the new text';

   request(app)
     .patch(`/todos/${hexId}`)
     .send({
       completed: true,
       text
     })
     .expect(200)
     .expect((res) => {
       expect(res.body.todo.text).toBe(text);
       expect(res.body.todo.completed).toBe(true);
       expect(typeof res.body.todo.completedAt).toBe('number');
     })
     .end(done);
 });

 it('should clear completedAt when todo is not completed', (done) => {
   var hexId = todos[1]._id.toHexString();
   var text = 'This should be the new text!!';

   request(app)
     .patch(`/todos/${hexId}`)
     .send({
       completed: false,
       text
     })
     .expect(200)
     .expect((res) => {
       expect(res.body.todo.text).toBe(text);
       expect(res.body.todo.completed).toBe(false);
       expect(res.body.todo.completedAt).toBeFalsy();
     })
     .end(done);
 });
});
  • 本文鏈接: https://dreamerjonson.com/2018/11/18/node-20-postman/

  • 版權聲明: 本博客所有文章除特別聲明外,均采用 CC BY 4.0 CN協議 許可協議。轉載請注明出處!

nodejs漸入佳境[20]-postman測試express+mogoDB項目

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石河子市| 巴中市| 六盘水市| 秦皇岛市| 集安市| 灵寿县| 大化| 隆回县| 肃南| 舟曲县| 凤山县| 霍邱县| 葵青区| 桦南县| 雅江县| 台北市| 台安县| 南昌市| 耒阳市| 福贡县| 平山县| 清徐县| 汪清县| 高碑店市| 调兵山市| 香港| 芜湖县| 潞西市| 大悟县| 保靖县| 东阳市| 金华市| 凤山市| 白玉县| 土默特左旗| 额济纳旗| 台中县| 巴南区| 大石桥市| 江北区| 抚远县|