A suite to track Project Diva score statistics and ratings / D4DJ event data.
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.
 
 
 
 
 
 
projectdivar/server/node_modules/parse-data-uri/test/test.js

37 lines
799 B

var mochi = require('mochi')
var test = require('fs').readFileSync(__dirname + '/test.datauri').toString()
describe('parse-data-uri', function () {
var parseDataUri = require('../')
it('works with crazy messed up mime types', function () {
var t = test.replace('image/gif','image/image/gif')
// this is a test case i've seen from some datauris in the wild
parseDataUri(t).mimeType
.should.equal('image/gif')
})
it('returns an object', function () {
parseDataUri(test)
.should.have.keys(['mimeType', 'data'])
})
it('parses mime type', function () {
parseDataUri(test).mimeType
.should.equal('image/gif')
})
it('decodes the buffer', function () {
parseDataUri(test).data.constructor
.should.equal(Buffer)
})
})