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

Unified Diff: packages/barback/test/asset_id_test.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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 | « packages/barback/pubspec.yaml ('k') | packages/barback/test/asset_set_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/barback/test/asset_id_test.dart
diff --git a/packages/barback/test/asset_id_test.dart b/packages/barback/test/asset_id_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..16d29aee65519934d223e9f888426258745d1f64
--- /dev/null
+++ b/packages/barback/test/asset_id_test.dart
@@ -0,0 +1,66 @@
+// Copyright (c) 2013, 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 barback.test.asset_id_test;
+
+import 'package:barback/barback.dart';
+import 'package:unittest/unittest.dart';
+
+import 'utils.dart';
+
+main() {
+ initConfig();
+ group("constructor", () {
+ test("normalizes the path", () {
+ var id = new AssetId("app", r"path/././/to/drop/..//asset.txt");
+ expect(id.path, equals("path/to/asset.txt"));
+ });
+
+ test("normalizes backslashes to slashes in the path", () {
+ var id = new AssetId("app", r"path\to/asset.txt");
+ expect(id.path, equals("path/to/asset.txt"));
+ });
+ });
+
+ group("parse", () {
+ test("parses the package and path", () {
+ var id = new AssetId.parse("package|path/to/asset.txt");
+ expect(id.package, equals("package"));
+ expect(id.path, equals("path/to/asset.txt"));
+ });
+
+ test("throws if there are multiple '|'", () {
+ expect(() => new AssetId.parse("app|path|wtf"), throwsFormatException);
+ });
+
+ test("throws if the package name is empty '|'", () {
+ expect(() => new AssetId.parse("|asset.txt"), throwsFormatException);
+ });
+
+ test("throws if the path is empty '|'", () {
+ expect(() => new AssetId.parse("app|"), throwsFormatException);
+ });
+
+ test("normalizes the path", () {
+ var id = new AssetId.parse(r"app|path/././/to/drop/..//asset.txt");
+ expect(id.path, equals("path/to/asset.txt"));
+ });
+
+ test("normalizes backslashes to slashes in the path", () {
+ var id = new AssetId.parse(r"app|path\to/asset.txt");
+ expect(id.path, equals("path/to/asset.txt"));
+ });
+ });
+
+ test("equals another ID with the same package and path", () {
+ expect(new AssetId.parse("foo|asset.txt"), equals(
+ new AssetId.parse("foo|asset.txt")));
+
+ expect(new AssetId.parse("foo|asset.txt"), isNot(equals(
+ new AssetId.parse("bar|asset.txt"))));
+
+ expect(new AssetId.parse("foo|asset.txt"), isNot(equals(
+ new AssetId.parse("bar|other.txt"))));
+ });
+}
« no previous file with comments | « packages/barback/pubspec.yaml ('k') | packages/barback/test/asset_set_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698