Skip to main content

PHPUnit best practices to organize tests


I am currently going to start from scratch with the phpunit tests for a project. So I was looking into some projects (like Zend) to see how they are doing things and how they organizing their tests.



Most things are pretty clear, only thing I have some problems with is how to organize the test suites properly. Zend has an AllTests.php from which loads others test suites.

Tough looking at the class it is useing PHPUnit_Framework_TestSuite to create a suite object and then add the other suites to it, but if I look in the PHPUnit docs for organizing tests in PHPUnit versions after 3.4 there is only a description for XML or FileHierarchy. The one using classes to organize the tests was removed.

I haven't found anything that this method is deprecated and projects like Zend are still using it.



But if it is deprecated, how would I be able to organize tests in the same structure with the xml configuration? Executing all tests is no problem, but how would I organize the tests (in the xml) if I only wanted to execute a few tests. Maybe creating several xmls where I only specify a few tests/testsuites to be run?



So if I would want to only test module1 and module2 of the application, would I have an extra xml for each and defining testsuites only for those modules (classes used by the module) in it. And also one that defines a test suite for all tests?



Or would it be better to use the @group annotation on the specific tests to mark them to be for module1 or module2?



Thanks in advance for poiting me to some best practices.


Source: Tips4allCCNA FINAL EXAM

Comments

  1. I'll start of by linking to the manual and then going into what I've seen and heard in the field.

    Organizing phpunit test suites

    Module / Test folder organization in the file system

    My recommended approach is combining the file system with an xml config.

    tests/
    \ unit/
    | - module1
    | - module2
    - integration/
    - functional/


    with a phpunit.xml with a simple:

    <testsuites>
    <testsuite name="My whole project">
    <directory>tests</directory>
    </testsuite>
    </testsuites>


    you can split the testsuites if you want to but thats a project to project choice.

    Running phpunit will then execute ALL tests and running phpunit tests/unit/module1 will run all tests of module1.

    Organization of the "unit" folder

    The most common approach here is to mirror your source/ directory structure in your tests/unit/ folder structure.

    You have one TestClass per ProductionClass anyways so it's a good approach in my book.

    In file organization


    One class per file.


    It's not going to work anyways if you have more than one test class in one file so avoid that pitfall.


    Don't have a test namespace


    It just makes writing the test more verbose as you need an additional use statement so I'd say the testClass should go in the same namespace as the production class but that is nothing PHPUnit forces you to do. I've just found it to be easier with no drawbacks.

    Executing only a few tests

    For example phpunit --filter Factory executes all FactoryTests while phpunit tests/unit/logger/ executes everything logging related.

    You can use @group tags for something like issue numbers, stories or something but for "modules" I'd use the folder layout.

    Multiple xml files

    It can be useful to create multiple xml files if you want to have:


    one without code coverage
    one just for the unit tests (but not for the functional or integration or long running tests)
    other common "filter" cases
    PHPBB3 for example does that for their phpunit.xmls


    Code coverage for your tests

    As it is related to starting a new project with tests:


    My suggestion is to use @covers tags like described in my blog (Only for unit tests, always cover all non public functions, always use covers tags.
    Don't generate coverage for your integration tests. It gives you a false sense of security.
    Always use whitelisting to include all of your production code so the numbers don't lie to you!


    Autoloading and bootstrapping your tests

    You don't need any sort of auto loading for your tests. PHPUnit will take care of that.

    Use the <phpunit bootstrap="file"> attribute to specify your test bootstrap. tests/bootstrap.php is a nice place to put it. There you can set up your applications autoloader and so on (or call your applications bootstrap for that matter).

    Summary


    Use the xml configuration for pretty much everything
    Seperate unit and integration tests
    Your unit test folders should mirror your applications folder structure
    To only execute specif tests use phpunit --filter or phpunit tests/unit/module1
    Use the strict mode from the get go and never turn it off.


    Sample projects to look at


    Sebastian Bergmanns "Bank Account" example project
    phpBB3 Even so they have to fight some with their legacy ;)
    Symfony2
    Doctrine2

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex