mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
94 lines
2.6 KiB
JavaScript
94 lines
2.6 KiB
JavaScript
import Clipboard from '../src/clipboard';
|
|
import ClipboardAction from '../src/clipboard-action';
|
|
import listen from 'good-listener';
|
|
|
|
describe('Clipboard', () => {
|
|
before(() => {
|
|
global.button = document.createElement('button');
|
|
global.button.setAttribute('class', 'btn');
|
|
global.button.setAttribute('data-clipboard-text', 'foo');
|
|
document.body.appendChild(global.button);
|
|
|
|
global.event = {
|
|
target: global.button
|
|
};
|
|
});
|
|
|
|
after(() => {
|
|
document.body.innerHTML = '';
|
|
});
|
|
|
|
describe('#resolveOptions', () => {
|
|
before(() => {
|
|
global.fn = function() {};
|
|
});
|
|
|
|
it('should set action as a function', () => {
|
|
let clipboard = new Clipboard('.btn', {
|
|
action: global.fn
|
|
});
|
|
|
|
assert.equal(global.fn, clipboard.action);
|
|
});
|
|
|
|
it('should set target as a function', () => {
|
|
let clipboard = new Clipboard('.btn', {
|
|
target: global.fn
|
|
});
|
|
|
|
assert.equal(global.fn, clipboard.target);
|
|
});
|
|
|
|
it('should set text as a function', () => {
|
|
let clipboard = new Clipboard('.btn', {
|
|
text: global.fn
|
|
});
|
|
|
|
assert.equal(global.fn, clipboard.text);
|
|
});
|
|
});
|
|
|
|
describe('#listenClick', () => {
|
|
it('should add a click event listener to the passed selector', () => {
|
|
let clipboard = new Clipboard('.btn');
|
|
assert.isObject(clipboard.listener);
|
|
});
|
|
});
|
|
|
|
describe('#onClick', () => {
|
|
it('should create a new instance of ClipboardAction', () => {
|
|
let clipboard = new Clipboard('.btn');
|
|
|
|
clipboard.onClick(global.event);
|
|
assert.instanceOf(clipboard.clipboardAction, ClipboardAction);
|
|
});
|
|
|
|
it('should throws exception target', done => {
|
|
try {
|
|
var clipboard = new Clipboard('.btn', {
|
|
target: function() {
|
|
return null;
|
|
}
|
|
});
|
|
|
|
clipboard.onClick(global.event);
|
|
}
|
|
catch(e) {
|
|
assert.equal(e.message, 'Invalid "target" value, use a valid Element');
|
|
done();
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('#destroy', () => {
|
|
it('should destroy an existing instance of ClipboardAction', () => {
|
|
let clipboard = new Clipboard('.btn');
|
|
|
|
clipboard.onClick(global.event);
|
|
clipboard.destroy();
|
|
|
|
assert.equal(clipboard.clipboardAction, null);
|
|
});
|
|
});
|
|
});
|