blob: 6936fd46a7a50dec4333b42615b96ef52eade6b1 [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.
/// @assertion Future<File> create(
/// {bool recursive = false,
/// bool exclusive = false}
/// )
/// Creates the file.
///
/// Returns a Future<File> that completes with the file when it has been created
///
/// If recursive is false, the default, the file is created only if all
/// directories in its path already exist. If recursive is true, any
/// non-existing parent paths are created first.
///
/// If exclusive is true and to-be-created file already exists, this operation
/// completes the future with a PathExistsException.
///
/// If exclusive is false, existing files are left untouched by create. Calling
/// create on an existing file still might fail if there are restrictive
/// permissions on the file.
///
/// Completes the future with a FileSystemException if the operation fails.
///
/// @description Checks that if `recursive` is `false` and there are
/// non-existing path components, then operation fails
/// @author sgrekhov@unipro.ru
import "dart:io";
import "../../../Utils/expect.dart";
import "../file_utils.dart";
main() async {
await inSandbox(_main);
}
_test(Directory sandbox, {bool exclusive = false}) async {
String dirPath = getTempDirectoryPath(parent: sandbox);
String filePath = dirPath + Platform.pathSeparator + getTempFileName();
File file = new File(filePath);
await file.create(recursive: false, exclusive: exclusive).then(
(File created) {
Expect.fail("FileSystemException is expected");
}, onError: (e) {
Expect.isTrue(e is FileSystemException);
asyncEnd();
});
}
void _main(Directory sandbox) async {
asyncStart(2);
await _test(sandbox, exclusive: false);
await _test(sandbox, exclusive: true);
}