Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6166363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:19:34+00:00 2026-05-23T22:19:34+00:00

Anyone has been using Behat with Zend Framework? Any examples on how to use

  • 0

Anyone has been using Behat with Zend Framework? Any examples on how to use both?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T22:19:35+00:00Added an answer on May 23, 2026 at 10:19 pm

    I got it working. It works with PHPUnit and Zend_Test so you can use all those nifty assertXYZ() methods. First, make sure you’ve got behat installed and available in your system $PATH. I did the following:

    sudo pear channel-discover pear.symfony.com
    sudo pear channel-discover pear.behat.org
    sudo pear install behat/behat
    

    Now, create a directory structure like so:

    features
        application
            ControllerTestCase.php
        bootstrap
            FeatureContext.php
        homepage.feature
    

    The features/application/ControllerTestCase.php class is typical of a Zend_Test testing implementation:

    <?php
    require_once 'Zend/Application.php';
    require_once 'Zend/Test/PHPUnit/ControllerTestCase.php';
    
    class ControllerTestCase extends Zend_Test_PHPUnit_ControllerTestCase {
    
        public $application;
    
        public function setUp() {
            $this->application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH 
                    . '/configs/application.ini');
            $this->bootstrap = array($this, 'appBootstrap');
            parent::setUp();
        }
    
        public function appBootstrap(){
            $this->application->bootstrap();
        }
    }
    

    The features/bootstrap/FeatureContext.php class is what Behat needs to bootstrap itself:

    <?php
    
    use Behat\Behat\Context\ClosuredContextInterface,
        Behat\Behat\Context\TranslatedContextInterface,
        Behat\Behat\Context\BehatContext,
        Behat\Behat\Exception\PendingException;
    use Behat\Gherkin\Node\PyStringNode,
        Behat\Gherkin\Node\TableNode;
    
    require_once 'PHPUnit/Autoload.php';
    require_once 'PHPUnit/Framework/Assert/Functions.php';
    
    define('APPLICATION_ENV', 'testing');
    define('APPLICATION_PATH', dirname(__FILE__) . '/../path/to/your/zf/application');
    
    set_include_path('.' . PATH_SEPARATOR . APPLICATION_PATH . '/../library'
            . PATH_SEPARATOR . get_include_path());
    
    require_once dirname(__FILE__) . '/../application/ControllerTestCase.php';
    
    class FeatureContext extends BehatContext {
    
        protected $app;
    
        /**
         * Initializes context.
         * Every scenario gets it's own context object.
         *
         * @param array $parameters context parameters (set up via behat.yml)
         */
        public function __construct(array $parameters) {
            $this->app = new ControllerTestCase();
            $this->app->setUp();
        }
    
        /**
         * @When /^I load the URL "([^"]*)"$/
         */
        public function iLoadTheURL($url) {
            $this->app->dispatch($url);
        }
    
        /**
         * @Then /^the module should be "([^"]*)"$/
         */
        public function theModuleShouldBe($desiredModule) {
            $this->app->assertModule($desiredModule);
        }
    
        /**
         * @Given /^the controller should be "([^"]*)"$/
         */
        public function theControllerShouldBe($desiredController) {
            $this->app->assertController($desiredController);
        }
    
        /**
         * @Given /^the action should be "([^"]*)"$/
         */
        public function theActionShouldBe($desiredAction) {
            $this->app->assertAction($desiredAction);
        }
    
        /**
         * @Given /^the page should contain a "([^"]*)" tag that contains "([^"]*)"$/
         */
        public function thePageShouldContainATagThatContains($tag, $content) {
            $this->app->assertQueryContentContains($tag, $content);
        }
    
        /**
         * @Given /^the action should not redirect$/
         */
        public function theActionShouldNotRedirect() {
            $this->app->assertNotRedirect();
        }
    
    }
    

    And now you can write features like features/homepage.feature:

    Feature: Homepage
      In order to know ZF works with Behat
      I need to see that the page loads.
    
    Scenario: Check the homepage
      Given I load the URL "/index"
      Then the module should be "default"
      And the controller should be "index"
      And the action should be "index"
      And the action should not redirect
      And the page should contain a "title" tag that contains "My Nifty ZF App"
    

    To run the tests, cd to the directory that contains the features folder, and type behat.

    Good luck!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My company has been using JIRA as a requirements tracking tool as well as
Has anyone been able to successfully unit test methods that are, by necessity, coupled
I've been using TortoiseSVN in a Windows environment for quite some time. It seems
I've been looking at using ExtJS Direct with ASP.NET MVC but it doesn't seem
I have noticed that after my Grails app has been deployed for about 2
Been looking around the web, but not found anything so far... can anyone help?
I'm currently writing a screen capture app for Windows and Linux using PyGTK, and
i've been busy upgrading our n* stack to a more recent version. We'd been
For the past year I've been working on some legacy code that was written
I am so lost on this. I am trying to use the publishUserAction feature

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.