This repository has been archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
hautelook/AliceBundle 2.0 #27
Comments
Not really. Not that I'm not interested in it but I don't really use that extension anymore so whilst I'll gladly accept any PR I don't really want to actively work on it. That said if there is any upgrade, I think HautelookAliceBundle can be ditched for FidryAliceDataFixtures for this extension |
@goetas did you fixed your problem? |
yes, just wrote it on my own... was simpler than expected. Here it is <?php
namespace App\Tests\Behat\Context;
use Behat\Behat\Context\Context;
use Behat\Gherkin\Node\TableNode;
use Fidry\AliceDataFixtures\LoaderInterface;
use Fidry\AliceDataFixtures\Persistence\PurgeMode;
class FidryAliceDataFixturesLoaderContext implements Context
{
/**
* @var LoaderInterface
*/
private $loader;
public function __construct(LoaderInterface $loader)
{
$this->loader = $loader;
}
/**
* @Given the fixtures :fixturesFile are loaded
* @Given the fixtures file :fixturesFile is loaded
*
* @param string $fixturesFile Path to the fixtures
*/
public function thereAreFixtures($fixturesFile)
{
$this->loader->load([$fixturesFile]);
}
/**
* @Given the following fixtures are loaded:
* @Given the following fixtures files are loaded:
* @Given /^the following fixtures are loaded using the (append|delete|truncate) purger:$/
*
* @param TableNode $fixturesFiles Path to the fixtures
*/
public function thereAreSeveralFixtures(TableNode $fixtures, $purgeMode = null)
{
switch ((string)$purgeMode){
case 'append';
$purgeMode = PurgeMode::createNoPurgeMode();
break;
case 'truncate';
$purgeMode = PurgeMode::createTruncateMode();
break;
case 'delete';
case '';
$purgeMode = PurgeMode::createDeleteMode();
break;
default;
throw new \RuntimeException("Invalid purge mode");
break;
}
$fixturesFiles = [];
foreach ($fixtures->getRows() as $fixturesFileRow) {
$fixturesFiles[] = $fixturesFileRow[0];
}
$this->loader->load($fixturesFiles , $parameters = [], $objects = [], $purgeMode);
}
} thats it! |
it would be nice to have it as extension... but for my case worked good enough. |
Closed
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Any plan to have AliceBundleExtension compatible with hautelook/AliceBundle 2.0 ?
The text was updated successfully, but these errors were encountered: