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

Side by Side Diff: tests/standalone/io/directory_uri_test.dart

Issue 57943002: Add fromUri constructor to File, Directory and Link (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review commetns Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/io/link.dart ('k') | tests/standalone/io/file_uri_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, 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:async_helper/async_helper.dart";
8 import "package:expect/expect.dart";
9
10 void testFromUri() {
11 asyncStart();
12 Directory.systemTemp.createTemp('directory_uri').then((temp) {
13 String dirname = temp.path + '/from_uri';
14 Uri dirUri = new Uri.file(dirname);
15 Directory dir = new Directory.fromUri(dirUri);
16 Expect.isTrue(dirUri.isAbsolute);
17 Expect.isTrue(dirUri.path.startsWith('/'));
18 dir.createSync();
19 Expect.isTrue(new Directory.fromUri(dirUri).existsSync());
20 Expect.isTrue(
21 new Directory.fromUri(Uri.base.resolveUri(dirUri)).existsSync());
22 Directory.current = temp.path;
23 Expect.isTrue(new Directory.fromUri(Uri.parse('from_uri')).existsSync());
24 Expect.isTrue(
25 new Directory.fromUri(Uri.base.resolve('from_uri')).existsSync());
26 dir.deleteSync();
27 temp.deleteSync(recursive: true);
28 asyncEnd();
29 });
30 }
31
32 void testFromUriUnsupported() {
33 Expect.throws(
34 () => new Directory.fromUri(
35 Uri.parse('http://localhost:8080/index.html')),
36 (e) => e is UnsupportedError);
37 Expect.throws(
38 () => new Directory.fromUri(Uri.parse('ftp://localhost/tmp/xxx')),
39 (e) => e is UnsupportedError);
40 Expect.throws(() => new Directory.fromUri(Uri.parse('name#fragment')),
41 (e) => e is UnsupportedError);
42 }
43
44 void main() {
45 testFromUri();
46 testFromUriUnsupported();
47 }
OLDNEW
« no previous file with comments | « sdk/lib/io/link.dart ('k') | tests/standalone/io/file_uri_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698