electron/spec/api/protocol.coffee

32 lines
1.2 KiB
CoffeeScript
Raw Normal View History

2013-08-24 08:38:19 +00:00
assert = require 'assert'
ipc = require 'ipc'
2013-08-24 08:38:19 +00:00
protocol = require('remote').require 'protocol'
describe 'protocol API', ->
describe 'protocol.registerProtocol', ->
it 'throws error when scheme is already registered', ->
register = -> protocol.registerProtocol('test1', ->)
2013-08-24 08:38:19 +00:00
register()
assert.throws register, /The scheme is already registered/
protocol.unregisterProtocol 'test1'
it 'calls the callback when scheme is visited', (done) ->
protocol.registerProtocol 'test2', -> done()
$.get 'test2://test2', ->
protocol.unregisterProtocol 'test2'
2013-08-24 08:38:19 +00:00
describe 'protocol.unregisterProtocol', ->
it 'throws error when scheme does not exist', ->
unregister = -> protocol.unregisterProtocol 'test3'
2013-08-24 08:38:19 +00:00
assert.throws unregister, /The scheme has not been registered/
describe 'registered protocol callback', ->
it 'returns string should send the string as request content', (done) ->
$.ajax
url: 'atom-string://something'
success: (data) ->
assert.equal data, 'atom-string://something'
done()
error: (xhr, errorType, error) ->
console.log xhr, errorType, error