data.js 1.97 KB
Newer Older
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
$(function () {
  'use strict'

  QUnit.module('data')

  QUnit.test('should be defined', function (assert) {
    assert.expect(1)
    assert.ok(Data, 'Data is defined')
  })

  QUnit.test('should set data in a element', function (assert) {
    assert.expect(1)

    var $div = $('<div />').appendTo('#qunit-fixture')
    var data = {
      test: 'bsData'
    }
    Data.setData($div[0], 'test', data)

    assert.ok($div[0].key, 'element have a data key')
  })

  QUnit.test('should get data from an element', function (assert) {
    assert.expect(1)

    var $div = $('<div />').appendTo('#qunit-fixture')
    var data = {
      test: 'bsData'
    }
    Data.setData($div[0], 'test', data)

    assert.strictEqual(Data.getData($div[0], 'test'), data)
  })

  QUnit.test('should return null if nothing is stored', function (assert) {
    assert.expect(1)
    assert.ok(Data.getData(document.body, 'test') === null)
  })

  QUnit.test('should return null if nothing is stored with an existing key', function (assert) {
    assert.expect(1)

    var $div = $('<div />').appendTo('#qunit-fixture')
    $div[0].key = {
      key: 'test2',
      data: 'woot woot'
    }

    assert.ok(Data.getData($div[0], 'test') === null)
  })

  QUnit.test('should delete data', function (assert) {
    assert.expect(2)

    var $div = $('<div />').appendTo('#qunit-fixture')
    var data = {
      test: 'bsData'
    }
    Data.setData($div[0], 'test', data)
    assert.ok(Data.getData($div[0], 'test') !== null)

    Data.removeData($div[0], 'test')
    assert.ok(Data.getData($div[0], 'test') === null)
  })

  QUnit.test('should delete nothing if there are nothing', function (assert) {
    assert.expect(0)

    Data.removeData(document.body, 'test')
  })

  QUnit.test('should delete nothing if not the good key', function (assert) {
    assert.expect(0)

    var $div = $('<div />').appendTo('#qunit-fixture')
    $div[0].key = {
      key: 'test2',
      data: 'woot woot'
    }

    Data.removeData($div[0], 'test')
  })
})