404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@18.216.167.229: ~ $
.. index::
    single: Cookbook; Big Parent Class

Big Parent Class
================

In some application code, especially older legacy code, we can come across some
classes that extend a "big parent class" - a parent class that knows and does
too much:

.. code-block:: php

    class BigParentClass
    {
        public function doesEverything()
        {
            // sets up database connections
            // writes to log files
        }
    }

    class ChildClass extends BigParentClass
    {
        public function doesOneThing()
        {
            // but calls on BigParentClass methods
            $result = $this->doesEverything();
            // does something with $result
            return $result;
        }
    }

We want to test our ``ChildClass`` and its ``doesOneThing`` method, but the
problem is that it calls on ``BigParentClass::doesEverything()``. One way to
handle this would be to mock out **all** of the dependencies ``BigParentClass``
has and needs, and then finally actually test our ``doesOneThing`` method. It's
an awful lot of work to do that.

What we can do, is to do something... unconventional. We can create a runtime
partial test double of the ``ChildClass`` itself and mock only the parent's
``doesEverything()`` method:

.. code-block:: php

    $childClass = \Mockery::mock('ChildClass')->makePartial();
    $childClass->shouldReceive('doesEverything')
        ->andReturn('some result from parent');

    $childClass->doesOneThing(); // string("some result from parent");

With this approach we mock out only the ``doesEverything()`` method, and all the
unmocked methods are called on the actual ``ChildClass`` instance.

Filemanager

Name Type Size Permission Actions
big_parent_class.rst File 1.68 KB 0644
class_constants.rst File 4.75 KB 0644
default_expectations.rst File 774 B 0644
detecting_mock_objects.rst File 407 B 0644
index.rst File 289 B 0644
map.rst.inc File 282 B 0644
mockery_on.rst File 3.06 KB 0644
mocking_class_within_class.rst File 4.45 KB 0644
mocking_hard_dependencies.rst File 4.5 KB 0644
not_calling_the_constructor.rst File 2.16 KB 0644