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

  • Home
  • SEARCH
  • 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 8596215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:37:23+00:00 2026-06-12T00:37:23+00:00

What I’m trying to do is to functional test my bundle (a reusable one).

  • 0

What I’m trying to do is to functional test my bundle (a reusable one). More in deep:

  • Create a request to a given url /my/url
  • Check that MyParamConverter is invoked and converts the request into an instance of MyObject
  • Check that the controller throws my.event

As per documentation I should extend Symfony\Bundle\FrameworkBundle\Test\WebTestCase and create a new client:

    $client  = static::createClient();
    $crawler = $client->request('GET', '/my/url');

Doing it this way, which bundles are loaded? How can I specify a configuration file to use in the environment (assuming it’s default to test)?

EDIT: Ok, time to explain better my question. I’m wring a reusable bundle, say AcmeMessagingBundle. Now I want to functional test it. Scenario is a call to /my/url:

public function testReceiveApiRoute()
{
    $client = $this->createClient();

    /** @var $route \Symfony\Component\Routing\Route */
    $route  = $client->getContainer()->get('router')
        ->getRouteCollection()->get('acme_messaging_receive');

    $this->assertNotNull($route);
    $this->assertEquals('POST', $route->getRequirement('_method'));
    $this->assertEquals('acme_messaging.controller.api:receive',
        $route->getDefault('_controller'));
}

/**
 * @depends testReceiveApiRoute
 */
public funcion testReceiveApiWorkflow()
{
    $client = $this->createClient();

    // Make a POST request
    $request = Request::create('/my/route', 'POST', array(
        'a' => 'value'
    ));

    // Request is convered in MyObject instance and that my.event is fired
}

With this test, app/config_test.yml is loaded (say “main config file”). Question is:

Shouldn’t test be “isolated”, meaning not using the main config file? What if my bundle is tested by another person with an empty app/config_test.yml? Test would fail…

The test will fail also with a prefixed route. If routing.xml from AcmeMessagingBundle is imported with a prefix, testReceiveApiWorkflow is going to fail!

  • 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-06-12T00:37:24+00:00Added an answer on June 12, 2026 at 12:37 am

    Using WebTestCase will use your own AppKernel with the test environment.

    You can either add a new env to your app, and use it in the WebTestCase like this:

    $client = static::createClient(array('environment' => 'new_env'));
    

    A safer practice would be to create an app sanboxed in your bundle’s tests.
    You can use JMSCommandBundle to generate it for you.
    You could also create the sanboxed application looking at bundles using this trick: https://github.com/schmittjoh/JMSPaymentCoreBundle/tree/master/Tests/Functional

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

Sidebar

Related Questions

I'm trying to create an if statement in PHP that prevents a single post
Basically, what I'm trying to create is a page of div tags, each has
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the
I am trying to render a haml file in a javascript response like so:

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.