mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			365 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			365 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link https://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license https://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\web;
 | 
						|
 | 
						|
use RuntimeException;
 | 
						|
use Yii;
 | 
						|
use yii\base\InlineAction;
 | 
						|
use yii\web\NotFoundHttpException;
 | 
						|
use yii\web\Response;
 | 
						|
use yii\web\ServerErrorHttpException;
 | 
						|
use yiiunit\framework\web\stubs\VendorImage;
 | 
						|
use yiiunit\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @group web
 | 
						|
 */
 | 
						|
class ControllerTest extends TestCase
 | 
						|
{
 | 
						|
    /** @var FakeController */
 | 
						|
    private $controller;
 | 
						|
 | 
						|
    protected function setUp()
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->mockWebApplication();
 | 
						|
        $this->controller = new FakeController('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
 | 
						|
        Yii::$app->controller = $this->controller;
 | 
						|
    }
 | 
						|
 | 
						|
    public function testBindActionParams()
 | 
						|
    {
 | 
						|
        $aksi1 = new InlineAction('aksi1', $this->controller, 'actionAksi1');
 | 
						|
 | 
						|
        $params = ['fromGet' => 'from query params', 'q' => 'd426', 'validator' => 'available'];
 | 
						|
        list($fromGet, $other) = $this->controller->bindActionParams($aksi1, $params);
 | 
						|
        $this->assertEquals('from query params', $fromGet);
 | 
						|
        $this->assertEquals('default', $other);
 | 
						|
 | 
						|
        $params = ['fromGet' => 'from query params', 'q' => 'd426', 'other' => 'available'];
 | 
						|
        list($fromGet, $other) = $this->controller->bindActionParams($aksi1, $params);
 | 
						|
        $this->assertEquals('from query params', $fromGet);
 | 
						|
        $this->assertEquals('available', $other);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testNullableInjectedActionParams()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 70100) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.1');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        // Use the PHP71 controller for this test
 | 
						|
        $this->controller = new FakePhp71Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionNullableInjection');
 | 
						|
        $params = [];
 | 
						|
        $args = $this->controller->bindActionParams($injectionAction, $params);
 | 
						|
        $this->assertEquals(Yii::$app->request, $args[0]);
 | 
						|
        $this->assertNull($args[1]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testModelBindingHttpException() {
 | 
						|
        if (PHP_VERSION_ID < 70100) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.1');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        $this->controller = new FakePhp71Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'container' => [
 | 
						|
                'definitions' => [
 | 
						|
                    \yiiunit\framework\web\stubs\ModelBindingStub::className() => [ \yiiunit\framework\web\stubs\ModelBindingStub::className() , "build"],
 | 
						|
                ]
 | 
						|
            ],
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
        Yii::$container->set(VendorImage::className(), VendorImage::className());
 | 
						|
        $this->mockWebApplication(['controller' => $this->controller]);
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionModelBindingInjection');
 | 
						|
        $this->expectException(get_class(new NotFoundHttpException("Not Found Item.")));
 | 
						|
        $this->expectExceptionMessage('Not Found Item.');
 | 
						|
        $this->controller->bindActionParams($injectionAction, []);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testInjectionContainerException()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 70100) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.1');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        // Use the PHP71 controller for this test
 | 
						|
        $this->controller = new FakePhp71Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
        $this->mockWebApplication(['controller' => $this->controller]);
 | 
						|
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionInjection');
 | 
						|
        $params = ['between' => 'test', 'after' => 'another', 'before' => 'test'];
 | 
						|
        Yii::$container->set(VendorImage::className(), function() { throw new \RuntimeException('uh oh'); });
 | 
						|
 | 
						|
        $this->expectException(get_class(new RuntimeException()));
 | 
						|
        $this->expectExceptionMessage('uh oh');
 | 
						|
        $this->controller->bindActionParams($injectionAction, $params);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testUnknownInjection()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 70100) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.1');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        // Use the PHP71 controller for this test
 | 
						|
        $this->controller = new FakePhp71Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
        $this->mockWebApplication(['controller' => $this->controller]);
 | 
						|
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionInjection');
 | 
						|
        $params = ['between' => 'test', 'after' => 'another', 'before' => 'test'];
 | 
						|
        Yii::$container->clear(VendorImage::className());
 | 
						|
        $this->expectException(get_class(new ServerErrorHttpException()));
 | 
						|
        $this->expectExceptionMessage('Could not load required service: vendorImage');
 | 
						|
        $this->controller->bindActionParams($injectionAction, $params);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testInjectedActionParams()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 70100) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.1');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        // Use the PHP71 controller for this test
 | 
						|
        $this->controller = new FakePhp71Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionInjection');
 | 
						|
        $params = ['between' => 'test', 'after' => 'another', 'before' => 'test'];
 | 
						|
        Yii::$container->set(VendorImage::className(), VendorImage::className());
 | 
						|
        $args = $this->controller->bindActionParams($injectionAction, $params);
 | 
						|
        $this->assertEquals($params['before'], $args[0]);
 | 
						|
        $this->assertEquals(Yii::$app->request, $args[1]);
 | 
						|
        $this->assertEquals('Component: yii\web\Request $request', Yii::$app->requestedParams['request']);
 | 
						|
        $this->assertEquals($params['between'], $args[2]);
 | 
						|
        $this->assertInstanceOf(VendorImage::className(), $args[3]);
 | 
						|
        $this->assertEquals('Container DI: yiiunit\framework\web\stubs\VendorImage $vendorImage', Yii::$app->requestedParams['vendorImage']);
 | 
						|
        $this->assertNull($args[4]);
 | 
						|
        $this->assertEquals('Unavailable service: post', Yii::$app->requestedParams['post']);
 | 
						|
        $this->assertEquals($params['after'], $args[5]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testInjectedActionParamsFromModule()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 70100) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.1');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
        $module = new \yii\base\Module('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
        $module->set('yii\data\DataProviderInterface', [
 | 
						|
            'class' => \yii\data\ArrayDataProvider::className(),
 | 
						|
        ]);
 | 
						|
        // Use the PHP71 controller for this test
 | 
						|
        $this->controller = new FakePhp71Controller('fake', $module);
 | 
						|
        $this->mockWebApplication(['controller' => $this->controller]);
 | 
						|
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionModuleServiceInjection');
 | 
						|
        $args = $this->controller->bindActionParams($injectionAction, []);
 | 
						|
        $this->assertInstanceOf(\yii\data\ArrayDataProvider::className(), $args[0]);
 | 
						|
        $this->assertEquals('Module yii\base\Module DI: yii\data\DataProviderInterface $dataProvider', Yii::$app->requestedParams['dataProvider']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @see https://github.com/yiisoft/yii2/issues/17701
 | 
						|
     */
 | 
						|
    public function testBindTypedActionParams()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 70000) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 7.0');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        // Use the PHP7 controller for this test
 | 
						|
        $this->controller = new FakePhp7Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
        $this->mockWebApplication(['controller' => $this->controller]);
 | 
						|
 | 
						|
        $aksi1 = new InlineAction('aksi1', $this->controller, 'actionAksi1');
 | 
						|
 | 
						|
        $params = ['foo' => '100', 'bar' => null, 'true' => 'on', 'false' => 'false'];
 | 
						|
        list($foo, $bar, $true, $false) = $this->controller->bindActionParams($aksi1, $params);
 | 
						|
        $this->assertSame(100, $foo);
 | 
						|
        $this->assertSame(null, $bar);
 | 
						|
        $this->assertSame(true, $true);
 | 
						|
        $this->assertSame(false, $false);
 | 
						|
 | 
						|
        // allow nullable argument to be set to empty string (as null)
 | 
						|
        // https://github.com/yiisoft/yii2/issues/18450
 | 
						|
        $params = ['foo' => 100, 'bar' => '', 'true' => true, 'false' => true];
 | 
						|
        list(, $bar) = $this->controller->bindActionParams($aksi1, $params);
 | 
						|
        $this->assertSame(null, $bar);
 | 
						|
 | 
						|
        // make sure nullable string argument is not set to null when empty string is passed
 | 
						|
        $stringy = new InlineAction('stringy', $this->controller, 'actionStringy');
 | 
						|
        list($foo) = $this->controller->bindActionParams($stringy, ['foo' => '']);
 | 
						|
        $this->assertSame('', $foo);
 | 
						|
 | 
						|
        $params = ['foo' => 'oops', 'bar' => null];
 | 
						|
        $this->expectException('yii\web\BadRequestHttpException');
 | 
						|
        $this->expectExceptionMessage('Invalid data received for parameter "foo".');
 | 
						|
        $this->controller->bindActionParams($aksi1, $params);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testAsJson()
 | 
						|
    {
 | 
						|
        $data = [
 | 
						|
            'test' => 123,
 | 
						|
            'example' => 'data',
 | 
						|
        ];
 | 
						|
        $result = $this->controller->asJson($data);
 | 
						|
        $this->assertInstanceOf('yii\web\Response', $result);
 | 
						|
        $this->assertSame(Yii::$app->response, $result, 'response should be the same as Yii::$app->response');
 | 
						|
        $this->assertEquals(Response::FORMAT_JSON, $result->format);
 | 
						|
        $this->assertEquals($data, $result->data);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testAsXml()
 | 
						|
    {
 | 
						|
        $data = [
 | 
						|
            'test' => 123,
 | 
						|
            'example' => 'data',
 | 
						|
        ];
 | 
						|
        $result = $this->controller->asXml($data);
 | 
						|
        $this->assertInstanceOf('yii\web\Response', $result);
 | 
						|
        $this->assertSame(Yii::$app->response, $result, 'response should be the same as Yii::$app->response');
 | 
						|
        $this->assertEquals(Response::FORMAT_XML, $result->format);
 | 
						|
        $this->assertEquals($data, $result->data);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testRedirect()
 | 
						|
    {
 | 
						|
        $_SERVER['REQUEST_URI'] = 'http://test-domain.com/';
 | 
						|
        $this->assertEquals($this->controller->redirect('')->headers->get('location'), '/');
 | 
						|
        $this->assertEquals($this->controller->redirect('http://some-external-domain.com')->headers->get('location'), 'http://some-external-domain.com');
 | 
						|
        $this->assertEquals($this->controller->redirect('/')->headers->get('location'), '/');
 | 
						|
        $this->assertEquals($this->controller->redirect('/something-relative')->headers->get('location'), '/something-relative');
 | 
						|
        $this->assertEquals($this->controller->redirect(['/'])->headers->get('location'), '/index.php?r=');
 | 
						|
        $this->assertEquals($this->controller->redirect(['view'])->headers->get('location'), '/index.php?r=fake%2Fview');
 | 
						|
        $this->assertEquals($this->controller->redirect(['/controller'])->headers->get('location'), '/index.php?r=controller');
 | 
						|
        $this->assertEquals($this->controller->redirect(['/controller/index'])->headers->get('location'), '/index.php?r=controller%2Findex');
 | 
						|
        $this->assertEquals($this->controller->redirect(['//controller/index'])->headers->get('location'), '/index.php?r=controller%2Findex');
 | 
						|
        $this->assertEquals($this->controller->redirect(['//controller/index', 'id' => 3])->headers->get('location'), '/index.php?r=controller%2Findex&id=3');
 | 
						|
        $this->assertEquals($this->controller->redirect(['//controller/index', 'id_1' => 3, 'id_2' => 4])->headers->get('location'), '/index.php?r=controller%2Findex&id_1=3&id_2=4');
 | 
						|
        $this->assertEquals($this->controller->redirect(['//controller/index', 'slug' => 'äöüß!"§$%&/()'])->headers->get('location'), '/index.php?r=controller%2Findex&slug=%C3%A4%C3%B6%C3%BC%C3%9F%21%22%C2%A7%24%25%26%2F%28%29');
 | 
						|
    }
 | 
						|
 | 
						|
    public function testUnionBindingActionParams()
 | 
						|
    {
 | 
						|
        if (PHP_VERSION_ID < 80000) {
 | 
						|
            $this->markTestSkipped('Can not be tested on PHP < 8.0');
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        // Use the PHP80 controller for this test
 | 
						|
        $this->controller = new FakePhp80Controller('fake', new \yii\web\Application([
 | 
						|
            'id' => 'app',
 | 
						|
            'basePath' => __DIR__,
 | 
						|
            'components' => [
 | 
						|
                'request' => [
 | 
						|
                    'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
 | 
						|
                    'scriptFile' => __DIR__ . '/index.php',
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]));
 | 
						|
 | 
						|
        $this->mockWebApplication(['controller' => $this->controller]);
 | 
						|
 | 
						|
        $injectionAction = new InlineAction('injection', $this->controller, 'actionInjection');
 | 
						|
        $params = ['arg' => 'test', 'second' => 1];
 | 
						|
 | 
						|
        $args = $this->controller->bindActionParams($injectionAction, $params);
 | 
						|
        $this->assertSame('test', $args[0]);
 | 
						|
        $this->assertSame(1, $args[1]);
 | 
						|
    }
 | 
						|
}
 |