| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library WindowNSMETest; | |
| 6 import "package:expect/expect.dart"; | |
| 7 import 'package:unittest/unittest.dart'; | |
| 8 import 'package:unittest/html_config.dart'; | |
| 9 import 'dart:html' as dom; | 5 import 'dart:html' as dom; |
| 10 | 6 |
| 7 import 'package:expect/minitest.dart'; |
| 8 |
| 11 // Not defined in dom.Window. | 9 // Not defined in dom.Window. |
| 12 foo(x) => x; | 10 foo(x) => x; |
| 13 | 11 |
| 14 class Unused { | 12 class Unused { |
| 15 foo(x) => 'not $x'; | 13 foo(x) => 'not $x'; |
| 16 } | 14 } |
| 17 | 15 |
| 18 int inscrutable(int x) => x == 0 ? 0 : x | inscrutable(x & (x - 1)); | 16 int inscrutable(int x) => x == 0 ? 0 : x | inscrutable(x & (x - 1)); |
| 19 | 17 |
| 20 main() { | 18 main() { |
| 21 useHtmlConfiguration(); | 19 var things = <dynamic>[new Unused(), dom.window]; |
| 22 var things = [new Unused(), dom.window]; | |
| 23 | 20 |
| 24 test('windowNonMethod', () { | 21 test('windowNonMethod', () { |
| 25 var win = things[inscrutable(1)]; | 22 var win = things[inscrutable(1)]; |
| 26 final message = foo("Hello World"); | 23 final message = foo("Hello World"); |
| 27 try { | 24 expect(() => win.foo(message), throwsNoSuchMethodError); |
| 28 String x = win.foo(message); | |
| 29 expect(false, isTrue, reason: 'Should not reach here: $x'); | |
| 30 } on NoSuchMethodError catch (e) { | |
| 31 // Expected exception. | |
| 32 } on Exception catch (e) { | |
| 33 expect(false, isTrue, reason: 'Wrong exception: $e'); | |
| 34 } | |
| 35 }); | 25 }); |
| 36 | 26 |
| 37 test('foo', () { | 27 test('foo', () { |
| 38 var win = things[inscrutable(0)]; | 28 var win = things[inscrutable(0)]; |
| 39 String x = win.foo('bar'); | 29 String x = win.foo('bar'); |
| 40 expect(x, 'not bar'); | 30 expect(x, 'not bar'); |
| 41 }); | 31 }); |
| 42 | 32 |
| 43 // Use dom.window direclty in case the compiler does type inference. | 33 // Use dom.window directly in case the compiler does type inference. |
| 44 test('windowNonMethod2', () { | 34 test('windowNonMethod2', () { |
| 45 final message = foo("Hello World"); | 35 final message = foo("Hello World"); |
| 46 try { | 36 expect(() => (dom.window as dynamic).foo(message), |
| 47 String x = dom.window.foo(message); | 37 throwsNoSuchMethodError); |
| 48 expect(false, isTrue, reason: 'Should not reach here: $x'); | |
| 49 } on NoSuchMethodError catch (e) { | |
| 50 // Expected exception. | |
| 51 } on Exception catch (e) { | |
| 52 expect(false, isTrue, reason: 'Wrong exception: $e'); | |
| 53 } | |
| 54 }); | 38 }); |
| 55 } | 39 } |
| OLD | NEW |