mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 14:11:23 -04:00
28 lines
845 B
CoffeeScript
28 lines
845 B
CoffeeScript
|
|
# Fake snowflake to interact with
|
|
snowflake =
|
|
ui: new UI
|
|
broker:
|
|
sendAnswer: ->
|
|
state: Snowflake.MODE.INIT
|
|
|
|
describe 'Init', ->
|
|
|
|
it 'gives a dialog when closing, only while active', ->
|
|
silenceNotifications = false
|
|
snowflake.state = Snowflake.MODE.WEBRTC_READY
|
|
msg = window.onbeforeunload()
|
|
expect(snowflake.state).toBe Snowflake.MODE.WEBRTC_READY
|
|
expect(msg).toBe Snowflake.MESSAGE.CONFIRMATION
|
|
|
|
snowflake.state = Snowflake.MODE.INIT
|
|
msg = window.onbeforeunload()
|
|
expect(snowflake.state).toBe Snowflake.MODE.INIT
|
|
expect(msg).toBe null
|
|
|
|
it 'does not give a dialog when silent flag is on', ->
|
|
silenceNotifications = true
|
|
snowflake.state = Snowflake.MODE.WEBRTC_READY
|
|
msg = window.onbeforeunload()
|
|
expect(snowflake.state).toBe Snowflake.MODE.WEBRTC_READY
|
|
expect(msg).toBe null
|