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

Unified Diff: tests/standalone/io/resolve_symbolic_links_test.dart

Issue 23444037: dart:io | Change File.fullPath to FileSystemEntity.resolveSymbolicLinks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Documentation edits. Created 7 years, 3 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
« runtime/bin/directory.cc ('K') | « tests/standalone/io/file_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/resolve_symbolic_links_test.dart
diff --git a/tests/standalone/io/resolve_symbolic_links_test.dart b/tests/standalone/io/resolve_symbolic_links_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..eff1cd0d3ee29a0f75aaf7ec3af176404a5c9ac3
--- /dev/null
+++ b/tests/standalone/io/resolve_symbolic_links_test.dart
@@ -0,0 +1,145 @@
+// 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.
+//
+// Dart test program for testing FileSystemEntity.resolveSymbolicLinks
+
+import "package:expect/expect.dart";
+import "package:path/path.dart";
+import "package:async_helper/async_helper.dart";
+import 'dart:async';
+import 'dart:io';
+
+main() {
+ String testsDir = dirname(dirname(dirname(Platform.script)));
+ // All of these tests test that resolveSymbolicLinks gives a path
+ // that points to the same place as the original, and that it removes
+ // all links, .., and . segments, and that it produces an absolute path.
+ asyncTest(() => testFile(join(
+ testsDir, 'standalone', 'io', 'resolve_symbolic_links_test.dart')));
+ asyncTest(() => testFile(join(testsDir, 'standalone', 'io', '..', 'io',
+ 'resolve_symbolic_links_test.dart')));
+
+ asyncTest(() => testDir(join(testsDir, 'standalone', 'io')));
+ asyncTest(() => testDir(join(testsDir, 'lib', '..', 'standalone', 'io')));
+ // Test a relative path.
+ asyncTest(() => testDir('.'));
+ if (Platform.isWindows) {
+ asyncTest(() =>testFile(join('\\\\?\\$testsDir', 'standalone', 'io',
+ 'resolve_symbolic_links_test.dart')));
+ asyncTest(() => testDir('\\\\?\\$testsDir'));
+ }
+ asyncTest(() => new Directory('').createTemp().then((tempDir) {
+ String temp = tempDir.path;
+ return makeEntities(temp).then((_) => Future.wait(
+ [testFile(join(temp, 'dir1', 'file1')),
+ testFile(join(temp, 'link1', 'file2')),
+ testDir(join(temp, 'dir1', 'dir2', '..', '.', '..', 'dir1')),
+ testDir(join(temp, 'dir1', 'dir2', '..', '.', '..', 'dir1')),
+ testLink(join(temp, 'link1'))]))
+ .then((_) {
+ if (Platform.isWindows) {
+ // Windows applies '..' to a link without resolving the link first.
+ return Future.wait([
+ testFile(join(
+ temp, 'dir1', '..', 'link1', '..', 'dir1', 'dir2', 'file2')),
+ testDir(join(temp, 'dir1', '..', 'link1', '..', 'dir1')),
+ testLink(join(temp, 'link1', '..', 'link1'))]);
+ } else {
+ // Non-Windows platforms resolve the link before adding the '..'.
+ return Future.wait([
+ testFile(join(
+ temp, 'dir1', '..', 'link1', '..', 'dir2', 'file2')),
+ testDir(join(temp, 'dir1', '..', 'link1', '..', 'dir2')),
+ testLink(join(temp, 'link1', '..', '..', 'link1'))]);
+ }
+ })
+ .then((_) {
+ Directory.current = temp;
+ return Future.wait([
+ testFile('dir1/dir2/file2'), // Test forward slashes on Windows too.
+ testFile('link1/file2'),
+ testFile(join('dir1', '..', 'dir1', '.', 'file1')),
+ testDir('.'),
+ testDir('link1/.'),
+ testLink('link1')]);
+ })
+ .then((_) {
+ Directory.current = 'link1';
+ if (Platform.isWindows) {
+ return Future.wait([
+ testFile('file2'),
+ // Windows applies '..' to a link without resolving the link first.
+ testFile('..\\dir1\\file1'),
+ testDir('.'),
+ testDir('..'),
+ testLink('..\\link1')]);
+ } else {
+ return Future.wait([
+ testFile('file2'),
+ // On non-Windows the link is changed to dir1/dir2 before .. happens.
+ testFile('../dir2/file2'),
+ testDir('.'),
+ testDir('..'),
+ testLink('../../link1')]);
+ }
+ })
+ .whenComplete(() => tempDir.delete(recursive: true));
+ }));
+}
+
+Future makeEntities(String temp) {
+ return new Directory(join(temp, 'dir1', 'dir2')).create(recursive: true)
+ .then((_) => new File(join(temp, 'dir1', 'dir2', 'file2')).create())
+ .then((_) => new File(join(temp, 'dir1', 'file1')).create())
+ .then((_) => new Link(join(temp, 'link1'))
+ .create(join(temp, 'dir1', 'dir2')));
+}
+
+Future testFile(String name) {
+ // We test that f.resolveSymbolicLinks points to the same place
+ // as f, because the actual resolved path is not easily predictable.
+ // The location of the temp directory varies from system to system,
+ // and its path includes symbolic links on some systems.
+ //Expect.isTrue(FileSystemEntity.identicalSync(name,
+ // new File(name).resolveSymbolicLinksSync()));
+ return new File(name).resolveSymbolicLinks().then((String resolved) {
+ //Expect.isTrue(FileSystemEntity.identicalSync(name, resolved));
+ Expect.isTrue(isAbsolute(resolved));
+ // Test that resolveSymbolicLinks removes all links, .., and . segments.
+ Expect.isFalse(resolved.contains('..'));
+ Expect.isFalse(resolved.contains('./'));
+ Expect.isFalse(resolved.contains('link1'));
+ });
+}
+
+Future testDir(String name) {
+ Expect.isTrue(FileSystemEntity.identicalSync(name,
+ new Directory(name).resolveSymbolicLinksSync()));
+ return new Directory(name).resolveSymbolicLinks().then((String resolved) {
+ Expect.isTrue(FileSystemEntity.identicalSync(name, resolved));
+ Expect.isTrue(isAbsolute(resolved));
+ // Test that resolveSymbolicLinks removes all links, .., and . segments.
+ Expect.isFalse(resolved.contains('..'));
+ Expect.isFalse(resolved.contains('./'));
+ Expect.isFalse(resolved.contains('link1'));
+ });
+}
+
+Future testLink(String name) {
+ Expect.isFalse(FileSystemEntity.identicalSync(name,
+ new Link(name).resolveSymbolicLinksSync()));
+ Expect.isTrue(FileSystemEntity.identicalSync(new Link(name).targetSync(),
+ new Link(name).resolveSymbolicLinksSync()));
+ return new Link(name).resolveSymbolicLinks().then((String resolved) {
+ Expect.isFalse(FileSystemEntity.identicalSync(name, resolved));
+ Expect.isTrue(isAbsolute(resolved));
+ // Test that resolveSymbolicLinks removes all links, .., and . segments.
+ Expect.isFalse(resolved.contains('..'));
+ Expect.isFalse(resolved.contains('./'));
+ Expect.isFalse(resolved.contains('link1'));
+ return new Link(name).target()
+ .then((targetName) => FileSystemEntity.identical(targetName, resolved))
+ .then((identical) => Expect.isTrue(identical));
+ });
+}
« runtime/bin/directory.cc ('K') | « tests/standalone/io/file_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698