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

Unified Diff: pkg/analyzer/test/src/task/yaml_test.dart

Issue 1622313003: Add minimal yaml support to the engine (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address Comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/test/src/task/test_all.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/task/yaml_test.dart
diff --git a/pkg/analyzer/test/src/task/yaml_test.dart b/pkg/analyzer/test/src/task/yaml_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2678a9cc1adada40f19b1de7d88c6b77466b868d
--- /dev/null
+++ b/pkg/analyzer/test/src/task/yaml_test.dart
@@ -0,0 +1,69 @@
+// Copyright (c) 2016, 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 analyzer.test.src.task.yaml_test;
+
+import 'package:analyzer/src/generated/source.dart';
+import 'package:analyzer/src/task/yaml.dart';
+import 'package:analyzer/task/yaml.dart';
+import 'package:unittest/unittest.dart';
+import 'package:yaml/yaml.dart';
+
+import '../../reflective_tests.dart';
+import '../../utils.dart';
+import '../context/abstract_context.dart';
+
+main() {
+ initializeTestEnvironment();
+ runReflectiveTests(ParseYamlTaskTest);
+}
+
+isInstanceOf isParseYamlTask = new isInstanceOf<ParseYamlTask>();
+
+@reflectiveTest
+class ParseYamlTaskTest extends AbstractContextTest {
+ Source source;
+
+ test_perform() {
+ _performParseTask(r'''
+rules:
+ style_guide:
+ camel_case_types: false
+''');
+ expect(outputs, hasLength(3));
+ YamlDocument document = outputs[YAML_DOCUMENT];
+ expect(document, isNotNull);
+ var value = document.contents.value;
+ expect(value, new isInstanceOf<Map>());
+ expect(value['rules']['style_guide']['camel_case_types'], isFalse);
+ expect(outputs[YAML_ERRORS], hasLength(0));
+ LineInfo lineInfo = outputs[YAML_LINE_INFO];
+ expect(lineInfo, isNotNull);
+ expect(lineInfo.getOffsetOfLine(0), 0);
+ expect(lineInfo.getOffsetOfLine(1), 7);
+ expect(lineInfo.getOffsetOfLine(2), 22);
+ expect(lineInfo.getOffsetOfLine(3), 50);
+ }
+
+ test_perform_doesNotExist() {
+ _performParseTask(null);
+ expect(outputs, hasLength(3));
+ YamlDocument document = outputs[YAML_DOCUMENT];
+ expect(document, isNotNull);
+ expect(document.contents.value, isNull);
+ expect(outputs[YAML_ERRORS], hasLength(1));
+ LineInfo lineInfo = outputs[YAML_LINE_INFO];
+ expect(lineInfo, isNotNull);
+ expect(lineInfo.getOffsetOfLine(0), 0);
+ }
+
+ void _performParseTask(String content) {
+ if (content == null) {
+ source = resourceProvider.getFile('/test.yaml').createSource();
+ } else {
+ source = newSource('/test.yaml', content);
+ }
+ computeResult(source, YAML_DOCUMENT, matcher: isParseYamlTask);
+ }
+}
« no previous file with comments | « pkg/analyzer/test/src/task/test_all.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698