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

Unified Diff: pkg/analyzer/test/source/embedder_test.dart

Issue 1612393002: fix embedder on Windows - fixes #25498 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
Index: pkg/analyzer/test/source/embedder_test.dart
diff --git a/pkg/analyzer/test/source/embedder_test.dart b/pkg/analyzer/test/source/embedder_test.dart
index 9ee278e2ebc19173f232dc3fc83ed05cd9a706ac..f1d35efd59cf93476228a107357e0fe3ea5d8a18 100644
--- a/pkg/analyzer/test/source/embedder_test.dart
+++ b/pkg/analyzer/test/source/embedder_test.dart
@@ -4,16 +4,20 @@
library analyzer.test.source.embedder_test;
+import 'dart:core' hide Resource;
+
+import 'package:analyzer/file_system/file_system.dart';
import 'package:analyzer/file_system/memory_file_system.dart';
import 'package:analyzer/source/embedder.dart';
-import 'package:analyzer/src/generated/java_io.dart';
import 'package:analyzer/src/generated/source.dart';
+import 'package:analyzer/src/util/absolute_path.dart';
+import 'package:path/path.dart' as path;
import 'package:unittest/unittest.dart';
import '../utils.dart';
main() {
- initializeTestEnvironment();
+ initializeTestEnvironment(path.context);
group('EmbedderUriResolverTest', () {
setUp(() {
buildResourceProvider();
@@ -27,20 +31,20 @@ main() {
});
test('test_NoEmbedderYamls', () {
var locator = new EmbedderYamlLocator({
- 'fox': [resourceProvider.getResource('/empty')]
+ 'fox': [pathTranslator.getResource('/empty')]
});
expect(locator.embedderYamls.length, equals(0));
});
test('test_EmbedderYaml', () {
var locator = new EmbedderYamlLocator({
- 'fox': [resourceProvider.getResource('/tmp')]
+ 'fox': [pathTranslator.getResource('/tmp')]
});
var resolver = new EmbedderUriResolver(locator.embedderYamls);
- expectResolved(dartUri, filePath) {
+ expectResolved(dartUri, posixPath) {
Source source = resolver.resolveAbsolute(Uri.parse(dartUri));
expect(source, isNotNull, reason: dartUri);
- expect(source.fullName, filePath.replaceAll('/', JavaFile.separator));
+ expect(source.fullName, posixToOSPath(posixPath));
}
// We have four mappings.
@@ -58,7 +62,7 @@ main() {
});
test('test_restoreAbsolute', () {
var locator = new EmbedderYamlLocator({
- 'fox': [resourceProvider.getResource('/tmp')]
+ 'fox': [pathTranslator.getResource('/tmp')]
});
var resolver = new EmbedderUriResolver(locator.embedderYamls);
@@ -75,36 +79,25 @@ main() {
expect(restoreUri.path, equals(split[1]));
}
- try {
- expectRestore('dart:deep');
- expectRestore('dart:deep/file.dart', 'dart:deep');
- expectRestore('dart:deep/part.dart');
- expectRestore('dart:deep/deep/file.dart');
- if (JavaFile.separator == '\\') {
- // See https://github.com/dart-lang/sdk/issues/25498
- fail('expected to fail on Windows');
- }
- } catch (_) {
- // Test is broken on Windows, but should run elsewhere
- if (JavaFile.separator != '\\') {
- rethrow;
- }
- }
+ expectRestore('dart:deep');
+ expectRestore('dart:deep/file.dart', 'dart:deep');
+ expectRestore('dart:deep/part.dart');
+ expectRestore('dart:deep/deep/file.dart');
});
test('test_EmbedderSdk_fromFileUri', () {
var locator = new EmbedderYamlLocator({
- 'fox': [resourceProvider.getResource('/tmp')]
+ 'fox': [pathTranslator.getResource('/tmp')]
});
var resolver = new EmbedderUriResolver(locator.embedderYamls);
var sdk = resolver.dartSdk;
- expectSource(String filePath, String dartUri) {
- var uri = Uri.parse(filePath);
+ expectSource(String posixPath, String dartUri) {
+ var uri = Uri.parse(posixToOSFileUri(posixPath));
var source = sdk.fromFileUri(uri);
- expect(source, isNotNull, reason: filePath);
+ expect(source, isNotNull, reason: posixPath);
expect(source.uri.toString(), dartUri);
- expect(source.fullName, filePath.replaceAll('/', JavaFile.separator));
+ expect(source.fullName, posixPath);
}
expectSource('/tmp/slippy.dart', 'dart:fox');
@@ -113,27 +106,27 @@ main() {
});
test('test_EmbedderSdk_getSdkLibrary', () {
var locator = new EmbedderYamlLocator({
- 'fox': [resourceProvider.getResource('/tmp')]
+ 'fox': [pathTranslator.getResource('/tmp')]
});
var resolver = new EmbedderUriResolver(locator.embedderYamls);
var sdk = resolver.dartSdk;
var lib = sdk.getSdkLibrary('dart:fox');
expect(lib, isNotNull);
- expect(lib.path, '/tmp/slippy.dart');
+ expect(lib.path, posixToOSPath('/tmp/slippy.dart'));
expect(lib.shortName, 'fox');
});
test('test_EmbedderSdk_mapDartUri', () {
var locator = new EmbedderYamlLocator({
- 'fox': [resourceProvider.getResource('/tmp')]
+ 'fox': [pathTranslator.getResource('/tmp')]
});
var resolver = new EmbedderUriResolver(locator.embedderYamls);
var sdk = resolver.dartSdk;
- expectSource(String dartUri, String filePath) {
+ expectSource(String dartUri, String posixPath) {
var source = sdk.mapDartUri(dartUri);
- expect(source, isNotNull, reason: filePath);
+ expect(source, isNotNull, reason: posixPath);
expect(source.uri.toString(), dartUri);
- expect(source.fullName, filePath.replaceAll('/', JavaFile.separator));
+ expect(source.fullName, posixToOSPath(posixPath));
}
expectSource('dart:fox', '/tmp/slippy.dart');
@@ -143,15 +136,18 @@ main() {
});
}
-MemoryResourceProvider resourceProvider;
+ResourceProvider resourceProvider;
+TestPathTranslator pathTranslator;
buildResourceProvider() {
- resourceProvider = new MemoryResourceProvider();
- resourceProvider.newFolder('/empty');
- resourceProvider.newFolder('/tmp');
- resourceProvider.newFile(
- '/tmp/_embedder.yaml',
- r'''
+ var rawProvider = new MemoryResourceProvider(isWindows: isWindows);
+ resourceProvider = new TestResourceProvider(rawProvider);
+ pathTranslator = new TestPathTranslator(rawProvider)
+ ..newFolder('/empty')
+ ..newFolder('/tmp')
+ ..newFile(
+ '/tmp/_embedder.yaml',
+ r'''
embedder_libs:
"dart:fox": "slippy.dart"
"dart:bear": "grizzly.dart"
@@ -163,4 +159,111 @@ embedder_libs:
clearResourceProvider() {
resourceProvider = null;
+ pathTranslator = null;
+}
+
+// TODO(danrubel) if this approach works well for running tests
+// in a platform specific way, then move all of the following functionality
+// into a separate test utility library.
+
+bool get isWindows => path.Style.platform == path.Style.windows;
+
+/**
+ * Translate the given posixPath to a path appropriate for the
+ * platform on which the tests are executing.
+ */
+String posixToOSPath(String posixPath) {
+ if (posixPath.contains('\\')) {
+ fail('Expected posix path, but found $posixPath');
+ }
+ if (isWindows) {
+ String windowsPath = posixPath.replaceAll('/', '\\');
+ if (posixPath.startsWith('/')) {
+ return 'C:$windowsPath';
+ }
+ return windowsPath;
+ }
+ return posixPath;
+}
+
+/**
+ * Translate the given posixPath to a file URI appropriate for the
+ * platform on which the tests are executing.
+ */
+String posixToOSFileUri(String posixPath) {
+ expect(posixPath, startsWith('/'), reason: 'Expected absolute posix path');
+ return isWindows ? 'file://C:$posixPath' : 'file://$posixPath';
+}
+
+/**
+ * A convenience utility for setting up a test [MemoryResourceProvider].
+ * All supplied paths are assumed to be in [path.posix] format
+ * and are automatically translated to [path.context].
+ *
+ * This class intentionally does not implement [ResourceProvider]
+ * directly or indirectly so that it cannot be used as a resource provider.
+ * We do not want functionality under test to interact with a resource provider
+ * that automatically translates paths.
+ */
+class TestPathTranslator {
+ final MemoryResourceProvider _provider;
+
+ TestPathTranslator(this._provider);
+
+ Resource getResource(String posixPath) =>
+ _provider.getResource(posixToOSPath(posixPath));
+
+ File newFile(String posixPath, String content) =>
+ _provider.newFile(posixToOSPath(posixPath), content);
+
+ Folder newFolder(String posixPath) =>
+ _provider.newFolder(posixToOSPath(posixPath));
+}
+
+/**
+ * A resource provider for testing that asserts that any supplied paths
+ * are appropriate for the OS platform on which the tests are running.
+ */
+class TestResourceProvider implements ResourceProvider {
+ final ResourceProvider _provider;
+
+ TestResourceProvider(this._provider) {
+ expect(_provider.absolutePathContext.separator, isWindows ? '\\' : '/');
+ }
+
+ @override
+ AbsolutePathContext get absolutePathContext => _provider.absolutePathContext;
+
+ @override
+ File getFile(String path) => _provider.getFile(_assertPath(path));
+
+ @override
+ Folder getFolder(String path) => _provider.getFolder(_assertPath(path));
+
+ @override
+ Resource getResource(String path) => _provider.getResource(_assertPath(path));
+
+ @override
+ Folder getStateLocation(String pluginId) =>
+ _provider.getStateLocation(pluginId);
+
+ @override
+ path.Context get pathContext => _provider.pathContext;
+
+ /**
+ * Assert that the given path is valid for the OS platform on which the
+ * tests are running.
+ */
+ String _assertPath(String path) {
+ if (isWindows) {
+ if (path.contains('/')) {
+ fail('Expected windows path, but found: $path');
+ }
+ } else {
+ if (path.contains('\\')) {
+ fail('Expected posix path, but found: $path');
+ }
+ }
+ return path;
+ }
}

Powered by Google App Engine
This is Rietveld 408576698