aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/Updater/DummyUpdater.php
blob: 3c74b4ffda34388e1d83c15d9d64e0e6cbbdff45 (plain) (tree)
1
2
3
4

     

                            










                                                                



                                                                        
       
                                                                          
     
                                                                       











                                                                        
                                               








                         
                                               








                         
                                               








                                           
                                                  



                                        
<?php

use Shaarli\Bookmark\LinkDB;

require_once 'application/Updater.php';

/**
 * Class DummyUpdater.
 * Extends Updater to add update method designed for unit tests.
 */
class DummyUpdater extends Updater
{
    /**
     * Object constructor.
     *
     * @param array         $doneUpdates Updates which are already done.
     * @param LinkDB        $linkDB      LinkDB instance.
     * @param ConfigManager $conf        Configuration Manager instance.
     * @param boolean       $isLoggedIn  True if the user is logged in.
     */
    public function __construct($doneUpdates, $linkDB, $conf, $isLoggedIn)
    {
        parent::__construct($doneUpdates, $linkDB, $conf, $isLoggedIn);

        // Retrieve all update methods.
        // For unit test, only retrieve final methods,
        $class = new ReflectionClass($this);
        $this->methods = $class->getMethods(ReflectionMethod::IS_FINAL);
    }

    /**
     * Update method 1.
     *
     * @return bool true.
     */
    final private function updateMethodDummy1()
    {
        return true;
    }

    /**
     * Update method 2.
     *
     * @return bool true.
     */
    final private function updateMethodDummy2()
    {
        return true;
    }

    /**
     * Update method 3.
     *
     * @return bool true.
     */
    final private function updateMethodDummy3()
    {
        return true;
    }

    /**
     * Update method 4, raise an exception.
     *
     * @throws Exception error.
     */
    final private function updateMethodException()
    {
        throw new Exception('whatever');
    }
}