electron/spec/api-clipboard-spec.js

139 lines
4.4 KiB
JavaScript
Raw Normal View History

2016-03-25 20:03:49 +00:00
const assert = require('assert')
const path = require('path')
const {Buffer} = require('buffer')
2016-01-12 02:40:23 +00:00
2017-03-16 23:16:31 +00:00
const {clipboard, nativeImage} = require('electron')
2016-01-12 02:40:23 +00:00
2017-10-27 00:12:51 +00:00
describe('clipboard module', () => {
const fixtures = path.resolve(__dirname, 'fixtures')
2017-10-27 00:12:51 +00:00
describe('clipboard.readImage()', () => {
2017-10-27 02:09:38 +00:00
it('returns NativeImage instance', () => {
2017-10-27 00:12:51 +00:00
const p = path.join(fixtures, 'assets', 'logo.png')
const i = nativeImage.createFromPath(p)
2016-03-25 20:03:49 +00:00
clipboard.writeImage(p)
assert.equal(clipboard.readImage().toDataURL(), i.toDataURL())
})
})
2017-10-27 00:12:51 +00:00
describe('clipboard.readText()', () => {
it('returns unicode string correctly', () => {
const text = '千江有水千江月,万里无云万里天'
2016-03-25 20:03:49 +00:00
clipboard.writeText(text)
assert.equal(clipboard.readText(), text)
})
})
2017-10-27 00:12:51 +00:00
describe('clipboard.readHTML()', () => {
it('returns markup correctly', () => {
const text = '<string>Hi</string>'
const 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>'
2016-05-26 21:23:50 +00:00
clipboard.writeHTML(text)
assert.equal(clipboard.readHTML(), markup)
2016-03-25 20:03:49 +00:00
})
})
2017-10-27 00:12:51 +00:00
describe('clipboard.readRTF', () => {
it('returns rtf text correctly', () => {
const rtf = '{\\rtf1\\ansi{\\fonttbl\\f0\\fswiss Helvetica;}\\f0\\pard\nThis is some {\\b bold} text.\\par\n}'
2016-05-26 21:23:50 +00:00
clipboard.writeRTF(rtf)
assert.equal(clipboard.readRTF(), rtf)
2016-03-25 20:03:49 +00:00
})
})
2017-10-27 00:12:51 +00:00
describe('clipboard.readBookmark', () => {
before(function () {
if (process.platform === 'linux') {
this.skip()
}
})
it('returns title and url', () => {
clipboard.writeBookmark('a title', 'https://electronjs.org')
2016-06-24 22:10:32 +00:00
assert.deepEqual(clipboard.readBookmark(), {
title: 'a title',
url: 'https://electronjs.org'
})
clipboard.writeText('no bookmark')
assert.deepEqual(clipboard.readBookmark(), {
title: '',
url: ''
2016-06-24 22:10:32 +00:00
})
})
})
2017-10-27 00:12:51 +00:00
describe('clipboard.write()', () => {
it('returns data correctly', () => {
const text = 'test'
const rtf = '{\\rtf1\\utf8 text}'
const p = path.join(fixtures, 'assets', 'logo.png')
const i = nativeImage.createFromPath(p)
const 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>'
const bookmark = {title: 'a title', url: 'test'}
2016-01-12 02:40:23 +00:00
clipboard.write({
2016-03-25 20:03:49 +00:00
text: 'test',
2016-01-12 02:40:23 +00:00
html: '<b>Hi</b>',
rtf: '{\\rtf1\\utf8 text}',
2016-06-24 22:14:28 +00:00
bookmark: 'a title',
2017-05-22 20:55:19 +00:00
image: p
2016-03-25 20:03:49 +00:00
})
assert.equal(clipboard.readText(), text)
2016-05-26 21:23:50 +00:00
assert.equal(clipboard.readHTML(), markup)
assert.equal(clipboard.readRTF(), rtf)
2016-03-25 20:03:49 +00:00
assert.equal(clipboard.readImage().toDataURL(), i.toDataURL())
if (process.platform !== 'linux') {
assert.deepEqual(clipboard.readBookmark(), bookmark)
}
2016-03-25 20:03:49 +00:00
})
})
2016-10-25 04:59:04 +00:00
2017-10-27 00:12:51 +00:00
describe('clipboard.read/writeFindText(text)', () => {
before(function () {
if (process.platform !== 'darwin') {
this.skip()
}
})
2016-10-25 04:59:04 +00:00
it('reads and write text to the find pasteboard', () => {
2016-10-25 04:59:04 +00:00
clipboard.writeFindText('find this')
assert.equal(clipboard.readFindText(), 'find this')
})
})
2017-04-21 05:47:04 +00:00
describe('clipboard.writeBuffer(format, buffer)', () => {
it('writes a Buffer for the specified format', function () {
if (process.platform !== 'darwin') {
// FIXME(alexeykuzmin): Skip the test.
// this.skip()
return
}
2017-04-21 05:47:04 +00:00
const buffer = Buffer.from('writeBuffer', 'utf8')
clipboard.writeBuffer('public.utf8-plain-text', buffer)
assert.equal(clipboard.readText(), 'writeBuffer')
})
it('throws an error when a non-Buffer is specified', () => {
assert.throws(() => {
clipboard.writeBuffer('public.utf8-plain-text', 'hello')
}, /buffer must be a node Buffer/)
})
2017-04-21 05:47:04 +00:00
})
2017-10-27 00:12:51 +00:00
describe('clipboard.readBuffer(format)', () => {
before(function () {
if (process.platform !== 'darwin') {
this.skip()
}
})
it('returns a Buffer of the content for the specified format', () => {
const buffer = Buffer.from('this is binary', 'utf8')
clipboard.writeText(buffer.toString())
assert(buffer.equals(clipboard.readBuffer('public.utf8-plain-text')))
})
})
2016-03-25 20:03:49 +00:00
})