37 lines
1.2 KiB
CoffeeScript
37 lines
1.2 KiB
CoffeeScript
assert = require 'assert'
|
|
ipc = require 'ipc'
|
|
path = require 'path'
|
|
remote = require 'remote'
|
|
|
|
describe 'ipc', ->
|
|
fixtures = path.join __dirname, '..', 'fixtures'
|
|
|
|
describe 'remote.require', ->
|
|
it 'should returns same object for the same module', ->
|
|
dialog1 = remote.require 'dialog'
|
|
dialog2 = remote.require 'dialog'
|
|
assert.equal dialog1, dialog2
|
|
|
|
it 'should work when object contains id property', ->
|
|
a = remote.require path.join(fixtures, 'module', 'id.js')
|
|
assert.equal a.id, 1127
|
|
|
|
describe 'remote object', ->
|
|
it 'can change its properties', ->
|
|
property = remote.require path.join(fixtures, 'module', 'property.js')
|
|
assert.equal property.property, 1127
|
|
property.property = 1007
|
|
assert.equal property.property, 1007
|
|
property2 = remote.require path.join(fixtures, 'module', 'property.js')
|
|
assert.equal property2.property, 1007
|
|
|
|
# Restore.
|
|
property.property = 1127
|
|
|
|
describe 'ipc.send', ->
|
|
it 'should work when sending an object containing id property', (done) ->
|
|
obj = id: 1, name: 'ly'
|
|
ipc.on 'message', (message) ->
|
|
assert.deepEqual message, obj
|
|
done()
|
|
ipc.send obj
|