构造函数注入和方法用法

时间:2015-02-21 08:02:52

标签: php unit-testing oop constructor

我有几个函数我正在重写OOP类。我仍然是OOP的新手,也是用它来学习OOP的基本概念。

这是我写的第一堂课,记着以下内容

  • 单元测试/隔离测试

  • 一个班级应该只做一件事

  • 重新使用性

此类接受4个用户设置变量并根据URL中设置的参数对其进行测试,然后返回4个条件,每个变量集一个

这是类(我删除了一些与isAuthorReferrer()方法完全相同的方法和属性)

namespace PG\Single\Post\Navigation;

/**
 * Test set values against the super global given. Returns conditional properties
 * which is boolean values. true is returned on success and false on failure
 *
 * @param $superGlobalVar Super global to test the values against
 * @param (string) $authorReferrer 
 * @param (string) $dateReferrer 
 * @param (string) $searchReferrer 
 * @param (string) $taxReferrer 
 *
*/ 
class RequestReferrerHandler implements RequestReferrerHandlerInterface
{
    /**
     * @var (array) $superGlobalVar
    */
    protected $superGlobalVar;

    /**
     * @var (bool) $isAuthorReferrer
    */
    protected $isAuthorReferrer;

    //OTHER PROPERTIES

    /**
     * Public constructor method
     *
     * @param $SuperGlobalVar  Super global to get data from
    */
    public function __construct($superGlobalVar = null, $authorReferrer= null, $dateReferrer = null, $searchReferrer = null, $taxReferrer = null )
    {
        /**
         * Properties
         */
        $this->superGlobalVar = $superGlobalVar;
        $this->authorReferrer = $authorReferrer;
        $this->dateReferrer   = $dateReferrer;
        $this->searchReferrer = $searchReferrer;
        $this->taxReferrer    = $taxReferrer;

        /**
         * Conditional methods, all returns boolean values
         */
        $this->isAuthorReferrer();
        //etc
    }

    /**
     * Test $authorReferrer against $superGlobalVar
     *
     * @return (bool) true on success or false on failure
     */
    public function isAuthorReferrer()
    {
        if ($this->authorReferrer && isset($this->superGlobalVar[$this->authorReferrer])) { 
            $isAuthorReferrer = true;
        } else {
            $isAuthorReferrer = false;
        }
        return $this->isAuthorReferrer = $isAuthorReferrer;
    }

    //OTHER METHODS, SAME AS isAuthorReferrer() METHOD

    /**
     * Returns an array of super global variables
     * @return (array) $this->getRequest
    */ 
    public function getSuperGlobalVar()
    {
        return $this->superGlobalVar;
    }

}

我已经阅读了一些帖子,说你应该使用构造函数注入,所以我已经编写了我的类。

我在这里有一些问题,一个是在构造函数中实例化我的方法

我的测试

$a = new PG\Single\Post\Navigation\RequestReferrerHandler($_GET, 'aq', 'dq', 'sq', 'tq');
?><pre><?php var_dump($a); ?></pre><?php    

使用上面的代码,我得到以下输出

object(PG\Single\Post\Navigation\RequestReferrerHandler)#496 (9) {
  ["superGlobalVar":protected]=>
  array(1) {
    ["tq"]=>
    string(10) "category 1"
  }
  ["isAuthorReferrer":protected]=>
  bool(false)
  ["isDateReferrer":protected]=>
  bool(false)
  ["isSearchReferrer":protected]=>
  bool(false)
  ["isTaxReferrer":protected]=>
  bool(true)
  ["authorReferrer"]=>
  string(2) "aq"
  ["dateReferrer"]=>
  string(2) "dq"
  ["searchReferrer"]=>
  string(2) "sq"
  ["taxReferrer"]=>
  string(2) "tq"
}

如果我从构造函数中删除我的方法,我的四个条件属性返回NULL,但如果我直接调用方法,我会得到正确的布尔值

?><pre><?php var_dump($a->isAuthorReferrer()); ?></pre><?php

var_dump()的结果是:

如果设置aq

bool(true)

如果未设置aq

bool(false)

我的问题

我是否在构造函数中正确使用了这些方法,并且我的类甚至已正确设置

1 个答案:

答案 0 :(得分:1)

构造函数的功能是创建可以应用方法的对象。除了构造函数的目标之外,另一个令人信服的理由是构造函数必须能够没有任何问题地结束,或者对象的构造可能会导致内存泄漏。因此,在构造函数中调用方法不是一个好的OOP设计。 此外,您是否更难以扩展甚至更改在构造函数中调用方法的类的设计。对象的构造将取决于它应该在其之前的方法的可用性。 我更喜欢使用init方法在其余代码之前调用您想要执行的方法。当我想加载配置文件时,我在构造函数中设置它并在init-method中读取它。