PHPUnit: Doing assertions on non-public variables

后端 未结 4 842
挽巷
挽巷 2020-12-06 04:30

Suppose I have a class with a private property and associated public getter and setter. I want to test with PHPUnit that the property gets the correct value after the sette

相关标签:
4条回答
  • 2020-12-06 04:58

    I agree with the others that in general you want to avoid accessing privates in your tests, but for the cases where you need to, you can use reflection to read and write the property.

    0 讨论(0)
  • 2020-12-06 05:02

    I just want to point out one thing. Let's forget about private fields for a moment and focus on what client of your class cares about. Your class exposes a contract, in this case - ability to alter and retrieve name (via getter and setter). Expected functionality is simple:

    • when I set name with setName to "Gerald", I expect to get "Gerald" when I call getName

    That's all. Client won't (well, shouldn't!) care about internal implementation. Whether you used private field name, hashset or called web service via dynamically generated code - doesn't matter for client. The bug you are currently experiencing, from user point of view - is not a bug at all.

    Whether PHPUnit allows you to test private variables - I don't know. But from unit-testing perspective, you shouldn't do that.

    Edit (in response to comment):

    I understand your concerns about possible exposure of internal state, however I don't think unit testing is the right tool to deal with that. You can come up with a lot of possible scenarios how something might do something else which wasn't planned. Unit tests are by no means cure for all and shouldn't be used as such.

    0 讨论(0)
  • 2020-12-06 05:04

    For testing properties, I'd make the same arguments I make then talking about testing private methods.

    You usually don't want to do this.

    It's about testing observable behavior.

    If you rename all your properties or decide to store them into an array you should not need to adapt your tests at all. You want your tests to tell you that everything still works! When you need to change the tests to make sure everything still works you lose all the benefits as you also could make an error changing the tests.

    So, all in all, you lose the value of you test suite!


    Just testing the get/set combinations would be ok enough but usually not every setter should have a getter and just creating them for testing is not a nice thing ether.

    Usually, you set some stuff and then tell the method to DO (behavior) something. Testing for that (that the class does what is should do) is the best option for testing and should make testing the properties superfluous.


    If you really want to do that there is the setAccessible functionality in PHP reflections API but I can't make up an example where I find this desirable

    Finding unused properties to catch bugs / issues like this one:

    The PHP Mess Detector As a UnusedPrivateField Rule

    class Something
    {
        private static $FOO = 2; // Unused
        private $i = 5; // Unused
        private $j = 6;
        public function addOne()
        {
            return $this->j++;
        }
    }
    

    This will generate two warnings for you because the variables are never accessed

    0 讨论(0)
  • 2020-12-06 05:04

    You can also use Assert::assertAttributeEquals('value', 'propertyName', $object).

    See https://github.com/sebastianbergmann/phpunit/blob/3.7/PHPUnit/Framework/Assert.php#L490

    0 讨论(0)
提交回复
热议问题