Behat 3 + Symfony 3 带有命名空间的上下文不起作用,当没有工作时



我有以下目录结构:

composer.json
behat.yml
src
|--AppBundle
   |--Features
      |--example.feature
      |--Context
         |--FeatureContext.php

和下面的behat.yml

default:
  autoload:
    '': 'src/AppBundle/Features/Context'
  suites:
    default:
      paths: ['src/AppBundle/Features']
      contexts:
        - FeatureContext:
          session: '@session'
    # and extensions standard for Symphony

FeatureContext.php包含

<?php
//namespace AppBundleFeaturesContext;
use BehatBehatContextContext;
use BehatMinkExtensionContextMinkContext;
/**
 * Defines application features from the specific context.
 */
class FeatureContext extends MinkContext implements Context
{   ...   }

有注释的命名空间。当我运行behat时,现在可以正确地找到上下文。当我取消命名空间的注释时,出现错误:

[Behat Behat 环境例外 ContextNotFoundException]
没有找到FeatureContext上下文类,无法使用。

如何使其工作时命名空间FeatureContext.php是未注释的?我不太了解PSR-0和PSR-4,但如果问题可以与此连接,我附加composer.json的片段。

"autoload": {
    "psr-4": {
        "": "src/"
    },
    "classmap": [
        "app/AppKernel.php",
        "app/AppCache.php"
    ]
},
"autoload-dev": {
    "psr-4": {
        "Tests\": "tests/"
    }
},

我在寻找编码的最佳实践,所以如果我在做一些不好的事情,我投票给适当的建议。

  • 我似乎应该在FeatureContext.php中有命名空间,不是吗?
  • 我似乎不应该在composer中使用PSR-0。json,我应该吗?

看一下下面的例子。完整的例子在这里:http://www.inanzzz.com/index.php/post/l41o/testing-a-basic-auth-symfony-api-with-behat3你也可以在这里找到更多的例子:http://www.inanzzz.com/index.php/posts/behat

注1:您可以直接访问上下文文件中的session,因此无需注入它。您可能需要使用implements KernelAwareContextimplements KernelAwareInterfaceimplements ContainerAwareInterface。看看上面的博文就知道了。

注2:你不需要autoload-dev在作曲家。一点也不爽。把它扔掉

composer.json

注意:使用新版本!

{
    "require-dev": {
        "behat/behat": "3.0.15",
        "behat/symfony2-extension": "2.1.0",
        "behat/mink": "1.7.0",
        "behat/mink-extension": "2.1.0",
        "behat/mink-browserkit-driver": "1.3.0"
    },
}

behat.yml

default:
    extensions:
        BehatSymfony2Extension: ~
        BehatMinkExtension:
            base_url: http://your_local_app_domain.com/app_test.php/
            sessions:
                symfony2:
                    symfony2: ~
    suites:
        api:
            type: symfony_bundle
            bundle: ApplicationApiBundle
            mink_session: symfony2
            contexts:
                - ApplicationApiBundleFeaturesContextFeatureContext:
                    param: 'whatever'

FeatureContext.php

namespace ApplicationApiBundleFeaturesContext;
use BehatMinkExtensionContextMinkContext;
class FeatureContext extends MinkContext
{
    private $param;
    public function __construct($param)
    {
        $this->param = $param;
    }
    ......
}

$ bin/behat --suite=api @ApplicationApiBundle/YourFeature.feature

相关内容

  • 没有找到相关文章

最新更新