diff --git a/js/common.js b/js/common.js index 5ad72afd..346e1423 100644 --- a/js/common.js +++ b/js/common.js @@ -152,3 +152,22 @@ exports.urlToString = function (url) { encodeURI(url.query.join('').replace(/^&+|&+$/gm,'')) : '') + (url.fragment ? '#' + encodeURI(url.fragment) : ''); }; + +exports.enableClipboard = function () { + navigator.clipboard = (function () { + let savedText = ""; + + async function writeText(text) { + savedText = text; + }; + + async function readText() { + return savedText; + }; + + return { + writeText, + readText, + }; + })(); +}; diff --git a/js/privatebin.js b/js/privatebin.js index a06d80b0..b67de8ad 100644 --- a/js/privatebin.js +++ b/js/privatebin.js @@ -5459,9 +5459,7 @@ jQuery.PrivateBin = (function($, RawDeflate) { copyIcon, successIcon, shortcutHint, - url, - testMode, - testClipboard; + url; /** * Handle copy to clipboard button click @@ -5542,11 +5540,7 @@ jQuery.PrivateBin = (function($, RawDeflate) { * @function */ function saveToClipboard(text) { - if (testMode) { - testClipboard = text; - } else { - navigator.clipboard.writeText(text); - } + navigator.clipboard.writeText(text); }; /** @@ -5612,35 +5606,6 @@ jQuery.PrivateBin = (function($, RawDeflate) { url = newUrl; }; - /** - * Enable test mode, using for unit tests - * - * @name CopyToClipboard.testMode - * @function - */ - me.enableTestMode = function () { - testMode = true; - }; - - /** - * Read text from user's clipboard - * - * @name CopyToClipboard.readFromClipboard - * @function - * @returns {string} - */ - me.readFromClipboard = function () { - let clipboardData = ""; - - if (testMode) { - clipboardData = testClipboard; - } else { - clipboardData = navigator.clipboard.readText(); - } - - return clipboardData; - }; - /** * Initialize * diff --git a/js/test/CopyToClipboard.js b/js/test/CopyToClipboard.js index 00ec7438..9d2df2f1 100644 --- a/js/test/CopyToClipboard.js +++ b/js/test/CopyToClipboard.js @@ -1,12 +1,13 @@ 'use strict'; -var common = require('../common'); +const common = require('../common'); describe('CopyToClipboard', function() { this.timeout(30000); describe ('Copy paste co clipboard', function () { - jsc.property('Copy with button click', common.jscFormats(), 'nestring', function (format, text) { + jsc.property('Copy with button click', common.jscFormats(), 'nestring', async function (format, text) { var clean = jsdom(); + common.enableClipboard(); $('body').html( '