Skip to content

Commit

Permalink
Merge pull request #57 from mpociot/cypress-10
Browse files Browse the repository at this point in the history
Add Cypress 10 support
  • Loading branch information
JeffreyWay authored Jun 27, 2022
2 parents 3356dc9 + 7c8f895 commit 9a9e5d2
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 25 deletions.
62 changes: 37 additions & 25 deletions src/CypressBoilerplateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Arr;

class CypressBoilerplateCommand extends Command
{
/**
* The name and signature of the console command.
*/
protected $signature = 'cypress:boilerplate { --config-path=cypress.json }';
protected $signature = 'cypress:boilerplate { --config-path=cypress.config.js } { --force : Recreate existing configuration file }';

/**
* The console command description.
Expand All @@ -35,12 +36,18 @@ public function __construct(protected Filesystem $files)
*/
public function handle()
{
if (!$this->files->exists(base_path('cypress'))) {
if (!$this->isCypressInstalled()) {
$this->requireCypressInstall();

return;
}

if (! $this->option('force') && $this->files->exists($this->cypressConfigPath())) {
$this->warn('Existing Cypress configuration file found. Please upgrade the file manually or overwrite changes using --force.');

return;
}

$this->cypressPath = trim(
strtolower($this->ask('Where should we put the cypress directory?', 'tests/cypress')),
'/'
Expand All @@ -58,12 +65,14 @@ protected function copyStubs(): void
{
$this->files->copyDirectory(__DIR__ . '/stubs/support', $this->cypressPath('support'));
$this->files->copyDirectory(__DIR__ . '/stubs/plugins', $this->cypressPath('plugins'));
$this->files->copyDirectory(__DIR__ . '/stubs/integration', $this->cypressPath('integration'));

$this->lineBreak();

$this->status('Updated', $this->cypressPath('support/index.js', false));
$this->status('Updated', $this->cypressPath('plugins/index.js', false));
$this->status('Created', $this->cypressPath('plugins/swap-env.js', false));
$this->status('Created', $this->cypressPath('integration/example.cy.js', false));
$this->status('Created', $this->cypressPath('support/laravel-commands.js', false));
$this->status('Created', $this->cypressPath('support/laravel-routes.js', false));
$this->status('Created', $this->cypressPath('support/assertions.js', false));
Expand All @@ -81,43 +90,36 @@ protected function copyStubs(): void
}

/**
* Set the initial cypress.json configuration for the project.
* Set the initial cypress.config.js configuration for the project.
*/
protected function createCypressConfig(): void
{
$config = [];
$configExists = $this->files->exists($this->cypressConfigPath());

if ($configExists) {
$config = json_decode($this->files->get($this->cypressConfigPath()), true);
}

$this->files->put(
$this->cypressConfigPath(),
json_encode($this->mergeCypressConfig($config), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)
$this->defaultCypressConfig()
);

$this->status($configExists ? 'Updated' : 'Created', $this->cypressConfigPath(false));
$this->status('Created', $this->cypressConfigPath(false));
}

/**
* Merge the user's current cypress.json config with this package's recommended defaults.
*/
protected function mergeCypressConfig(array $config = []): array
protected function defaultCypressConfig(array $config = []): string
{
return array_merge([
'baseUrl' => config('app.url'),
'chromeWebSecurity' => false,
'retries' => 2,
'defaultCommandTimeout' => 5000,
'watchForFileChanges' => true,
"integrationFolder" => $this->cypressPath('integration', false),
"pluginsFile" => $this->cypressPath('plugins/index.js', false),
"videosFolder" => $this->cypressPath('videos', false),
"supportFile" => $this->cypressPath('support/index.js', false),
"screenshotsFolder" => $this->cypressPath('screenshots', false),
"fixturesFolder" => $this->cypressPath('fixture', false)
], $config);
return str_replace(
[
'%baseUrl%',
'%cypressPath%',
],
[
config('app.url'),
$this->cypressPath('', false)
],
$this->files->get(__DIR__ . '/stubs/cypress.config.js')
);
}

/**
Expand Down Expand Up @@ -164,9 +166,19 @@ protected function requireCypressInstall()
Cypress not found. Please install it through npm and try again.
npm install cypress --save-dev && npx cypress open
npm install cypress --save-dev

EOT
);
}

/**
* Check if Cypress is added to the package.json file.
*/
protected function isCypressInstalled()
{
$package = json_decode($this->files->get(base_path('package.json')), true);

return Arr::get($package, 'devDependencies.cypress') || Arr::get($package, 'dependencies.cypress');
}
}
19 changes: 19 additions & 0 deletions src/stubs/cypress.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const { defineConfig } = require('cypress')

module.exports = defineConfig({
chromeWebSecurity: false,
retries: 2,
defaultCommandTimeout: 5000,
watchForFileChanges: false,
videosFolder: '%cypressPath%/videos',
screenshotsFolder: '%cypressPath%/screenshots',
fixturesFolder: '%cypressPath%/fixture',
e2e: {
setupNodeEvents(on, config) {
return require('./%cypressPath%/plugins/index.js')(on, config)
},
baseUrl: '%baseUrl%',
specPattern: '%cypressPath%/integration/**/*.cy.{js,jsx,ts,tsx}',
supportFile: '%cypressPath%/support/index.js',
},
})
7 changes: 7 additions & 0 deletions src/stubs/integration/example.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
describe('Example Test', () => {
it('shows a homepage', () => {
cy.visit('/');

cy.contains('Laravel');
});
});

0 comments on commit 9a9e5d2

Please sign in to comment.