Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Side by Side Diff: test/codegen/lib/html/crypto_test.dart

Issue 1930043002: Add all dart:html tests from the sdk to test/codegen. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: ptal Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 library crypto_test;
6 import 'package:unittest/unittest.dart';
7 import 'package:unittest/html_individual_config.dart';
8 import 'dart:html';
9 import 'dart:typed_data';
10
11 main() {
12 useHtmlIndividualConfiguration();
13
14 group('supported', () {
15 test('supported', () {
16 expect(Crypto.supported, true);
17 });
18 });
19
20 group('functional', () {
21 if (Crypto.supported) {
22 // This will actually pass on FF since it has a Crypto API, but it is
23 // incompatible.
24 test('exists', () {
25 var crypto = window.crypto;
26 expect(crypto is Crypto, isTrue);
27 });
28
29 test('successful call', () {
30 var crypto = window.crypto;
31 var data = new Uint8List(100);
32 expect(data.every((e) => e == 0), isTrue);
33 crypto.getRandomValues(data);
34 // In theory this is flaky. However, in practice you will get 100 zeroes
35 // in a row from a cryptographically secure random number generator so
36 // rarely that we don't have to worry about it.
37 expect(data.any((e) => e != 0), isTrue);
38 });
39
40 test('type mismatch', () {
41 var crypto = window.crypto;
42 var data = new Float32List(100);
43 expect(() {
44 crypto.getRandomValues(data);
45 }, throws, reason: 'Only typed array views with integer types allowed');
46 });
47 }
48 });
49 }
OLDNEW
« no previous file with comments | « test/codegen/lib/html/cross_frame_test.dart ('k') | test/codegen/lib/html/css_rule_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698