Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for multiple full paths on macos #2276

Merged
merged 22 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions pkgs/test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Fix dart2wasm tests on windows.
* Increase SDK constraint to ^3.5.0-311.0.dev.
* Support running Node.js tests compiled with dart2wasm.
* Allow `firefox` or `firefox-bin` executable name on macOS.

## 1.25.8

Expand Down
5 changes: 4 additions & 1 deletion pkgs/test/lib/src/runner/browser/default_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ final defaultSettings = UnmodifiableMapView({
),
Runtime.firefox: ExecutableSettings(
linuxExecutable: 'firefox',
macOSExecutable: '/Applications/Firefox.app/Contents/MacOS/firefox-bin',
macOSExecutables: [
'/Applications/Firefox.app/Contents/MacOS/firefox-bin',
'/Applications/Firefox.app/Contents/MacOS/firefox'
],
windowsExecutable: r'Mozilla Firefox\firefox.exe',
environmentOverride: 'FIREFOX_EXECUTABLE'),
Runtime.safari: ExecutableSettings(
Expand Down
34 changes: 27 additions & 7 deletions pkgs/test/lib/src/runner/executable_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ class ExecutableSettings {
/// looked up on the system path. It may not be relative.
final String? _linuxExecutable;

/// The path to the executable on Mac OS.
/// Potential commands to execute on Mac OS.
natebosch marked this conversation as resolved.
Show resolved Hide resolved
///
/// This may be an absolute path or a basename, in which case it will be
/// looked up on the system path. It may not be relative.
final String? _macOSExecutable;
/// The values may be an absolute path, or a basename.
/// The chosen command will be the first value from this list which either is
/// a full path that exists, or is a basename. When a basename is included it
/// should always be at the end of the list because it will always terminate
/// the search through the list. Relative paths are not allowed.
final List<String>? _macOSExectuables;

/// The path to the executable on Windows.
///
Expand All @@ -45,7 +48,15 @@ class ExecutableSettings {
if (envVariable != null) return envVariable;
}

if (Platform.isMacOS) return _macOSExecutable!;
if (Platform.isMacOS) {
if (_macOSExectuables case final paths?) {
for (final path in paths) {
if (p.basename(path) == path) return path;
if (p.isAbsolute(path) && File(path).existsSync()) return path;
}
}
throw ArgumentError('Missing macOsExecutable');
natebosch marked this conversation as resolved.
Show resolved Hide resolved
}
if (!Platform.isWindows) return _linuxExecutable!;
final windowsExecutable = _windowsExecutable!;
if (p.isAbsolute(windowsExecutable)) return windowsExecutable;
Expand Down Expand Up @@ -177,12 +188,14 @@ class ExecutableSettings {
{Iterable<String>? arguments,
String? linuxExecutable,
String? macOSExecutable,
List<String>? macOSExecutables,
String? windowsExecutable,
String? environmentOverride,
bool? headless})
: arguments = arguments == null ? const [] : List.unmodifiable(arguments),
_linuxExecutable = linuxExecutable,
_macOSExecutable = macOSExecutable,
_macOSExectuables =
_normalizeMacExecutable(macOSExecutable, macOSExecutables),
_windowsExecutable = windowsExecutable,
_environmentOverride = environmentOverride,
_headless = headless;
Expand All @@ -192,6 +205,13 @@ class ExecutableSettings {
arguments: arguments.toList()..addAll(other.arguments),
headless: other._headless ?? _headless,
linuxExecutable: other._linuxExecutable ?? _linuxExecutable,
macOSExecutable: other._macOSExecutable ?? _macOSExecutable,
macOSExecutables: other._macOSExectuables ?? _macOSExectuables,
windowsExecutable: other._windowsExecutable ?? _windowsExecutable);
}

List<String>? _normalizeMacExecutable(
jakemac53 marked this conversation as resolved.
Show resolved Hide resolved
String? singleArgument, List<String>? listArgument) {
if (listArgument != null) return listArgument;
if (singleArgument != null) return [singleArgument];
return null;
}