mockApplication(); Yii::$app->controllerMap = [ 'fake' => 'yiiunit\framework\console\FakeController', 'help' => 'yiiunit\framework\console\FakeHelpController', ]; } public function testBindActionParams() { $controller = new FakeController('fake', Yii::$app); $params = ['from params']; list($fromParam, $other) = $controller->run('aksi1', $params); $this->assertEquals('from params', $fromParam); $this->assertEquals('default', $other); $params = ['from params', 'notdefault']; list($fromParam, $other) = $controller->run('aksi1', $params); $this->assertEquals('from params', $fromParam); $this->assertEquals('notdefault', $other); $params = ['d426,mdmunir', 'single']; $result = $controller->runAction('aksi2', $params); $this->assertEquals([['d426', 'mdmunir'], 'single'], $result); $params = ['_aliases' => ['t' => 'test']]; $result = $controller->runAction('aksi4', $params); $this->assertEquals('test', $result); $params = ['_aliases' => ['a' => 'testAlias']]; $result = $controller->runAction('aksi5', $params); $this->assertEquals('testAlias', $result); $params = ['_aliases' => ['ta' => 'from params,notdefault']]; list($fromParam, $other) = $controller->runAction('aksi6', $params); $this->assertEquals('from params', $fromParam); $this->assertEquals('notdefault', $other); $params = ['avaliable']; $message = Yii::t('yii', 'Missing required arguments: {params}', ['params' => implode(', ', ['missing'])]); $this->expectException('yii\console\Exception'); $this->expectExceptionMessage($message); $result = $controller->runAction('aksi3', $params); } public function assertResponseStatus($status, $response) { $this->assertInstanceOf('yii\console\Response', $response); $this->assertSame($status, $response->exitStatus); } public function runRequest($route, $args = 0) { $request = new Request(); $request->setParams(func_get_args()); return Yii::$app->handleRequest($request); } public function testResponse() { $status = 123; $response = $this->runRequest('fake/status'); $this->assertResponseStatus(0, $response); $response = $this->runRequest('fake/status', (string)$status); $this->assertResponseStatus($status, $response); $response = $this->runRequest('fake/response'); $this->assertResponseStatus(0, $response); $response = $this->runRequest('fake/response', (string)$status); $this->assertResponseStatus($status, $response); } /** * @see https://github.com/yiisoft/yii2/issues/12028 */ public function testHelpOptionNotSet() { $controller = new FakeController('posts', Yii::$app); $controller->runAction('index'); $this->assertTrue(FakeController::getWasActionIndexCalled()); $this->assertNull(FakeHelpController::getActionIndexLastCallParams()); } /** * @see https://github.com/yiisoft/yii2/issues/12028 */ public function testHelpOption() { $controller = new FakeController('posts', Yii::$app); $controller->help = true; $controller->runAction('index'); $this->assertFalse(FakeController::getWasActionIndexCalled()); $this->assertEquals(FakeHelpController::getActionIndexLastCallParams(), ['posts/index']); } /** * @see https://github.com/yiisoft/yii2/issues/13071 */ public function testHelpOptionWithModule() { $controller = new FakeController('posts', new Module('news')); $controller->help = true; $controller->runAction('index'); $this->assertFalse(FakeController::getWasActionIndexCalled()); $this->assertEquals(FakeHelpController::getActionIndexLastCallParams(), ['news/posts/index']); } /** * Tests if action help does not include (class) type hinted arguments. * @see #10372 */ public function testHelpSkipsTypeHintedArguments() { $controller = new FakeController('fake', Yii::$app); $help = $controller->getActionArgsHelp($controller->createAction('with-complex-type-hint')); $this->assertArrayNotHasKey('typedArgument', $help); $this->assertArrayHasKey('simpleArgument', $help); } }