© 2015 X2Engine Inc.
Difference between revisions of "Testing With PHPUnit"
(→Creating Selenium test cases) |
(→Using test cases built with Selenium IDE) |
||
Line 57: | Line 57: | ||
# Save the <tt>.html</tt> in the same folder as the PHP test case class. | # Save the <tt>.html</tt> in the same folder as the PHP test case class. | ||
# In the test method, open the URL where the Selenese test case is to begin. | # In the test method, open the URL where the Selenese test case is to begin. | ||
− | # Call the method | + | # Call the method [[x2doc:class-WebTestCase.html#_localSelenese|WebTestCase::localSelenese()]] with the filename of the Selenese test case as the sole argument. |
Revision as of 00:53, 30 January 2013
This page covers development using unit and functional tests to develop components and extensions to X2CRM. While not all of X2CRM has been built using test-driven development, some tools and structure have been set up for performing it when developing new features. All automated tests in X2CRM use PHPUnit, and in the case of functional testing, Selenium. To understand more what these tools are, why it is important to know about them and how they will strengthen your design and development methodology (in addition to helping you make your code more stable), the following is recommended reading:
- PHPUnit Manual, Ch. 1: Automating Tests
- PHPUnit Manual, Ch. 2: PHPUnit's Goals
- Selenium: Introduction
Introduction
What are tests?
Tests are organized into PHP classes called *test cases* that are stored within protected/tests/unit (unit tests) or protected/tests/functional (functional tests). Test cases extend one of the following classes:
- CTestCase
- For ordinary, non-databse unit tests; best for component classes that don't rely on tables or data that is specific to a HTTP request
- CDbTestCase
- For tests involving communication with a MySQL database, especially if that communication involves a change in any data.
- WebTestCase (extends CWebTestCase)
- For tests that involve web browser actions.
Running test cases
Running a test case proceeds as follows: on the server where the testing environment is installed, inside of the protected/tests folder, runphpunit path/to/TestCase.phpor, to run a group of test cases that exist in the same directory:
phpunit directory/PHPUnit will recursively scan directories for test cases to run.
Installation
For the most up-to-date information on how to install PHPUnit, see Chapter 3: Installing PHPUnit in the official PHPUnit manual. In addition to PHPUnit, you will need each of the following PHPUnit extensions:
- DBUnit
- PHP_Invoker
- PHPUnit_Selenium
- PHPUnit_Story
See the installation guide for more information on how to obtain these extensions.
Setting up a test database
A few very important points to note about tests involving a database connection:
- A different database will be used than the live database
- The contents of each of the test database's tables will be fixed at the beginning of each test using *fixtures*
- All database records generated during tests or through manual interaction will be purged when fixtures for the table in question are used
After creating the test database, the following steps can be used to set it up for database testing:
- Copy the installer files back into the root of the web application: index.php, initialize.php, requirements.php, and initialize_pro.php if on professional edition.
- Re-run the installer, but enable "Testing Database".
Functional Testing with Selenium
If it is desired to automate in-browser tests, the following conditions must be ensured:
- The <selenium> section in the configuration file protected/tests/phpunit.xml is set properly. For information on how to configure this, see The PHPUnit Manual Appendix C: The XML Configuration File
- Selenium RC on all the hosts defined in phpunit.xml are accessible from the web server on the specified ports (note: if they are behind a firewall, it will be necessary to set up NAT in order to properly use them)
- The URL defined as constant TEST_BASE_URL in protected/tests/WebTestConfig.php resolves properly (points to index-test.php/ on the web server).
- PHPUnit and the necessary extensions are installed on the web server
Creating Selenium test cases
- Create a class that extends WebTestCase
- Note that at the beginning of the execution of a test case's method, the method WebTestCase::setUp will be called, and this will create a session as the admin user.
- In the test method, open the URL where the test is to begin by calling WebTestCase::openX2(), passing it as an argument the URI[[wikipedia:Uniform Resource Identifier]]: The part of a URL that identifies the resource on the server to be accessed. In the context of the API, this refers to the relative path within the web server based in the web root of X2Engine, i.e. ''index.php/api2/Contacts/324.json'' as opposed to the full URL, which begins with the protocol (i.e. "http") and might also contain a path relative to the web site's document root relative to the base URL (what would come after index-test.php).
- Note the availability of CWebTestCase's methods, especially those inherited from PHPUnit_Framework_TestCase, PHPUnit_Framework_Assert and PHPUnit_Extensions_SeleniumTestCase, in addition to WebTestCase::session() (which will ensure the session matches the user/password defined in WebTestCase::$login, logging the browser out/in as necessary) and the aforementioned methods that will be inherited from WebTestCase.
Using test cases built with Selenium IDE
Building functional tests involving browser automation with Selenium can be done with PHPUnit browser commands, i.e. assertTextPresent. However, it is far more easy, convenient and quick to build them using Selenium IDE. To run a native Selenese .html test case created in Selenium IDE:
- Save the .html in the same folder as the PHP test case class.
- In the test method, open the URL where the Selenese test case is to begin.
- Call the method WebTestCase::localSelenese() with the filename of the Selenese test case as the sole argument.