mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 05:11:19 -04:00
You can nest a "describe" in a "describe": describe describe it But you can't nest an "it" in an "it": describe it it The nested "it"s were not getting run (or getting run, but their output ignored, I'm not sure). Before this change: 41 specs, 0 failures After: 44 specs, 5 failures
80 lines
2.3 KiB
CoffeeScript
80 lines
2.3 KiB
CoffeeScript
###
|
|
jasmine tests for Snowflake proxypair
|
|
###
|
|
|
|
|
|
describe 'ProxyPair', ->
|
|
fakeRelay = Parse.address '0.0.0.0:12345'
|
|
rateLimit = new DummyRateLimit()
|
|
destination = []
|
|
pp = new ProxyPair(fakeRelay, rateLimit)
|
|
|
|
it 'begins webrtc connection', ->
|
|
pp.begin()
|
|
expect(pp.pc).not.toBeNull()
|
|
|
|
describe 'accepts WebRTC offer from some client', ->
|
|
it 'rejects invalid offers', ->
|
|
expect(pp.receiveWebRTCOffer {}).toBe false
|
|
expect pp.receiveWebRTCOffer {
|
|
type: 'answer'
|
|
}.toBeFalse()
|
|
it 'accepts valid offers', ->
|
|
goodOffer = {
|
|
type: 'offer'
|
|
sdp: 'foo'
|
|
}
|
|
expect(pp.receiveWebRTCOffer goodOffer).toBe true
|
|
|
|
it 'responds with a WebRTC answer correctly', ->
|
|
spyOn snowflake.broker, 'sendAnswer'
|
|
pp.pc.onicecandidate {
|
|
candidate: null
|
|
}
|
|
expect(snowflake.broker.sendAnswer).toHaveBeenCalled()
|
|
|
|
it 'handles a new data channel correctly', ->
|
|
expect(pp.client).toBeNull()
|
|
pp.pc.ondatachannel {
|
|
channel: {}
|
|
}
|
|
expect(pp.client).not.toBeNull()
|
|
expect(pp.client.onopen).not.toBeNull()
|
|
expect(pp.client.onclose).not.toBeNull()
|
|
expect(pp.client.onerror).not.toBeNull()
|
|
expect(pp.client.onmessage).not.toBeNull()
|
|
|
|
it 'connects to the relay once datachannel opens', ->
|
|
spyOn pp, 'connectRelay'
|
|
pp.client.onopen()
|
|
expect(pp.connectRelay).toHaveBeenCalled()
|
|
|
|
it 'connects to a relay', ->
|
|
pp.connectRelay()
|
|
expect(pp.relay.onopen).not.toBeNull()
|
|
expect(pp.relay.onclose).not.toBeNull()
|
|
expect(pp.relay.onerror).not.toBeNull()
|
|
expect(pp.relay.onmessage).not.toBeNull()
|
|
|
|
describe 'flushes data between client and relay', ->
|
|
|
|
it 'proxies data from client to relay', ->
|
|
spyOn pp.relay, 'send'
|
|
pp.c2rSchedule.push { data: 'foo' }
|
|
pp.flush()
|
|
expect(pp.client.send).not.toHaveBeenCalled()
|
|
expect(pp.relay.send).toHaveBeenCalledWith 'foo'
|
|
|
|
it 'proxies data from relay to client', ->
|
|
spyOn pp.client, 'send'
|
|
pp.r2cSchedule.push { data: 'bar' }
|
|
pp.flush()
|
|
expect(pp.client.send).toHaveBeenCalledWith 'bar'
|
|
expect(pp.relay.send).not.toHaveBeenCalled()
|
|
|
|
it 'sends nothing with nothing to flush', ->
|
|
pp.flush()
|
|
expect(pp.client.send).not.toHaveBeenCalled()
|
|
expect(pp.relay.send).not.toHaveBeenCalled()
|
|
|
|
# TODO: rate limit tests
|