In PhpStorm, I've got an issue with path resolution for the bootstrap file.
I don't know why the path in which Behat runs is always the folder `features`.
So Behat always fails trying to look for `/project/root/path/features/config/bootstrap.php`.
With this fix, bootstrap file will be resolved based on the base path.
Plus, people will be allowed to use the parameter `%paths.base%` to define a custom bootstrap file path.
E.g.:
```yaml
default:
extensions:
FriendsOfBehat\SymfonyExtension:
bootstrap: '%paths.base%/custom/bootstrap.php'
```
112 lines
3.3 KiB
Gherkin
112 lines
3.3 KiB
Gherkin
Feature: Loading configured bootstrap file
|
|
|
|
Scenario: Loading configured bootstrap file
|
|
Given a working Symfony application with SymfonyExtension configured
|
|
And a Behat configuration containing:
|
|
"""
|
|
default:
|
|
extensions:
|
|
FriendsOfBehat\SymfonyExtension:
|
|
bootstrap: custom/bootstrap.php
|
|
|
|
suites:
|
|
default:
|
|
contexts:
|
|
- App\Tests\SomeContext
|
|
"""
|
|
And a boostrap file "custom/bootstrap.php" containing:
|
|
"""
|
|
<?php
|
|
|
|
putenv("CUSTOM_VARIABLE=lol2");
|
|
$_SERVER['CUSTOM_VARIABLE'] = $_ENV['CUSTOM_VARIABLE'] = 'lol2';
|
|
"""
|
|
And a context file "tests/SomeContext.php" containing:
|
|
"""
|
|
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
use Behat\Behat\Context\Context;
|
|
|
|
final class SomeContext implements Context {
|
|
private $parameter;
|
|
|
|
public function __construct(?string $parameter = null) { $this->parameter = $parameter; }
|
|
|
|
/** @Then the passed parameter should be :expected */
|
|
public function parameterShouldBe(string $expected): void { assert($this->parameter === $expected); }
|
|
}
|
|
"""
|
|
And a YAML services file containing:
|
|
"""
|
|
services:
|
|
App\Tests\SomeContext:
|
|
public: true
|
|
arguments:
|
|
- "%env(CUSTOM_VARIABLE)%"
|
|
"""
|
|
And a feature file containing:
|
|
"""
|
|
Feature:
|
|
Scenario:
|
|
Then the passed parameter should be "lol2"
|
|
"""
|
|
When I run Behat
|
|
Then it should pass
|
|
|
|
Scenario: Loading configured bootstrap file with parameter resolution
|
|
Given a working Symfony application with SymfonyExtension configured
|
|
And a Behat configuration containing:
|
|
"""
|
|
default:
|
|
extensions:
|
|
FriendsOfBehat\SymfonyExtension:
|
|
bootstrap: '%paths.base%/custom/bootstrap.php'
|
|
|
|
suites:
|
|
default:
|
|
contexts:
|
|
- App\Tests\SomeContext
|
|
"""
|
|
And a boostrap file "custom/bootstrap.php" containing:
|
|
"""
|
|
<?php
|
|
|
|
putenv("CUSTOM_VARIABLE=lol2");
|
|
$_SERVER['CUSTOM_VARIABLE'] = $_ENV['CUSTOM_VARIABLE'] = 'lol2';
|
|
"""
|
|
And a context file "tests/SomeContext.php" containing:
|
|
"""
|
|
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
use Behat\Behat\Context\Context;
|
|
|
|
final class SomeContext implements Context {
|
|
private $parameter;
|
|
|
|
public function __construct(?string $parameter = null) { $this->parameter = $parameter; }
|
|
|
|
/** @Then the passed parameter should be :expected */
|
|
public function parameterShouldBe(string $expected): void { assert($this->parameter === $expected); }
|
|
}
|
|
"""
|
|
And a YAML services file containing:
|
|
"""
|
|
services:
|
|
App\Tests\SomeContext:
|
|
public: true
|
|
arguments:
|
|
- "%env(CUSTOM_VARIABLE)%"
|
|
"""
|
|
And a feature file containing:
|
|
"""
|
|
Feature:
|
|
Scenario:
|
|
Then the passed parameter should be "lol2"
|
|
"""
|
|
When I run Behat
|
|
Then it should pass
|