Unverified Commit f03ac0be authored by Yegor's avatar Yegor Committed by GitHub

start and stop chromedriver once per sub-shard; do not wait for it to quit (#69443)

* start and stop chromedriver once per sub-shard; do not wait for it to quit

* enable web_long_running_tests but keep them as flaky
parent f2a25c5b
...@@ -816,8 +816,10 @@ Future<void> _runWebLongRunningTests() async { ...@@ -816,8 +816,10 @@ Future<void> _runWebLongRunningTests() async {
() => _runGalleryE2eWebTest('profile', canvasKit: true), () => _runGalleryE2eWebTest('profile', canvasKit: true),
() => _runGalleryE2eWebTest('release'), () => _runGalleryE2eWebTest('release'),
() => _runGalleryE2eWebTest('release', canvasKit: true), () => _runGalleryE2eWebTest('release', canvasKit: true),
].map(_withChromeDriver).toList(); ];
await _ensureChromeDriverIsRunning();
await _selectIndexedSubshard(tests, kWebLongRunningTestShardCount); await _selectIndexedSubshard(tests, kWebLongRunningTestShardCount);
await _stopChromeDriver();
} }
// The `chromedriver` process created by this test. // The `chromedriver` process created by this test.
...@@ -826,22 +828,11 @@ Future<void> _runWebLongRunningTests() async { ...@@ -826,22 +828,11 @@ Future<void> _runWebLongRunningTests() async {
// process is reused and this variable remains null. // process is reused and this variable remains null.
Command _chromeDriver; Command _chromeDriver;
/// Creates a shard runner that runs the given [originalRunner] with ChromeDriver
/// enabled.
ShardRunner _withChromeDriver(ShardRunner originalRunner) {
return () async {
try {
await _ensureChromeDriverIsRunning();
await originalRunner();
} finally {
await _stopChromeDriver();
}
};
}
Future<bool> _isChromeDriverRunning() async { Future<bool> _isChromeDriverRunning() async {
try { try {
(await Socket.connect('localhost', 4444)).destroy(); final RawSocket socket = await RawSocket.connect('localhost', 4444);
socket.shutdown(SocketDirection.both);
await socket.close();
return true; return true;
} on SocketException { } on SocketException {
return false; return false;
...@@ -879,11 +870,8 @@ Future<void> _stopChromeDriver() async { ...@@ -879,11 +870,8 @@ Future<void> _stopChromeDriver() async {
if (_chromeDriver == null) { if (_chromeDriver == null) {
return; return;
} }
print('Stopping chromedriver');
_chromeDriver.process.kill(); _chromeDriver.process.kill();
while (await _isChromeDriverRunning()) {
await Future<void>.delayed(const Duration(milliseconds: 100));
print('Waiting for chromedriver to stop.');
}
} }
/// Exercises the old gallery in a browser for a long period of time, looking /// Exercises the old gallery in a browser for a long period of time, looking
......
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
"name": "Linux web_long_running_tests", "name": "Linux web_long_running_tests",
"repo":"flutter", "repo":"flutter",
"task_name":"web_long_running_tests", "task_name":"web_long_running_tests",
"enabled":false, "enabled":true,
"run_if":["dev/", "packages/", "bin/"] "run_if":["dev/", "packages/", "bin/"]
}, },
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment