Skip to content

Commit

Permalink
Cleanup in determining implicit content-type
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jan 18, 2016
1 parent 46a8e77 commit 3b5dc9c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 27 deletions.
28 changes: 11 additions & 17 deletions fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,16 +128,10 @@
this._bodyInit = body
if (typeof body === 'string') {
this._bodyText = body
return 'text/plain;charset=UTF-8'
} else if (support.blob && Blob.prototype.isPrototypeOf(body)) {
this._bodyBlob = body
if (body.type !== '') {
return body.type
}
} else if (support.formData && FormData.prototype.isPrototypeOf(body)) {
this._bodyFormData = body
// Since we don't know what the multipart/form-data boundary string
// will be, we can't set a Content-Type here
} else if (!body) {
this._bodyText = ''
} else if (support.arrayBuffer && ArrayBuffer.prototype.isPrototypeOf(body)) {
Expand All @@ -146,6 +140,14 @@
} else {
throw new Error('unsupported BodyInit type')
}

if (!this.headers.get('content-type')) {
if (typeof body === 'string') {
this.headers.set('content-type', 'text/plain;charset=UTF-8')
} else if (this._bodyBlob && this._bodyBlob.type) {
this.headers.set('content-type', this._bodyBlob.type)
}
}
}

if (support.blob) {
Expand Down Expand Up @@ -213,7 +215,6 @@
function Request(input, options) {
options = options || {}
var body = options.body
var bodyFromOptions = true
if (Request.prototype.isPrototypeOf(input)) {
if (input.bodyUsed) {
throw new TypeError('Already read')
Expand All @@ -228,7 +229,6 @@
if (!body) {
body = input._bodyInit
input.bodyUsed = true
bodyFromOptions = false
}
} else {
this.url = input
Expand All @@ -245,10 +245,7 @@
if ((this.method === 'GET' || this.method === 'HEAD') && body) {
throw new TypeError('Body not allowed for GET or HEAD requests')
}
var contentType = this._initBody(body)
if (bodyFromOptions && contentType && !this.headers.get('Content-Type')) {
this.headers.set('Content-Type', contentType)
}
this._initBody(body)
}

Request.prototype.clone = function() {
Expand Down Expand Up @@ -287,16 +284,13 @@
options = {}
}

this.headers = options.headers instanceof Headers ? options.headers : new Headers(options.headers)
var contentType = this._initBody(bodyInit)
if (contentType && !this.headers.get('Content-Type')) {
this.headers.set('Content-Type', contentType)
}
this.type = 'default'
this.status = options.status
this.ok = this.status >= 200 && this.status < 300
this.statusText = options.statusText
this.headers = options.headers instanceof Headers ? options.headers : new Headers(options.headers)
this.url = options.url || ''
this._initBody(bodyInit)
}

Body.call(Response.prototype)
Expand Down
40 changes: 30 additions & 10 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,15 +312,15 @@ suite('Request', function() {
body: 'I work out',
headers: {
accept: 'application/json',
'Content-Type': 'text/plain'
'X-Request-ID': '123'
}
})
var request2 = new Request(request1, {
headers: { 'x-test': '42' }
})

assert.equal(request2.headers.get('accept'), undefined)
assert.equal(request2.headers.get('content-type'), undefined)
assert.equal(request2.headers.get('x-request-id'), undefined)
assert.equal(request2.headers.get('x-test'), '42')
})

Expand Down Expand Up @@ -356,6 +356,18 @@ suite('Request', function() {
})
})

test('GET should not have implicit Content-Type', function() {
var req = new Request('https://fetch.spec.whatwg.org/')
assert.equal(req.headers.get('content-type'), undefined)
})

test('POST with blank body should not have implicit Content-Type', function() {
var req = new Request('https://fetch.spec.whatwg.org/', {
method: 'post'
})
assert.equal(req.headers.get('content-type'), undefined)
})

test('construct with string body sets Content-Type header', function() {
var req = new Request('https://fetch.spec.whatwg.org/', {
method: 'post',
Expand All @@ -365,25 +377,33 @@ suite('Request', function() {
assert.equal(req.headers.get('content-type'), 'text/plain;charset=UTF-8')
})

;(Request.prototype.blob ? test : test.skip)('construct with Blob body and type sets Content-Type header', function() {
featureDependent(test, support.blob, 'construct with Blob body and type sets Content-Type header', function() {
var req = new Request('https://fetch.spec.whatwg.org/', {
method: 'post',
body: new Blob(['test'], { type: 'text/plain' }),
body: new Blob(['test'], { type: 'image/png' })
})

assert.equal(req.headers.get('content-type'), 'text/plain')
assert.equal(req.headers.get('content-type'), 'image/png')
})

test('construct with body and explicit header uses header', function() {
var req = new Request('https://fetch.spec.whatwg.org/', {
method: 'post',
headers: {
'Content-Type': 'text/plain'
},
headers: { 'Content-Type': 'image/png' },
body: 'I work out'
})

assert.equal(req.headers.get('content-type'), 'text/plain')
assert.equal(req.headers.get('content-type'), 'image/png')
})

featureDependent(test, support.blob, 'construct with Blob body and explicit Content-Type header', function() {
var req = new Request('https://fetch.spec.whatwg.org/', {
method: 'post',
headers: { 'Content-Type': 'image/png' },
body: new Blob(['test'], { type: 'text/plain' })
})

assert.equal(req.headers.get('content-type'), 'image/png')
})

test('clone request', function() {
Expand Down Expand Up @@ -564,7 +584,7 @@ suite('Response', function() {
assert.equal(r.headers.get('content-type'), 'text/plain;charset=UTF-8')
})

;(Response.prototype.blob ? test : test.skip)('construct with Blob body and type sets Content-Type header', function() {
featureDependent(test, support.blob, 'construct with Blob body and type sets Content-Type header', function() {
var r = new Response(new Blob(['test'], { type: 'text/plain' }))
assert.equal(r.headers.get('content-type'), 'text/plain')
})
Expand Down

0 comments on commit 3b5dc9c

Please sign in to comment.