Skip to content

Commit 8245745

Browse files
authored
feature #108 Add compatibility with Symfony 5 (pamil)
This PR was merged into the 2.1-dev branch. Discussion ---------- Fixes #103. Commits ------- 019557e Try to run tests with Behat @ dev-master
2 parents 8c54ffe + 019557e commit 8245745

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ jobs:
1515
-
1616
php: '7.1'
1717
env: SYMFONY_VERSION=5.0.*
18-
allow_failures:
19-
-
20-
env: SYMFONY_VERSION=5.0.*
21-
fast_finish: true
2218

2319
cache:
2420
directories:
@@ -31,10 +27,14 @@ install:
3127
- composer require symfony/dependency-injection:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
3228
- composer require symfony/http-kernel:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
3329
- composer require symfony/proxy-manager-bridge:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
30+
3431
- composer require --dev symfony/browser-kit:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
3532
- composer require --dev symfony/framework-bundle:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
3633
- composer require --dev symfony/process:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
3734
- composer require --dev symfony/yaml:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
35+
36+
- if [ "$SYMFONY_VERSION" = "5.0.*" ]; then composer require --dev behat/behat:dev-master --no-update --no-scripts --prefer-dist; fi
37+
3838
- composer update --prefer-dist
3939

4040
script:

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"symfony/proxy-manager-bridge": "^3.4|^4.4|^5.0"
1919
},
2020
"require-dev": {
21-
"behat/mink": "^1.7",
22-
"behat/mink-browserkit-driver": "^1.3",
23-
"behat/mink-extension": "^2.2",
21+
"friends-of-behat/mink": "^1.7",
22+
"friends-of-behat/mink-browserkit-driver": "^1.3",
23+
"friends-of-behat/mink-extension": "^2.2",
2424
"behat/mink-selenium2-driver": "^1.3",
2525
"friends-of-behat/page-object-extension": "^0.3.1",
2626
"friends-of-behat/service-container-extension": "^1.0",

features/browserkit_integration/browserkit_integration.feature

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,14 @@ Feature: BrowserKit integration
3131
use Behat\Behat\Context\Context;
3232
use FriendsOfBehat\SymfonyExtension\Mink\MinkParameters;
3333
use Psr\Container\ContainerInterface;
34+
use Symfony\Component\BrowserKit\AbstractBrowser;
3435
use Symfony\Component\BrowserKit\Client;
3536
3637
final class SomeContext implements Context {
38+
/** @var Client|AbstractBrowser */
3739
private $client;
3840
39-
public function __construct(Client $client)
41+
public function __construct($client)
4042
{
4143
$this->client = $client;
4244
}
@@ -75,6 +77,9 @@ Feature: BrowserKit integration
7577
autowire: true
7678
autoconfigure: true
7779
80+
bind:
81+
$client: "@test.client"
82+
7883
App\Tests\SomeContext: ~
7984
"""
8085
When I run Behat

phpstan.neon

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ parameters:
77
- '/Cannot call method [a-zA-Z0-9]+\(\) on Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface|null\./'
88
- '/Method FriendsOfBehat\\SymfonyExtension\\Context\\Environment\\InitializedSymfonyExtensionEnvironment::bindCallee\(\) should return callable/'
99
- '/Strict comparison using === between 0\|1 and 2 will always evaluate to false\./'
10+
- '/Class Symfony\\Component\\BrowserKit\\Client not found\./'
11+
- '/Class Symfony\\Component\\BrowserKit\\AbstractBrowser not found\./'
12+
- '/Parameter \#1 \$client of method Behat\\Mink\\Driver\\BrowserKitDriver::__construct\(\) expects/'

src/Driver/SymfonyDriver.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace FriendsOfBehat\SymfonyExtension\Driver;
66

77
use Behat\Mink\Driver\BrowserKitDriver;
8+
use Symfony\Component\BrowserKit\AbstractBrowser;
89
use Symfony\Component\BrowserKit\Client;
910
use Symfony\Component\HttpKernel\KernelInterface;
1011

@@ -25,10 +26,11 @@ public function __construct(KernelInterface $kernel, ?string $baseUrl)
2526
/** @var object $testClient */
2627
$testClient = $kernel->getContainer()->get('test.client');
2728

28-
if (!$testClient instanceof Client) {
29+
if (!$testClient instanceof Client && !$testClient instanceof AbstractBrowser) {
2930
throw new \RuntimeException(sprintf(
30-
'Service "test.client" should be an instance of "%s", "%s" given.',
31+
'Service "test.client" should be an instance of "%s" or "%s", "%s" given.',
3132
Client::class,
33+
AbstractBrowser::class,
3234
get_class($testClient)
3335
));
3436
}

0 commit comments

Comments
 (0)