blob: ed2c9b2f8d39675a12c4b2106d9a1bd96601e0b3 [file] [log] [blame]
// Copyright (c) 2017, 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.
import 'package:file/memory.dart';
import 'package:test/test.dart';
import 'common_tests.dart';
void main() {
group('MemoryFileSystem unix style', () {
MemoryFileSystem fs;
setUp(() {
fs = MemoryFileSystem();
});
runCommonTests(
() => fs,
skip: <String>[
'File > open', // Not yet implemented
],
);
group('toString', () {
test('File', () {
expect(fs.file('/foo').toString(), "MemoryFile: '/foo'");
});
test('Directory', () {
expect(fs.directory('/foo').toString(), "MemoryDirectory: '/foo'");
});
test('Link', () {
expect(fs.link('/foo').toString(), "MemoryLink: '/foo'");
});
});
});
group('MemoryFileSystem windows style', () {
MemoryFileSystem fs;
setUp(() {
fs = MemoryFileSystem(style: FileSystemStyle.windows);
});
runCommonTests(
() => fs,
root: () => fs.style.root,
skip: <String>[
'File > open', // Not yet implemented
],
);
group('toString', () {
test('File', () {
expect(fs.file('C:\\foo').toString(), "MemoryFile: 'C:\\foo'");
});
test('Directory', () {
expect(
fs.directory('C:\\foo').toString(), "MemoryDirectory: 'C:\\foo'");
});
test('Link', () {
expect(fs.link('C:\\foo').toString(), "MemoryLink: 'C:\\foo'");
});
});
});
}