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

[5.0] Implement ChromeDriverCommand #643

Merged
merged 4 commits into from
Apr 29, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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 LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) Taylor Otwell
Copyright (c) Jonas Staudenmeir
driesvints marked this conversation as resolved.
Show resolved Hide resolved

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
driesvints marked this conversation as resolved.
Show resolved Hide resolved
driesvints marked this conversation as resolved.
Show resolved Hide resolved
"ext-zip": "*",
"facebook/webdriver": "^1.3",
"nesbot/carbon": "^1.20|^2.0",
"illuminate/console": "~5.7.0|~5.8.0|~5.9.0",
Expand Down
6 changes: 3 additions & 3 deletions src/Chrome/ChromeProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Laravel\Dusk\Chrome;

use RuntimeException;
use Illuminate\Support\Str;
use Laravel\Dusk\OperatingSystem;
use Symfony\Component\Process\Process;

class ChromeProcess
Expand Down Expand Up @@ -87,7 +87,7 @@ protected function chromeEnvironment()
*/
protected function onWindows()
{
return PHP_OS === 'WINNT' || Str::contains(php_uname(), 'Microsoft');
return OperatingSystem::onWindows();
}

/**
Expand All @@ -97,6 +97,6 @@ protected function onWindows()
*/
protected function onMac()
{
return PHP_OS === 'Darwin';
return OperatingSystem::onMac();
}
}
220 changes: 220 additions & 0 deletions src/Console/ChromeDriverCommand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,220 @@
<?php

namespace Laravel\Dusk\Console;

use ZipArchive;
use Illuminate\Console\Command;
use Laravel\Dusk\OperatingSystem;

class ChromeDriverCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'dusk:chrome-driver {version?} {--all : Install a ChromeDriver binary for every OS}';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Install the ChromeDriver binary';

/**
* URL to the index page.
*
* @var string
*/
protected $indexUrl = 'https://chromedriver.storage.googleapis.com';

/**
* URL to the latest release version.
*
* @var string
*/
protected $versionUrl = 'https://chromedriver.storage.googleapis.com/LATEST_RELEASE_%d';

/**
* URL to the ChromeDriver download.
*
* @var string
*/
protected $downloadUrl = 'https://chromedriver.storage.googleapis.com/%s/chromedriver_%s.zip';

/**
* Download slugs for the available operating systems.
*
* @var array
*/
protected $slugs = [
'linux' => 'linux64',
'mac' => 'mac64',
'win' => 'win32',
];

/**
* The legacy versions for the ChromeDriver.
*
* @var array
*/
protected $legacyVersions = [
43 => '2.20',
44 => '2.20',
45 => '2.20',
46 => '2.21',
47 => '2.21',
48 => '2.21',
49 => '2.22',
50 => '2.22',
51 => '2.23',
52 => '2.24',
53 => '2.26',
54 => '2.27',
55 => '2.28',
56 => '2.29',
57 => '2.29',
58 => '2.31',
59 => '2.32',
60 => '2.33',
61 => '2.34',
62 => '2.35',
63 => '2.36',
64 => '2.37',
65 => '2.38',
66 => '2.40',
67 => '2.41',
68 => '2.42',
69 => '2.44',
];

/**
* Path to the bin directory.
*
* @var string
*/
protected $directory = __DIR__.'/../../bin/';

/**
* Execute the console command.
*
* @return void
*/
public function handle()
{
$version = $this->version();
$all = $this->option('all');
$currentOS = OperatingSystem::id();

foreach ($this->slugs as $os => $slug) {
if ($all || ($os === $currentOS)) {
$archive = $this->download($version, $slug);

$binary = $this->extract($archive);

$this->rename($binary, $os);
}
}

$message = 'ChromeDriver %s successfully installed for version %s.';

$this->info(sprintf($message, $all ? 'binaries' : 'binary', $version));
}

/**
* Get the desired ChromeDriver version.
*
* @return string
*/
protected function version()
{
$version = $this->argument('version');

if ($version) {
if (! ctype_digit($version)) {
return $version;
}

$version = (int) $version;

if ($version < 70) {
return $this->legacyVersions[$version];
}
} else {
$version = $this->latestChromeVersion();
}

$url = sprintf($this->versionUrl, $version);

return trim(file_get_contents($url));
}

/**
* Get the latest major Chrome version.
*
* @return int
*/
protected function latestChromeVersion()
{
$index = file_get_contents($this->indexUrl);

preg_match('#.*<Key>LATEST_RELEASE_(\d+)</Key>#', $index, $matches);

return (int) $matches[1];
}

/**
* Download the ChromeDriver archive.
*
* @param string $version
* @param string $slug
* @return string
*/
protected function download($version, $slug)
{
$archive = $this->directory.'chromedriver.zip';
$url = sprintf($this->downloadUrl, $version, $slug);

file_put_contents($archive, fopen($url, 'r'));

return $archive;
}

/**
* Extract the ChromeDriver binary from the archive and delete the archive.
*
* @param string $archive
* @return string
*/
protected function extract($archive)
{
$zip = new ZipArchive;
$zip->open($archive);
$zip->extractTo($this->directory);

$binary = $zip->getNameIndex(0);

$zip->close();

unlink($archive);

return $binary;
}

/**
* Rename the ChromeDriver binary and make it executable.
*
* @param string $binary
* @param string $os
* @return void
*/
protected function rename($binary, $os)
{
$newName = str_replace('chromedriver', 'chromedriver-'.$os, $binary);

rename($this->directory.$binary, $this->directory.$newName);

chmod($this->directory.$newName, 0755);
}
}
4 changes: 4 additions & 0 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ public function handle()
}

$this->info('Dusk scaffolding installed successfully.');

$this->info('Installing ChromeDriver binaries...');

$this->call('dusk:chrome-driver', ['--all']);
driesvints marked this conversation as resolved.
Show resolved Hide resolved
}

/**
Expand Down
3 changes: 2 additions & 1 deletion src/DuskServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function boot()
* Register any package services.
*
* @return void
* @throws Exception
* @throws \Exception
*/
public function register()
{
Expand All @@ -51,6 +51,7 @@ public function register()
Console\MakeCommand::class,
Console\PageCommand::class,
Console\ComponentCommand::class,
Console\ChromeDriverCommand::class,
]);
}
}
Expand Down
38 changes: 38 additions & 0 deletions src/OperatingSystem.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

namespace Laravel\Dusk;

use Illuminate\Support\Str;

class OperatingSystem
{
/**
* Returns the current OS identifier.
*
* @return string
*/
public static function id()
{
return static::onWindows() ? 'win' : (static::onMac() ? 'mac' : 'linux');
}

/**
* Determine if the operating system is Windows or Windows Subsystem for Linux.
*
* @return bool
*/
public static function onWindows()
{
return PHP_OS === 'WINNT' || Str::contains(php_uname(), 'Microsoft');
}

/**
* Determine if the operating system is macOS.
*
* @return bool
*/
public static function onMac()
{
return PHP_OS === 'Darwin';
}
}