Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 56 additions & 59 deletions pkgs/path/test/io_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,81 +43,78 @@ void main() {

test(
'uses the previous working directory if deleted',
() {
final dir = io.Directory.current.path;
try {
final temp = io.Directory.systemTemp.createTempSync('path_test');
final tempPath = temp.resolveSymbolicLinksSync();
io.Directory.current = temp;

// Call "current" once so that it can be cached.
expect(path.normalize(path.absolute(path.current)), equals(tempPath));

temp.deleteSync();

// Even though the directory no longer exists, no exception is thrown.
expect(path.normalize(path.absolute(path.current)), equals(tempPath));
} finally {
io.Directory.current = dir;
}
},
currentDirHelper(() {
final temp = io.Directory.systemTemp.createTempSync('path_test');
final tempPath = temp.resolveSymbolicLinksSync();
io.Directory.current = temp;

// Call "current" once so that it can be cached.
expect(path.normalize(path.absolute(path.current)), equals(tempPath));

temp.deleteSync();

// Even though the directory no longer exists, no exception is thrown.
expect(path.normalize(path.absolute(path.current)), equals(tempPath));
}),
//TODO: Figure out why this is failing on windows and fix!
skip: io.Platform.isWindows ? 'Untriaged failure on Windows' : false,
);
});

test('registers changes to the working directory', () {
test('registers changes to the working directory', currentDirHelper(() {
final dir = io.Directory.current.path;
try {
expect(path.absolute('foo/bar'), equals(path.join(dir, 'foo/bar')));
expect(path.absolute('foo/bar'), equals(path.join(dir, 'foo/bar')));
expect(
path.absolute('foo/bar'),
equals(path.context.join(dir, 'foo/bar')),
);

io.Directory.current = path.dirname(dir);
expect(
path.normalize(path.absolute('foo/bar')),
equals(path.normalize(path.join(dir, '../foo/bar'))),
);
expect(
path.normalize(path.absolute('foo/bar')),
equals(path.normalize(path.context.join(dir, '../foo/bar'))),
);
}));

// Regression test for #35. This tests against the *actual* working directory
// rather than just a custom context because we do some processing in
// [path.current] that has clobbered the root in the past.
test(
'absolute works on root working directory',
currentDirHelper(() {
io.sleep(const Duration(seconds: 2));
io.Directory.current = path.rootPrefix(path.current);
io.sleep(const Duration(seconds: 2));

expect(
path.absolute('foo/bar'),
equals(path.context.join(dir, 'foo/bar')),
path.relative(path.absolute('foo/bar'), from: path.current),
path.relative(path.absolute('foo/bar')),
);

io.Directory.current = path.dirname(dir);
expect(
path.normalize(path.absolute('foo/bar')),
equals(path.normalize(path.join(dir, '../foo/bar'))),
equals(path.normalize(path.join(path.current, '../foo/bar'))),
);

expect(
path.normalize(path.absolute('foo/bar')),
equals(path.normalize(path.context.join(dir, '../foo/bar'))),
equals(path.normalize(path.join(path.current, '../foo/bar'))),
);
} finally {
io.Directory.current = dir;
}
});

// Regression test for #35. This tests against the *actual* working directory
// rather than just a custom context because we do some processing in
// [path.current] that has clobbered the root in the past.
test(
'absolute works on root working directory',
() {
final dir = path.current;
try {
io.Directory.current = path.rootPrefix(path.current);

expect(
path.relative(path.absolute('foo/bar'), from: path.current),
path.relative(path.absolute('foo/bar')),
);

expect(
path.normalize(path.absolute('foo/bar')),
equals(path.normalize(path.join(path.current, '../foo/bar'))),
);

expect(
path.normalize(path.absolute('foo/bar')),
equals(path.normalize(path.join(path.current, '../foo/bar'))),
);
} finally {
io.Directory.current = dir;
}
},
}),
//TODO(kevmoo): figure out why this is failing on windows and fix!
skip: io.Platform.isWindows ? 'Untriaged failure on Windows' : null,
);
}

dynamic Function() currentDirHelper(dynamic Function() body) {
var savedCurrentDirectory = io.Directory.current;
return () => io.IOOverrides.runZoned(body,
getCurrentDirectory: () => savedCurrentDirectory,
setCurrentDirectory: (dir) {
savedCurrentDirectory = io.Directory(dir);
});
}