OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, 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 import 'dart:io'; |
| 6 |
| 7 import 'package:path/path.dart' as p; |
| 8 import 'package:unittest/unittest.dart'; |
| 9 import 'package:unittest/src/runner/parse_metadata.dart'; |
| 10 |
| 11 String _sandbox; |
| 12 String _path; |
| 13 |
| 14 void main() { |
| 15 setUp(() { |
| 16 _sandbox = Directory.systemTemp.createTempSync('unittest_').path; |
| 17 _path = p.join(_sandbox, "test.dart"); |
| 18 }); |
| 19 |
| 20 tearDown(() { |
| 21 new Directory(_sandbox).deleteSync(recursive: true); |
| 22 }); |
| 23 |
| 24 test("returns empty metadata for an empty file", () { |
| 25 new File(_path).writeAsStringSync(""); |
| 26 var metadata = parseMetadata(_path); |
| 27 expect(metadata.testOn, isNull); |
| 28 }); |
| 29 |
| 30 test("ignores irrelevant annotations", () { |
| 31 new File(_path).writeAsStringSync("@Fblthp\n@Fblthp.foo"); |
| 32 var metadata = parseMetadata(_path); |
| 33 expect(metadata.testOn, isNull); |
| 34 }); |
| 35 |
| 36 test("ignores prefixed annotations", () { |
| 37 new File(_path).writeAsStringSync( |
| 38 "@foo.TestOn()\n" |
| 39 "@foo.TestOn.bar()\n" |
| 40 "@TestOn.foo.bar()\n" |
| 41 "@foo.bar.TestOn()"); |
| 42 var metadata = parseMetadata(_path); |
| 43 expect(metadata.testOn, isNull); |
| 44 }); |
| 45 |
| 46 test("parses a valid annotation", () { |
| 47 new File(_path).writeAsStringSync("@TestOn('foo')"); |
| 48 var metadata = parseMetadata(_path); |
| 49 expect(metadata.testOn, equals("foo")); |
| 50 }); |
| 51 |
| 52 group("throws an error for", () { |
| 53 test("a named constructor", () { |
| 54 new File(_path).writeAsStringSync("@TestOn.name('foo')"); |
| 55 expect(() => parseMetadata(_path), throwsFormatException); |
| 56 }); |
| 57 |
| 58 test("no argument list", () { |
| 59 new File(_path).writeAsStringSync("@TestOn"); |
| 60 expect(() => parseMetadata(_path), throwsFormatException); |
| 61 }); |
| 62 |
| 63 test("an empty argument list", () { |
| 64 new File(_path).writeAsStringSync("@TestOn()"); |
| 65 expect(() => parseMetadata(_path), throwsFormatException); |
| 66 }); |
| 67 |
| 68 test("a named argument", () { |
| 69 new File(_path).writeAsStringSync("@TestOn(expression: 'foo')"); |
| 70 expect(() => parseMetadata(_path), throwsFormatException); |
| 71 }); |
| 72 |
| 73 test("multiple arguments", () { |
| 74 new File(_path).writeAsStringSync("@TestOn('foo', 'bar')"); |
| 75 expect(() => parseMetadata(_path), throwsFormatException); |
| 76 }); |
| 77 |
| 78 test("a non-string argument", () { |
| 79 new File(_path).writeAsStringSync("@TestOn(123)"); |
| 80 expect(() => parseMetadata(_path), throwsFormatException); |
| 81 }); |
| 82 |
| 83 test("multiple @TestOns", () { |
| 84 new File(_path).writeAsStringSync("@TestOn('foo')\n@TestOn('bar')"); |
| 85 expect(() => parseMetadata(_path), throwsFormatException); |
| 86 }); |
| 87 }); |
| 88 } |
OLD | NEW |