File: test.js

package info (click to toggle)
node-compressible 2.0.18-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: javascript: 137; makefile: 4
file content (84 lines) | stat: -rw-r--r-- 2,686 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
var assert = require('assert')
var db = require('mime-db')
var compressible = require('../')

// None of these should be actual types so that the lookup will never include them.
var EXAMPLE_TYPES = [
  { type: 'text/penguins', should: true },
  { type: 'text/html', should: true },
  { type: 'text/plain', should: true },
  { type: 'text/jade', should: true },
  { type: 'something/text', should: undefined },
  { type: 'something/frog+TEXT', should: true },
  { type: 'type/json;askjkl+json', should: undefined },
  { type: 'type/+json', should: true },
  { type: 'data/beans+xml ; charset="utf-8"', should: true },
  { type: 'can/worms+xml;blaaaah', should: true },
  { type: 'data/xml', should: undefined },
  { type: 'asdf/nope', should: undefined },
  { type: 'cats', should: undefined }
]

var INVALID_TYPES = [
  undefined,
  null,
  0,
  1,
  false,
  true
]

describe('Testing if spec lookups are correct.', function () {
  it('All DB `compressible` types should reflect in compressible', function () {
    for (var type in db) {
      if (db[type].compressible !== undefined) {
        assert.strictEqual(compressible(type), db[type].compressible)
      }
    }
  })
})

describe('Testing if the regex works as intended.', function () {
  EXAMPLE_TYPES.forEach(function (example) {
    if (db[example.type] === undefined)
      return;
    it(example.type + ' should' + (example.should ? ' ' : ' not ') + 'be compressible', function () {
      assert.strictEqual(compressible(example.type), example.should)
    })
  })
})

describe('Testing if charsets are handled correctly.', function () {
  it('Charsets should be stripped off without issue', function () {
    for (var type in db) {
      if (db[type].compressible !== undefined) {
        assert.strictEqual(compressible(type + '; charset=utf-8'), db[type].compressible)
      }
    }
  })
})

describe('Ensuring invalid types do not cause errors.', function () {
  it('No arguments should return false without error', function () {
    assert.strictEqual(compressible(), false)
  })

  INVALID_TYPES.forEach(function (invalid) {
    it(invalid + ' should return false without error', function () {
      assert.doesNotThrow(function () {
        assert.strictEqual(compressible(invalid), false)
      })
    })
  })
})

describe('Ensuring types are always stripped correctly.', function () {
  it('Uppercase types should work', function () {
    assert.strictEqual(compressible('TEXT/HTML'), true)
    assert.strictEqual(compressible('TEXT/plain; charset="utf-8"'), true)
  })

  it('White-spaced types should work', function () {
    assert.strictEqual(compressible('application/json ; charset="utf-8"'), true)
  })
})