-
Notifications
You must be signed in to change notification settings - Fork 846
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
138 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
/* | ||
* Copyright (c) 2021 The adapter.js project authors. All Rights Reserved. | ||
* | ||
* Use of this source code is governed by a BSD-style license | ||
* that can be found in the LICENSE file in the root of the source | ||
* tree. | ||
*/ | ||
/* eslint-env node */ | ||
const chai = require('chai'); | ||
const expect = chai.expect; | ||
const sinon = require('sinon'); | ||
const sinonChai = require('sinon-chai'); | ||
chai.use(sinonChai); | ||
|
||
describe('addIceCandidate with null or empty candidate', () => { | ||
const shim = require('../../dist/common_shim'); | ||
let window; | ||
let origAddIceCandidate; | ||
beforeEach(() => { | ||
window = { | ||
RTCPeerConnection: sinon.stub(), | ||
}; | ||
origAddIceCandidate = sinon.stub(); | ||
window.RTCPeerConnection.prototype.addIceCandidate = origAddIceCandidate; | ||
}); | ||
|
||
describe('does nothing if', () => { | ||
it('RTCPeerConnection is not defined', () => { | ||
expect(() => shim.shimAddIceCandidateNullOrEmpty({}, {})).not.to.throw(); | ||
}); | ||
it('RTCPeerConnection.prototype.addIceCandidate is undefined', () => { | ||
window.RTCPeerConnection.prototype.addIceCandidate = null; | ||
expect(() => shim.shimAddIceCandidateNullOrEmpty({}, {})).not.to.throw(); | ||
}); | ||
it('the candidate argument is optional', () => { | ||
expect(window.RTCPeerConnection.prototype.addIceCandidate.length) | ||
.to.equal(0); | ||
shim.shimAddIceCandidateNullOrEmpty({}, {}); | ||
expect(window.RTCPeerConnection.prototype.addIceCandidate) | ||
.to.equal(origAddIceCandidate); | ||
}); | ||
}); | ||
|
||
it('changes the number of arguments', () => { | ||
window.RTCPeerConnection.prototype.addIceCandidate = | ||
(candidate) => origAddIceCandidate(candidate); | ||
shim.shimAddIceCandidateNullOrEmpty(window, {}); | ||
expect(window.RTCPeerConnection.prototype.addIceCandidate.length) | ||
.to.equal(0); | ||
}); | ||
|
||
it('ignores addIceCandidate(null)', () => { | ||
window.RTCPeerConnection.prototype.addIceCandidate = | ||
(candidate) => origAddIceCandidate(candidate); | ||
shim.shimAddIceCandidateNullOrEmpty(window, {}); | ||
const pc = new window.RTCPeerConnection(); | ||
pc.addIceCandidate({candidate: '', sdpMLineIndex: 0}); | ||
expect(origAddIceCandidate.callCount).to.equal(1); | ||
}); | ||
|
||
describe('Chrome behaviour', () => { | ||
let browserDetails; | ||
// Override addIceCandidate to simulate legacy behaviour. | ||
beforeEach(() => { | ||
window.RTCPeerConnection.prototype.addIceCandidate = | ||
(candidate) => origAddIceCandidate(candidate); | ||
browserDetails = {browser: 'chrome', version: '88'}; | ||
}); | ||
|
||
it('ignores {candidate: ""} before Chrome 78', () => { | ||
browserDetails.version = 77; | ||
shim.shimAddIceCandidateNullOrEmpty(window, browserDetails); | ||
|
||
const pc = new window.RTCPeerConnection(); | ||
pc.addIceCandidate({candidate: '', sdpMLineIndex: 0}); | ||
expect(origAddIceCandidate.callCount).to.equal(0); | ||
}); | ||
|
||
it('passes {candidate: ""} after Chrome 78', () => { | ||
browserDetails.version = 78; | ||
shim.shimAddIceCandidateNullOrEmpty(window, browserDetails); | ||
|
||
const pc = new window.RTCPeerConnection(); | ||
pc.addIceCandidate({candidate: '', sdpMLineIndex: 0}); | ||
expect(origAddIceCandidate.callCount).to.equal(1); | ||
}); | ||
}); | ||
|
||
describe('Firefox behaviour', () => { | ||
let browserDetails; | ||
// Override addIceCandidate to simulate legacy behaviour. | ||
beforeEach(() => { | ||
window.RTCPeerConnection.prototype.addIceCandidate = | ||
(candidate) => origAddIceCandidate(candidate); | ||
browserDetails = {browser: 'firefox', version: '69'}; | ||
}); | ||
|
||
it('ignores {candidate: ""} before Firefox 68', () => { | ||
browserDetails.version = 67; | ||
shim.shimAddIceCandidateNullOrEmpty(window, browserDetails); | ||
|
||
const pc = new window.RTCPeerConnection(); | ||
pc.addIceCandidate({candidate: '', sdpMLineIndex: 0}); | ||
expect(origAddIceCandidate.callCount).to.equal(0); | ||
}); | ||
|
||
it('passes {candidate: ""} after Firefox 68', () => { | ||
browserDetails.version = 68; | ||
shim.shimAddIceCandidateNullOrEmpty(window, browserDetails); | ||
|
||
const pc = new window.RTCPeerConnection(); | ||
pc.addIceCandidate({candidate: '', sdpMLineIndex: 0}); | ||
expect(origAddIceCandidate.callCount).to.equal(1); | ||
}); | ||
}); | ||
|
||
describe('Safari behaviour', () => { | ||
let browserDetails; | ||
// Override addIceCandidate to simulate legacy behaviour. | ||
beforeEach(() => { | ||
window.RTCPeerConnection.prototype.addIceCandidate = | ||
(candidate) => origAddIceCandidate(candidate); | ||
browserDetails = {browser: 'safari', version: 'some'}; | ||
}); | ||
|
||
it('ignores {candidate: ""}', () => { | ||
shim.shimAddIceCandidateNullOrEmpty(window, browserDetails); | ||
|
||
const pc = new window.RTCPeerConnection(); | ||
pc.addIceCandidate({candidate: '', sdpMLineIndex: 0}); | ||
expect(origAddIceCandidate.callCount).to.equal(0); | ||
}); | ||
}); | ||
}); |