sdfsdfs
This commit is contained in:
32
node_modules/stream-http/test/browser/binary.js
generated
vendored
Normal file
32
node_modules/stream-http/test/browser/binary.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
var Buffer = require('buffer').Buffer
|
||||
var fs = require('fs')
|
||||
var test = require('tape')
|
||||
var UAParser = require('ua-parser-js')
|
||||
|
||||
var http = require('../..')
|
||||
|
||||
var browser = (new UAParser()).setUA(navigator.userAgent).getBrowser()
|
||||
var browserName = browser.name
|
||||
var browserVersion = browser.major
|
||||
// Binary data gets corrupted in IE8 or below
|
||||
var skipVerification = (browserName === 'IE' && browserVersion <= 8)
|
||||
|
||||
var reference = fs.readFileSync(__dirname + '/../server/static/browserify.png')
|
||||
|
||||
test('binary download', function (t) {
|
||||
http.get('/browserify.png', function (res) {
|
||||
var buffers = []
|
||||
|
||||
res.on('end', function () {
|
||||
if (skipVerification)
|
||||
t.skip('binary data not preserved on IE <= 8')
|
||||
else
|
||||
t.ok(reference.equals(Buffer.concat(buffers)), 'contents match')
|
||||
t.end()
|
||||
})
|
||||
|
||||
res.on('data', function (data) {
|
||||
buffers.push(data)
|
||||
})
|
||||
})
|
||||
})
|
Reference in New Issue
Block a user