Skip to content

Commit 7f5f260

Browse files
teddysupercutsaustince
authored andcommittedAug 20, 2019
docs: add extended request method explanations (#256)
1 parent 7f9a8a5 commit 7f5f260

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed
 

‎README.md

+26-3
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,37 @@ chai.request('http://localhost:8080')
9090

9191
#### Setting up requests
9292

93-
Once a request is created with a given VERB, it can have headers, form data,
94-
json, or even file attachments added to it, all with a simple API:
93+
Once a request is created with a given VERB (get, post, etc), you chain on these additional methods to create your request:
9594

95+
| Method | Purpose |
96+
|---|---|
97+
| `.set(key, value)` | Set request headers |
98+
| `.send(data)` | Set request data (default type is JSON) |
99+
| `.type(dataType)` | Change the type of the data sent from the `.send()` method (xml, form, etc) |
100+
| `.attach(field, file, attachment)` | Attach a file |
101+
| `.auth(username, password)` | Add auth headers for Basic Authentication |
102+
| `.query(parmasObject)` | Chain on some GET parameters |
103+
104+
Examples:
105+
106+
`.set()`
107+
```js
108+
// Set a request header
109+
chai.request(app)
110+
.put('/user/me')
111+
.set('Content-Type', 'application/json')
112+
.send({ password: '123', confirmPassword: '123' })
113+
```
114+
115+
`.send()`
96116
```js
97117
// Send some JSON
98118
chai.request(app)
99119
.put('/user/me')
100-
.set('X-API-Key', 'foobar')
101120
.send({ password: '123', confirmPassword: '123' })
102121
```
103122

123+
`.type()`
104124
```js
105125
// Send some Form Data
106126
chai.request(app)
@@ -113,20 +133,23 @@ chai.request(app)
113133
})
114134
```
115135

136+
`.attach()`
116137
```js
117138
// Attach a file
118139
chai.request(app)
119140
.post('/user/avatar')
120141
.attach('imageField', fs.readFileSync('avatar.png'), 'avatar.png')
121142
```
122143

144+
`.auth()`
123145
```js
124146
// Authenticate with Basic authentication
125147
chai.request(app)
126148
.get('/protected')
127149
.auth('user', 'pass')
128150
```
129151

152+
`.query()`
130153
```js
131154
// Chain some GET query parameters
132155
chai.request(app)

0 commit comments

Comments
 (0)
Please sign in to comment.