PHPSpec
With IntelliJ IDEA, you can practice behaviour-driven development by running specifications using the PHPSpec toolset.
Install the required plugins
This functionality relies on the PHP and PHPSpec BDD Framework plugins that should be installed and enabled in your IDE.
The plugins are available only in IntelliJ IDEA Ultimate.
Press Ctrl+Alt+S to open the IDE settings and select
.Switch to the Marketplace tab and use the search field to find the PHP and PHPSpec BDD Framework plugins.
Click Install and restart the IDE if prompted.
Before you start
Make sure the PHP interpreter is configured in IntelliJ IDEA on the PHP page, as described in Configuring Local PHP Interpreters and Configuring Remote PHP Interpreters.
Install PHPSpec with Composer
Before you start, make sure Composer is installed on your machine and initialized in the current project as described in Composer dependency manager.
Inside composer.json, add the phpspec/phpspec dependency record to the
require
orrequire-dev
section. Press Ctrl+Space to get code completion for the package name and version.Do one of the following:
Click the Install shortcut link on top of the editor panel.
If the Non-installed Composer packages inspection is enabled, IntelliJ IDEA will highlight the declared dependencies that are not currently installed. Press Alt+Enter and select whether you want to install a specific dependency or all dependencies at once.
Learn more about PHPSpec installation from PHPSpec Official website.
Click next to the package record in the composer.json editor gutter to jump to the corresponding Settings/Preferences page and configure PHPSpec manually.
Integrate PHPSpec with an IntelliJ IDEA project
If you use a local PHP interpreter, IntelliJ IDEA performs initial Codeception configuration automatically. In the case of remote PHP interpreters, manual Codeception configuration is required.
Configure PHPSpec automatically
Store the phpspec.yml or phpspec.yml.dist configuration file under the project root.
IntelliJ IDEA will create the local framework configuration on the Test Frameworks page and the PHPSpec run/debug configuration.
Configure PHPSpec manually
In the Settings/Preferences dialog (Ctrl+Alt+S), go to .
On the Test Frameworks page that opens, click in the central pane and choose the configuration type from the list:
In local configurations, the default project PHP interpreter is used, see Default project CLI interpreters for details.
To use PHPSpec with a remote PHP interpreter, choose one of the configurations in the dialog that opens:
In the Path to PHPSpec executable field, specify the location of phpspec. PHPSpec does not necessarily have to be installed under the current project root. Click next to the Path to PHPSpec directory or phar file field. IntelliJ IDEA detects the version of PHPSpec and displays it below the field.
If no path to PHPSpec is specified for a Local interpreter, IntelliJ IDEA does not provide full support of PHPSpec, for example, it does not show suggestions for code completion and does not resolve references.
In the Test Runner area, appoint the configuration YML file to use for launching and executing scenarios.
By default, PHPSpec looks for a phpspec.yml or phpspec.yml.dist configuration file in the project root folder. You can appoint a custom configuration file.
Clear the Default configuration file checkbox to have PHPSpec use the phpspec.yml or phpspec.yml.dist configuration file from the project root folder. If no such file is found, test execution fails, therefore it may be more reliable to specify the configuration file explicitly.
Select the Default configuration file checkbox to specify your own YML configuration file. This file will be later used as default in all PHPSpec run/debug configurations.
In the field, specify the location of the configuration file to use. Type the path manually or click and choose the file in the dialog that opens.
In local configurations, the Prefix ('spec_prefix'): read-only field shows the namespace prefix for specifications. IntelliJ IDEA detects
spec_prefix
from the configuration file specified in the Default Configuration File field. The default value is spec. See PHPSpec Configuration: PSR-4 and PHPSpec Configuration: Spec and Source Location for details.
Generate a PHPSpec test for a class
Open the Create New PHP Test dialog by doing any of the following:
From the main menu, choose PHP Test | PHPSpec Spec from the context menu.
. Then, chooseIn the Project tool window, press Alt+Insert or right-click the PHP class to be tested and choose New | PHP Test | PHPSpec Spec.
In the editor of the PHP class to be tested, position the caret at the definition of the class. Then, press Alt+Enter and select Create New Test from the popup menu. This way, you can generate a test for a PHP class defined among several classes within a single PHP file.
To create a test for a certain method, position the caret within the method declaration. The chosen method will be automatically selected in the methods list of the Create New PHP Test dialog.
The Create New PHP Test dialog opens.
Provide the parameters of the generated test:
The test file template, that is, the template based on which IntelliJ IDEA will generate the test class. Make sure that PHPSpec is selected in the Test file template list.
The name of the test class. IntelliJ IDEA automatically composes the name from the production class name as <production class>Spec.php.
The folder for the test class file, which is automatically suggested based on the containing directory and namespace of the production class, the configured test sources root and its psr-4 package prefix, or the
src_path
value specified in the phpspec.yml configuration file. Note that for the automatic folder suggestion to work correctly, the test suite and the production class namespaces have to match.To specify a different folder, click next to the Directory field and choose the relevant folder.
The namespace the test class will belong to, which is automatically suggested based on the containing directory and namespace of the production class, the configured test sources root and its psr-4 package prefix, or the
spec_prefix
andnamespace
values specified in the phpspec.yml configuration file.The production class methods to generate test method stubs for. Select the checkboxes next to the required production class methods. To include inherited methods from parent classes, select the Show inherited methods checkbox.
IntelliJ IDEA will automatically compose the test methods' names as
test<production method>
. You can customize the code templates used for generating test method stubs on the Code tab of the File and Code Templates settings page.
After the test is created, you can navigate back to the production class by choosing Navigate | Go to Test Subject. For details, see Navigate between tests and production code.
Run and debug PHPSpec tests
For information about writing PHPSpec specifications, see the PHPSpec Documentation. To run or debug your tests, do one of the following:
Run or debug PHPSpec tests
In the Project tool window, select the file or folder to run your tests from and choose Run '<file or folder>' or Debug '<file or folder>' from the context menu of the selection:
IntelliJ IDEA generates a default run configuration and starts a run/debug test session with it.
Save an automatically generated default configuration
After a test session is over, choose Save <default_test_configuration_name> from the context menu of the file or folder.
Run or debug tests through a previously saved run/debug configuration
Choose the required PHPSpec configuration from the list on the toolbar and click or .
Create a custom run/debug configuration
In the Project tool window, select the file or folder with the tests to run and choose Create run configuration from the context menu. Alternatively, choose from the main menu, then click and choose PHPSpec from the list.
In the PHPSpec dialog that opens, specify the scenarios to run, choose the PHP interpreter to use, and customize its behavior by specifying the options and arguments to be passed to the PHP executable.
Monitor test results
IntelliJ IDEA shows the tests execution results in the Test Runner tab of the Run tool window.
The tab is divided into 2 main areas:
The left-hand area lets you drill down through all unit tests to see the succeeded and failed ones. You can filter tests, export results, and use the context menu commands to run specific tests or navigate to the source code.
The right-hand area displays the raw PHPSpec output.