flutter_flutter/lib/web_ui/dev/firefox.dart
Nurhan Turgut 3b97d3a329
[web] [test] Adding firefox install functionality to the test platform (#13272)
* Add Firefox installing functionality to test platform. For Linux only. Refactor test platform code

* remove download.dart. Not complete for now

* uncomment firefox.dart. Adding new CL parameters.

* Licence headers added.

* adding more comments to firefox_installer

* adding test for firefox download

* address pr comments. change directory for test in .cirrus.yml

* change directory for test_web_engine_firefox_script

* removing the system test.
2019-10-23 14:41:49 -07:00

72 lines
2.2 KiB
Dart

// Copyright 2013 The Flutter 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:async';
import 'dart:io';
import 'package:pedantic/pedantic.dart';
import 'package:test_core/src/util/io.dart'; // ignore: implementation_imports
import 'browser.dart';
import 'firefox_installer.dart';
import 'common.dart';
/// A class for running an instance of Firefox.
///
/// Most of the communication with the browser is expected to happen via HTTP,
/// so this exposes a bare-bones API. The browser starts as soon as the class is
/// constructed, and is killed when [close] is called.
///
/// Any errors starting or running the process are reported through [onExit].
class Firefox extends Browser {
@override
final name = 'Firefox';
@override
final Future<Uri> remoteDebuggerUrl;
static String version;
/// Starts a new instance of Firefox open to the given [url], which may be a
/// [Uri] or a [String].
factory Firefox(Uri url, {bool debug = false}) {
assert(version != null);
var remoteDebuggerCompleter = Completer<Uri>.sync();
return Firefox._(() async {
final BrowserInstallation installation = await getOrInstallFirefox(
version,
infoLog: isCirrus ? stdout : DevNull(),
);
// A good source of various Firefox Command Line options:
// https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options#Browser
//
var dir = createTempDir();
var args = [
url.toString(),
if (!debug) '--headless',
'-width $kMaxScreenshotWidth'
'-height $kMaxScreenshotHeight',
'-new-window',
'-new-instance',
'--start-debugger-server $kDevtoolsPort',
];
final Process process = await Process.start(installation.executable, args);
remoteDebuggerCompleter.complete(getRemoteDebuggerUrl(
Uri.parse('http://localhost:$kDevtoolsPort')));
unawaited(process.exitCode
.then((_) => Directory(dir).deleteSync(recursive: true)));
return process;
}, remoteDebuggerCompleter.future);
}
Firefox._(Future<Process> startBrowser(), this.remoteDebuggerUrl)
: super(startBrowser);
}