@@ -90,17 +90,37 @@ chai.request('http://localhost:8080')
90
90
91
91
#### Setting up requests
92
92
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:
95
94
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() `
96
116
``` js
97
117
// Send some JSON
98
118
chai .request (app)
99
119
.put (' /user/me' )
100
- .set (' X-API-Key' , ' foobar' )
101
120
.send ({ password: ' 123' , confirmPassword: ' 123' })
102
121
```
103
122
123
+ ` .type() `
104
124
``` js
105
125
// Send some Form Data
106
126
chai .request (app)
@@ -113,20 +133,23 @@ chai.request(app)
113
133
})
114
134
```
115
135
136
+ ` .attach() `
116
137
``` js
117
138
// Attach a file
118
139
chai .request (app)
119
140
.post (' /user/avatar' )
120
141
.attach (' imageField' , fs .readFileSync (' avatar.png' ), ' avatar.png' )
121
142
```
122
143
144
+ ` .auth() `
123
145
``` js
124
146
// Authenticate with Basic authentication
125
147
chai .request (app)
126
148
.get (' /protected' )
127
149
.auth (' user' , ' pass' )
128
150
```
129
151
152
+ ` .query() `
130
153
``` js
131
154
// Chain some GET query parameters
132
155
chai .request (app)
0 commit comments