Skip to content

Commit

Permalink
feature #2952 Enabling profiler in test (danieledangeli)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Enabling profiler in test

| Q             | A
| ------------- | ---
| Doc fix?   | yes
| New docs?  | no
| Applies to  |  2.3
| Fixed tickets | no

Some people have open issues about how enabling the profiler in test enviroment. The option ``enable profiler`` working correctly but some people don't want enabling the data collecting in each tests. So you can define in "config_test.yml" the collect parameter to false. The data will collect only in tests that call
$client->enableProfiler();

Commits
-------

d03f39d Added configuration to enable profiler in test
  • Loading branch information
weaverryan committed Jul 3, 2014
2 parents e9a1a32 + d03f39d commit 7c71b18
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions book/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,52 @@ To get the Profiler for the last request, do the following::
For specific details on using the profiler inside a test, see the
:doc:`/cookbook/testing/profiling` cookbook entry.

To avoid collecting data in each test you can set the ``collect`` parameter
in the configuration:

.. configuration-block::

.. code-block:: yaml
# app/config/config_test.yml
# ...
framework:
profiler:
enabled: true
collect: false
.. code-block:: xml
<!-- app/config/config.xml -->
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:framework="http://symfony.com/schema/dic/symfony"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/symfony http://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
<!-- ... -->
<framework:config>
<framework:profiler enabled="true" collect="false" />
</framework:config>
</container>
.. code-block:: php
// app/config/config.php
// ...
$container->loadFromExtension('framework', array(
'profiler' => array(
'enabled' => true,
'collect' => false,
),
));
In this way only tests that call ``enableProfiler()`` will collect data.

Redirecting
~~~~~~~~~~~

Expand Down

0 comments on commit 7c71b18

Please sign in to comment.