%PDF- %PDF-
| Direktori : /home/opti/workflow/node_modules/aws-sdk/test/ |
| Current File : /home/opti/workflow/node_modules/aws-sdk/test/http_request.spec.coffee |
AWS = require('./helpers').AWS
describe 'AWS.HttpRequest', ->
request = null
agentHeader = null
if AWS.util.isBrowser()
agentHeader = 'X-Amz-User-Agent'
else
agentHeader = 'User-Agent'
beforeEach ->
request = new AWS.HttpRequest('http://domain.com')
describe 'constructor', ->
it 'defaults to POST method requests', ->
expect(request.method).toEqual('POST')
it 'defaults the uri to /', ->
expect(request.path).toEqual('/')
it 'provides headers with a default user agent', ->
headers = {}
headers[agentHeader] = AWS.util.userAgent()
expect(request.headers).toEqual(headers)
it 'defaults body to empty string', ->
expect(request.body).toEqual('')
it 'defaults endpointPrefix to undefined', ->
expect(request.endpointPrefix).toEqual(undefined)
it 'uses the path from the endpoint if provided', ->
request = new AWS.HttpRequest('http://domain.com/path')
expect(request.path).toEqual('/path')
describe 'pathname', ->
it 'defaults to /', ->
expect(request.pathname()).toEqual('/')
it 'returns the path portion of the uri', ->
request.path = '/abc/xyz?mno=hjk'
expect(request.pathname()).toEqual('/abc/xyz')
describe 'search', ->
it 'defaults to an empty string', ->
expect(request.search()).toEqual('')
it 'returns the querystring portion of the uri', ->
request.path = '/abc/xyz?mno=hjk'
expect(request.search()).toEqual('mno=hjk')