Codeception api suite,忽略重定向

时间:2017-10-03 12:37:28

标签: php symfony codeception

我已经使用codeception来测试我在symfony框架中编写的api,我一直遇到一个问题,我的一个端点包含重定向。 我该如何处理重定向? 以下是我的代码段

 if ($request->get('error') == 'access_denied') {
        $error = array(
            'status' => $this->get(GenericConstants::TRANSLATOR)->trans('vk.page.error', array(), 'page'),
            'code' => 400,
            'channel' => 'VK',
            'user_identifier' => '',
            'profile_select' => 'true',
            'process' => $process_type,
            'message' => $this->get(GenericConstants::TRANSLATOR)->trans('vk.dashboard.error.userCancelled', array(), 'dashboard')
        );
        return **$this->redirect($setting_url . http_build_query($error));**
    }

这是我的测试

 $customer = $this->ui->getCustomer();
    $user = $I->haveAVkUser();
    $application = $I->haveAVkApplication($customer);
    $owner = $I->haveAnOwner($customer, $this->ui);
    $community = $I->haveACommunity($customer, $owner, array('communityType' => 0));
    $I->sendGET(
        '/oauth/callback',
    [
        "state" => strtr(base64_encode($community->getId(). "-new") , '+/=', '-_,'),
        'code' => 404,
        'error' => "access_denied"


        ]
    );
    $I->seeResponseCodeIs(\Codeception\Util\HttpCode::FOUND);

我希望我不应该从测试环境重定向

1 个答案:

答案 0 :(得分:0)

很好,你在这里使用REST模块。

REST模块具有stopFollowingRedirects方法。 在sendGET致电之前使用它。

$I->stopFollowingRedirects();
$I->sendGET(
    '/oauth/callback',
    [
        "state" => strtr(base64_encode($community->getId(). "-new") , '+/=', '-_,'),
        'code' => 404,
        'error' => "access_denied"
    ]
);

如果您需要在同一测试中重新启用重定向, 使用$I->startFollowingRedirects();