phpunit如何测试使用浏览器网址的方法

时间:2017-03-16 08:14:23

标签: php unit-testing testing phpunit

我有以下方法:

public function isAdmin()
{
    $adminUrl = $this->getPage(2)->httpUrl;
    /*
     * Remove all segments except the first in the URL path
     * to detect if current page is in admin view
     */
    $currentUrl = preg_replace( // https://regex101.com/r/D0mOz9/1
        sprintf(
            '~(?<adminUrl>%s)(?<remove>.*)$~',
            addslashes($adminUrl)
        ),
        '$1',
        $this->getPage()->httpUrl
    );
    return $adminUrl == $currentUrl || (!$currentUrl && !$this->getPage() instanceof NullPage);
}
public function getPage($page = null)
{
    $wiredPage = $this->wire('page');
    if (!is_null($wiredPage) && is_null($page)) {
        $baseUrl = $this->wire('page')->url;
        $urlSegmentStr = $this->wire('input')->urlSegmentStr;
        if (strlen($urlSegmentStr)) {
            $baseUrl = rtrim($baseUrl, '/') . "/$urlSegmentStr/";
        }
        return $this->pages->get($baseUrl);
    }

    if (is_null($page)) {
        return $this->pages->get(parse_url(getenv('REQUEST_URI'), PHP_URL_PATH));
    }

    return $this->pages->get($page);
}

我通过获取管理页面的网址并将其与当前网址进行比较来检查是否为管理页面。 现在我想用PHPunit为它编写一个测试,但我不知道如何测试一个结果基于这样的url的方法。 是否可以为这样的案例编写测试?我怎么能这样做?

0 个答案:

没有答案