/**
* --------------------------------------------------------------------------
- * Bootstrap (v4.0.0-beta): dom/data.js
+ * Bootstrap (v4.1.1): dom/data.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
* ------------------------------------------------------------------------
*/
-
const mapData = (() => {
const storeData = {}
let id = 1
reporters.push('BrowserStack')
files = files.concat([
'node_modules/jquery/dist/jquery.slim.min.js',
- 'js/dist/util.js',
- 'js/dist/tooltip.js',
- 'js/dist/!(util|index|tooltip).js' // include all of our js/dist files except util.js, index.js and tooltip.js
+ 'js/coverage/dist/dom/eventHandler.js',
+ 'js/coverage/dist/dom/selectorEngine.js',
+ 'js/coverage/dist/dom/data.js',
+ 'js/coverage/dist/dom/manipulator.js',
+ 'js/coverage/dist/util.js',
+ 'js/coverage/dist/dom/*.js',
+ 'js/coverage/dist/tooltip.js',
+ 'js/coverage/dist/!(util|index|tooltip).js', // include all of our js/dist files except util.js, index.js and tooltip.js
+ 'js/tests/unit/*.js',
+ 'js/tests/unit/dom/*.js'
])
} else {
frameworks.push('detectBrowsers')
'js/coverage/dist/dom/data.js',
'js/coverage/dist/dom/manipulator.js',
'js/coverage/dist/util.js',
+ 'js/coverage/dist/dom/*.js',
'js/coverage/dist/tooltip.js',
- 'js/coverage/dist/!(util|index|tooltip).js' // include all of our js/dist files except util.js, index.js and tooltip.js
+ 'js/coverage/dist/!(util|index|tooltip).js', // include all of our js/dist files except util.js, index.js and tooltip.js
+ 'js/tests/unit/*.js',
+ 'js/tests/unit/dom/*.js'
])
reporters.push('coverage-istanbul')
conf.customLaunchers = customLaunchers
--- /dev/null
+$(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')
+ })
+})