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

Unified Diff: pkg/yaml/test/utils.dart

Issue 812253002: Delete a bunch of packages that are now on GitHub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Un-delete http Created 6 years 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/yaml/pubspec.yaml ('k') | pkg/yaml/test/yaml_node_wrapper_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/yaml/test/utils.dart
diff --git a/pkg/yaml/test/utils.dart b/pkg/yaml/test/utils.dart
deleted file mode 100644
index 9c96ec10304b2602eea85d66c6ee9e56c48ba4e1..0000000000000000000000000000000000000000
--- a/pkg/yaml/test/utils.dart
+++ /dev/null
@@ -1,86 +0,0 @@
-// Copyright (c) 2014, 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 yaml.test.utils;
-
-import 'package:unittest/unittest.dart';
-import 'package:yaml/src/equality.dart' as equality;
-import 'package:yaml/yaml.dart';
-
-/// A matcher that validates that a closure or Future throws a [YamlException].
-final Matcher throwsYamlException = throwsA(new isInstanceOf<YamlException>());
-
-/// Returns a matcher that asserts that the value equals [expected].
-///
-/// This handles recursive loops and considers `NaN` to equal itself.
-Matcher deepEquals(expected) => predicate((actual) =>
- equality.deepEquals(actual, expected), "equals $expected");
-
-/// Constructs a new yaml.YamlMap, optionally from a normal Map.
-Map deepEqualsMap([Map from]) {
- var map = equality.deepEqualsMap();
- if (from != null) map.addAll(from);
- return map;
-}
-
-/// Asserts that a string containing a single YAML document produces a given
-/// value when loaded.
-void expectYamlLoads(expected, String source) {
- var actual = loadYaml(cleanUpLiteral(source));
- expect(actual, deepEquals(expected));
-}
-
-/// Asserts that a string containing a stream of YAML documents produces a given
-/// list of values when loaded.
-void expectYamlStreamLoads(List expected, String source) {
- var actual = loadYamlStream(cleanUpLiteral(source));
- expect(actual, deepEquals(expected));
-}
-
-/// Asserts that a string containing a single YAML document throws a
-/// [YamlException].
-void expectYamlFails(String source) {
- expect(() => loadYaml(cleanUpLiteral(source)), throwsYamlException);
-}
-
-/// Removes eight spaces of leading indentation from a multiline string.
-///
-/// Note that this is very sensitive to how the literals are styled. They should
-/// be:
-/// '''
-/// Text starts on own line. Lines up with subsequent lines.
-/// Lines are indented exactly 8 characters from the left margin.
-/// Close is on the same line.'''
-///
-/// This does nothing if text is only a single line.
-String cleanUpLiteral(String text) {
- var lines = text.split('\n');
- if (lines.length <= 1) return text;
-
- for (var j = 0; j < lines.length; j++) {
- if (lines[j].length > 8) {
- lines[j] = lines[j].substring(8, lines[j].length);
- } else {
- lines[j] = '';
- }
- }
-
- return lines.join('\n');
-}
-
-/// Indents each line of [text] so that, when passed to [cleanUpLiteral], it
-/// will produce output identical to [text].
-///
-/// This is useful for literals that need to include newlines but can't be
-/// conveniently represented as multi-line strings.
-String indentLiteral(String text) {
- var lines = text.split('\n');
- if (lines.length <= 1) return text;
-
- for (var i = 0; i < lines.length; i++) {
- lines[i] = " ${lines[i]}";
- }
-
- return lines.join("\n");
-}
« no previous file with comments | « pkg/yaml/pubspec.yaml ('k') | pkg/yaml/test/yaml_node_wrapper_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698