aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-07 15:04:02 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-07 15:04:02 +0200
commit67bdce8805063717bfdbc449e5d8974f32f288a2 (patch)
tree594170cb6721f053d14d18634dc290b212c5ef8e /tests
parent2b95e7ae6cb53f987931de8f567870b9e69cdf9a (diff)
downloadbugzilla-triage-67bdce8805063717bfdbc449e5d8974f32f288a2.tar.gz
The first attempt to make JEP-10/Clipboard working.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-clipboard.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/test-clipboard.js b/tests/test-clipboard.js
new file mode 100644
index 0000000..56cfeb8
--- /dev/null
+++ b/tests/test-clipboard.js
@@ -0,0 +1,42 @@
+/*global exports: false, require: false */
+/*jslint plusplus: false */
+// Released under the MIT/X11 license
+// http://www.opensource.org/licenses/mit-license.php
+
+// TODO: add some failing tests as well
+"use strict";
+var clip = require("clipboard");
+
+var testString = "When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.\n";
+var pushkinTestString = "Byl pozdní večer první máj!\n\nАРИОН.\n\nНас было много на челне;\nИные парус напрягали,\nДругие дружно упирали\nВ глубь мощны веслы. В тишине\nНа руль склонясь, наш кормщик умный\nВ молчаньи правил грузный чолн;\nА я — беспечной веры полн —\nПловцам я пел … Вдруг лоно волн\nИзмял с налету вихорь шумный …\nПогиб и кормщик и пловец! –\nЛишь я, таинственный певец,\nНа берег выброшен грозою,\nЯ гимны прежние пою\nИ ризу влажную мою\nСушу на солнце под скалою.\n"
+
+// TODO: VERY insufficient test, needs to be extended
+exports.ensureClipboardASCII = function ensureClipboard(test) {
+ var text = "";
+ var req = clip.set(testString);
+ if (req) {
+ text = clip.get();
+ if (!text) {
+ throw "Cannot read a string from the clipboard";
+ }
+ } else {
+ throw "Cannot copy string to the clipboard;"
+ }
+ test.assertEqual(text, testString,
+ "checking set and get clipboard methods (ASCII)");
+};
+
+exports.ensureClipboardUnicode = function ensureClipboard(test) {
+ var text = "";
+ var req = clip.set(pushkinTestString);
+ if (req) {
+ text = clip.get();
+ if (!text) {
+ throw "Cannot read a string from the clipboard";
+ }
+ } else {
+ throw "Cannot copy string to the clipboard;"
+ }
+ test.assertEqual(text, pushkinTestString,
+ "checking set and get clipboard methods (Unicode)");
+};