2016-02-17 00:46:49 +00:00
|
|
|
const assert = require('assert');
|
|
|
|
const path = require('path');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-02-17 00:46:49 +00:00
|
|
|
const clipboard = require('electron').clipboard;
|
|
|
|
const nativeImage = require('electron').nativeImage;
|
2016-01-12 02:40:23 +00:00
|
|
|
|
|
|
|
describe('clipboard module', function() {
|
|
|
|
var fixtures;
|
|
|
|
fixtures = path.resolve(__dirname, 'fixtures');
|
|
|
|
describe('clipboard.readImage()', function() {
|
|
|
|
return it('returns NativeImage intance', function() {
|
|
|
|
var i, p;
|
|
|
|
p = path.join(fixtures, 'assets', 'logo.png');
|
|
|
|
i = nativeImage.createFromPath(p);
|
|
|
|
clipboard.writeImage(p);
|
|
|
|
return assert.equal(clipboard.readImage().toDataURL(), i.toDataURL());
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('clipboard.readText()', function() {
|
|
|
|
return it('returns unicode string correctly', function() {
|
|
|
|
var text;
|
|
|
|
text = '千江有水千江月,万里无云万里天';
|
|
|
|
clipboard.writeText(text);
|
|
|
|
return assert.equal(clipboard.readText(), text);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('clipboard.readHtml()', function() {
|
|
|
|
return it('returns markup correctly', function() {
|
|
|
|
var markup, text;
|
|
|
|
text = '<string>Hi</string>';
|
|
|
|
markup = process.platform === 'darwin' ? '<meta charset=\'utf-8\'><string>Hi</string>' : process.platform === 'linux' ? '<meta http-equiv="content-type" ' + 'content="text/html; charset=utf-8"><string>Hi</string>' : '<string>Hi</string>';
|
|
|
|
clipboard.writeHtml(text);
|
|
|
|
return assert.equal(clipboard.readHtml(), markup);
|
|
|
|
});
|
|
|
|
});
|
2016-02-05 08:06:21 +00:00
|
|
|
describe('clipboard.readRtf', function() {
|
|
|
|
return it('returns rtf text correctly', function() {
|
|
|
|
var rtf = "{\\rtf1\\ansi{\\fonttbl\\f0\\fswiss Helvetica;}\\f0\\pard\nThis is some {\\b bold} text.\\par\n}";
|
|
|
|
clipboard.writeRtf(rtf);
|
|
|
|
return assert.equal(clipboard.readRtf(), rtf);
|
|
|
|
});
|
|
|
|
});
|
2016-01-12 02:40:23 +00:00
|
|
|
return describe('clipboard.write()', function() {
|
|
|
|
return it('returns data correctly', function() {
|
2016-02-05 08:06:21 +00:00
|
|
|
var i, markup, p, text, rtf;
|
2016-01-12 02:40:23 +00:00
|
|
|
text = 'test';
|
2016-02-05 08:06:21 +00:00
|
|
|
rtf = '{\\rtf1\\utf8 text}';
|
2016-01-12 02:40:23 +00:00
|
|
|
p = path.join(fixtures, 'assets', 'logo.png');
|
|
|
|
i = nativeImage.createFromPath(p);
|
|
|
|
markup = process.platform === 'darwin' ? '<meta charset=\'utf-8\'><b>Hi</b>' : process.platform === 'linux' ? '<meta http-equiv="content-type" ' + 'content="text/html; charset=utf-8"><b>Hi</b>' : '<b>Hi</b>';
|
|
|
|
clipboard.write({
|
|
|
|
text: "test",
|
|
|
|
html: '<b>Hi</b>',
|
2016-02-05 08:06:21 +00:00
|
|
|
rtf: '{\\rtf1\\utf8 text}',
|
2016-01-12 02:40:23 +00:00
|
|
|
image: p
|
|
|
|
});
|
|
|
|
assert.equal(clipboard.readText(), text);
|
|
|
|
assert.equal(clipboard.readHtml(), markup);
|
2016-02-05 08:06:21 +00:00
|
|
|
assert.equal(clipboard.readRtf(), rtf);
|
2016-01-12 02:40:23 +00:00
|
|
|
return assert.equal(clipboard.readImage().toDataURL(), i.toDataURL());
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|