Skip to content

Commit 7764712

Browse files
authored
bug #119 Fix a weird bug causing failures in Sylius (pamil)
This PR was merged into the 2.1-dev branch. Discussion ---------- Related to Sylius/Sylius#11029. Damn, this was really hard to fix. Commits ------- 9609cc1 Fix a weird bug causing failures in Sylius
2 parents ac19ef6 + 9609cc1 commit 7764712

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

src/Mink/Mink.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace FriendsOfBehat\SymfonyExtension\Mink;
6+
7+
use Behat\Mink\Mink as BaseMink;
8+
9+
class Mink extends BaseMink
10+
{
11+
/**
12+
* Very weird bug happens when Mink is exposed as a LAZY service in tested application.
13+
* In that case, the destructor might be called at any random time. If it is called
14+
* while we're in the middle of any Mink-related operation, it'll leave the used Mink session
15+
* in an invalid state. Therefore, not stopping all the sessions while destructing Mink
16+
* saves our sanity.
17+
*/
18+
public function __destruct()
19+
{
20+
// Intentionally left empty
21+
}
22+
}

src/ServiceContainer/SymfonyExtension.php

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use FriendsOfBehat\SymfonyExtension\Context\Environment\Handler\ContextServiceEnvironmentHandler;
1515
use FriendsOfBehat\SymfonyExtension\Driver\Factory\SymfonyDriverFactory;
1616
use FriendsOfBehat\SymfonyExtension\Listener\KernelOrchestrator;
17+
use FriendsOfBehat\SymfonyExtension\Mink\Mink;
1718
use FriendsOfBehat\SymfonyExtension\Mink\MinkParameters;
1819
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
1920
use Symfony\Component\DependencyInjection\Alias;
@@ -91,6 +92,10 @@ public function load(ContainerBuilder $container, array $config): void
9192
public function process(ContainerBuilder $container): void
9293
{
9394
$this->processEnvironmentHandler($container);
95+
96+
if ($this->minkExtensionFound) {
97+
$container->getDefinition(MinkExtension::MINK_ID)->setClass(Mink::class);
98+
}
9499
}
95100

96101
private function registerMinkDriver(ExtensionManager $extensionManager): void

0 commit comments

Comments
 (0)