vote up 3 vote down star
1

Hello,

I found the discussion on Do you test private method informative.

I have decided, that in some classes, I want to have protected methods, but test them. Some of these methods are static and short. Because most of the public methods make use of them, I will probably be able to safely remove the tests later. But for starting with a TDD approach and avoid debugging, I really want to test them.

I thought of the following:

  • Method Object as adviced in an answer seems to be overkill for this.
  • Start with public methods and when code coverage is given by higher level tests, turn them protected and remove the tests.
  • Inherit a class with a testable interface making protected methods public

Which is best practice? Is there anything else?

It seems, that JUnit automatically changes protected methods to be public, but I did not have a deeper look at it. PHP does not allow this via reflection.

flag

25% accept rate

4 Answers

vote up 9 vote down

You seem to be aware already, but I'll just restate it anyway; It's a bad sign, if you need to test protected methods. The aim of a unit test, is to test the interface of a class, and protected methods are implementation details. That said, there are cases where it makes sense. If you use inheritance, you can see a superclass as providing an interface for the subclass. So here, you would have to test the protected method (But never a private one). The solution to this, is to create a subclass for testing purpose, and use this to expose the methods. Eg.:

class Foo {
  protected function stuff() {
    // secret stuff, you want to test
  }
}

class SubFoo extends Foo {
  public function exposedStuff() {
    return $this->stuff();
  }
}

Note that you can always replace inheritance with composition. When testing code, it's usually a lot easier to deal with code that uses this pattern, so you may want to consider that option.

link|flag
You can just directly implement stuff() as public and return parent::stuff(). See my response. It seems I'm reading things too quickly today. – Michael Johnson Oct 31 '08 at 18:39
You're right; It's valid to change a protected method into a public one. – troelskn Nov 1 '08 at 17:34
So the code suggests my third option and "Note that you can always replace inheritance with composition." goes in the direction of my first option or refactoring.com/catalog/… – GrGr Nov 3 '08 at 8:55
Yes to the first. How finely grained your objects should be is a matter of style. I generally create much smaller objects than most of my colleagues would. – troelskn Nov 3 '08 at 9:52
vote up 2 vote down

I suggest following workaround for "Henrik Paul"'s workaround/idea :)

You know names of private methods of your class. For example they are like _add(), _edit(), _delete() etc.

Hence when you want to test it from aspect of unit-testing, just call private methods by prefixing and/or suffixing some common word (for example _addPhpunit) so that when __call() method is called (since method _addPhpunit() doesn't exist) of owner class, you just put necessary code in __call() method to remove prefixed/suffixed word/s (Phpunit) and then to call that deduced private method from there. This is another good use of magic methods.

Try it out.

link|flag
vote up 1 vote down

I think troelskn is close. I would do this instead:

class ClassToTest
{
   protected testThisMethod()
   {
     // Implement stuff here
   }
}

Then, implement something like this:

class TestClassToTest extends ClassToTest
{
  public testThisMethod()
  {
    return parent::testThisMethod();
  }
}

You then run your tests against TestClassToTest.

It should be possible to automatically generate such extension classes by parsing the code. I wouldn't be surprised if PHPUnit already offers such a mechanism (though I haven't checked).

link|flag
Heh... it seems I'm saying, use your third option :) – Michael Johnson Oct 31 '08 at 18:37
Yes, that is exactly my third option. I am pretty sure, that PHPUnit does not offer such a mechanism. – GrGr Nov 3 '08 at 8:46
vote up -1 vote down

I'm just throwing ideas in the air, so I hope nobody gets upset if my idea doesn't work.

But. You could try if a __call()-hack would work, assuming you are using PHP5 or later. My hypothesis is that if you call a private method, PHP just hides it and doesn't call it (instead of explicitly saying that you don't have access to that method). Therefore, your __call() magic method would catch that call, and try to call it internally. You could then have a constant to turn toggle between "unit test mode" and normal mode.

As said, not at all sure it would work, but it might be worth investigating.

Update: This doesn't work! As GrGr noted (and I now confirm, as I had time to test this) that calling a private method indeed causes a fatal error.

link|flag
No, this does not work. Calling an existing protected method causes a fatal error. – GrGr Oct 30 '08 at 10:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.