2dcd56ef43
There are far too many files here to review everyone carefully. Spot checking most of the diffs look good as test code is generally written with less care than application code so lots of ugly formatting get through. If people notice files where the automated formatting bothers them feel free to comment indicating file names and I'll move spaces within comments to make the formatting cleaner and use comments to force block formatting as I have done for other case where formatting looked bad. BUG= R=efortuna@google.com Review-Url: https://codereview.chromium.org/2771453003 .
54 lines
1.8 KiB
Dart
54 lines
1.8 KiB
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library RealTimeCommunicationTest;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
import 'package:unittest/html_individual_config.dart';
|
|
import 'dart:html';
|
|
|
|
main() {
|
|
useHtmlIndividualConfiguration();
|
|
|
|
group('supported', () {
|
|
test('supported', () {
|
|
expect(RtcPeerConnection.supported, true);
|
|
});
|
|
});
|
|
|
|
group('functionality', () {
|
|
// More thorough testing of this API requires the user to
|
|
// explicitly click "allow this site to access my camera and/or microphone."
|
|
// or particularly allow that site to always have those permission on each
|
|
// computer the test is run. For more through tests, see
|
|
// interactive_test.dart.
|
|
if (RtcPeerConnection.supported) {
|
|
test('peer connection', () {
|
|
var pc = new RtcPeerConnection({
|
|
'iceServers': [
|
|
{'url': 'stun:216.93.246.18:3478'}
|
|
]
|
|
});
|
|
expect(pc is RtcPeerConnection, isTrue);
|
|
// TODO(efortuna): Uncomment this test when RTCPeerConnection correctly
|
|
// implements EventListener in Firefox (works correctly in nightly, so
|
|
// it's coming!).
|
|
//pc.onIceCandidate.listen((candidate) {});
|
|
});
|
|
|
|
test('ice candidate', () {
|
|
var candidate =
|
|
new RtcIceCandidate({'sdpMLineIndex': 1, 'candidate': 'hello'});
|
|
expect(candidate is RtcIceCandidate, isTrue);
|
|
});
|
|
|
|
test('session description', () {
|
|
var description =
|
|
new RtcSessionDescription({'sdp': 'foo', 'type': 'offer'});
|
|
expect(description is RtcSessionDescription, isTrue);
|
|
});
|
|
}
|
|
});
|
|
}
|