flutter/packages/flutter_tools/test/os_utils_test.dart

39 lines
959 B
Dart
Raw Normal View History

2015-11-02 09:50:40 +00:00
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io';
import 'package:flutter_tools/src/base/os.dart';
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
2015-11-02 09:50:40 +00:00
main() => defineTests();
defineTests() {
group('OperatingSystemUtils', () {
Directory temp;
setUp(() {
2015-11-10 21:18:34 +00:00
temp = Directory.systemTemp.createTempSync('flutter_tools');
2015-11-02 09:50:40 +00:00
});
tearDown(() {
temp.deleteSync(recursive: true);
});
test('makeExecutable', () {
File file = new File(path.join(temp.path, 'foo.script'));
2015-11-02 09:50:40 +00:00
file.writeAsStringSync('hello world');
os.makeExecutable(file);
2015-11-02 09:50:40 +00:00
// Skip this test on windows.
if (!Platform.isWindows) {
String mode = file.statSync().modeString();
// rwxr--r--
expect(mode.substring(0, 3), endsWith('x'));
}
});
});
}