You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.3 KiB

10 years ago
# invalid path
10 years ago
*Generated: Thu Oct 23 2014 11:58:14 GMT-0400 (EDT)*
10 years ago
## Request
```javascript
{
"protocol": "http:",
"host": "localhost",
"method": "GET",
"port": 3100,
10 years ago
"path": "/notexist"
10 years ago
}
```
## Response
```javascript
Status: 404
{
10 years ago
"x-powered-by": "mapzen",
10 years ago
"charset": "utf8",
10 years ago
"cache-control": "public,max-age=300",
"server": "Pelias/0.0.0",
10 years ago
"access-control-allow-origin": "*",
"access-control-allow-methods": "GET",
"access-control-allow-headers": "X-Requested-With,content-type",
"access-control-allow-credentials": "true",
"content-type": "application/json; charset=utf-8",
"content-length": "35",
"etag": "W/\"23-dfdfa185\"",
10 years ago
"date": "Thu, 23 Oct 2014 15:58:14 GMT",
10 years ago
"connection": "close"
}
```
```javascript
{
"error": "not found: invalid path"
}
```
## Tests
10 years ago
### ✓ cache-control header correctly set
10 years ago
```javascript
10 years ago
response.should.have.header 'Cache-Control','public,max-age=300'
10 years ago
```
10 years ago
### ✓ content-type header correctly set
10 years ago
```javascript
10 years ago
response.should.have.header 'Content-Type','application/json; charset=utf-8'
```
### ✓ not found
```javascript
response.statusCode.should.equal 404
10 years ago
```
10 years ago
### ✓ should respond in json with server info
10 years ago
```javascript
10 years ago
should.exist json
should.exist json.error
json.error.should.equal 'not found: invalid path'
10 years ago
```