情况
从现在开始,我想在我的symfony项目中使用BDD和Behat。当前项目是sf2.4,我正在努力使Behat 3正常工作。按照akut在the latest doc concerning behat3中的建议,我使用this post
问题
Behat 3似乎运行良好。但是,为了能够真正开始,我需要访问内核(容器,原则等...)。我尝试使用my_project,测试了为Behat复制ls示例的项目。但是,使用$ this-> container(),$ this-> kernel-> getContainer()总是会引发“待处理的异常”(代码在iShouldGet步骤停止):

public function iShouldGet(PyStringNode $string)
{
    //$container = $this->kernel->getContainer();
    //$container = $this->getContainer();
    //$doctrine = $this->getContainer()->get('doctrine');
    if ((string) $string !== $this->output) {
        throw new Exception(
            "Actual output is:\n" . $this->output
        );
    }
}
我试图在AcmeDemoBundle中创建相同的behat'ls'测试:
|Acme
    |Demo
        |Features
            |Context/FeatureContext.php
            ls.feature

但是,它会引发一个错误:
[Behat\Testwork\Tester\Exception\WrongPathsException]
No specifications found at path(s) `@AcmeDemoBundle`.
解决方案
可能是由于使用了Behat3,但我不确定。任何提示为什么会出现此问题/如何解决?总的来说,关于如何将behat集成到symfony2(2.4)项目中的好建议将不胜感激。
在此先多谢。
问候,

注意:这是我的文件:
behat.yml
# behat.yml
default:
  suites:
      my_suite:
          type: symfony_bundle
          bundle: AcmeDemoBundle
          mink_session: default
          mink_javascript_session: selenium2
  extensions:
      #Behat\MinkExtension\Extension:
      #Behat\MinkExtension\ServiceContainer\MinkExtension:
      Behat\MinkExtension:
          base_url: 'http://demo.com'
          # this will be the url of our application
          #base_url: 'http://wikipedia.org'
          sessions:
              default:
                  goutte: ~
              selenium2:
                  selenium2: ~
      Behat\Symfony2Extension: ~
app/autoload.php
<?php

use Doctrine\Common\Annotations\AnnotationRegistry;
use Composer\Autoload\ClassLoader;

/**
 * @var ClassLoader $loader
 */
$loader = require __DIR__.'/../vendor/autoload.php';

AnnotationRegistry::registerLoader(array($loader, 'loadClass'));


$loader->add('Behat\Gherkin',realpath(__DIR__.'/../vendor/behat/gherkin/src'));
$loader->add( 'Behat\Behat' ,realpath(__DIR__.'/../vendor/behat/behat/src'));
$loader->add('Behat\BehatBundle' ,realpath(__DIR__.'/../vendor/bundles'));

return $loader;

最佳答案

到目前为止,这一直对我有用。我为您的小 cucumber 添加了示例用法,因此非常简单。

use Behat\MinkExtension\Context\MinkContext;
use Behat\Symfony2Extension\Context\KernelAwareContext;
use Symfony\Component\HttpKernel\KernelInterface;

class FeatureContext extends MinkContext implements KernelAwareContext
{
    protected $kernel;

    public function setKernel(KernelInterface $kernelInterface)
    {
        $this->kernel = $kernelInterface;
    }

    /**
     * @Given /^I can access service container$/
     */
    public function iCanAccessServiceContainer()
    {
        $container = $this->kernel->getContainer();
        return $container->getParameter('whatever');
    }

    /**
     * @Given /^I can access entity manager$/
     */
    public function iCanAccessEntityManager()
    {
        $em = $this->kernel->getContainer()->get('doctrine')->getManager();
        // So on
    }

    /**
     * @Given /^I can access repository$/
     */
    public function iCanAccessRepository()
    {
        $em = $this->kernel->getContainer()->get('doctrine')->getManager();
        $repo = $em->getRepository('WhateverBundle:WhateverEntity');
        // So on
    }
}

关于symfony - Symfony2.4中的Behat 3(适用于原则),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23628608/

10-11 03:55