mockApplication();
    }
    public function testBooleanAttributes()
    {
        $o = ['template' => '{input}'];
        $model = new DynamicModel(['name']);
        ob_start();
        $form = ActiveForm::begin(['action' => '/something', 'enableClientScript' => false]);
        ActiveForm::end();
        ob_end_clean();
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
, (string) $form->field($model, 'name', $o)->input('email', ['required' => true]));
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
            , (string) $form->field($model, 'name', $o)->input('email', ['required' => false]));
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
            , (string) $form->field($model, 'name', $o)->input('email', ['required' => 'test']));
    }
    public function testIssue5356()
    {
        $o = ['template' => '{input}'];
        $model = new DynamicModel(['categories']);
        $model->categories = 1;
        ob_start();
        $form = ActiveForm::begin(['action' => '/something', 'enableClientScript' => false]);
        ActiveForm::end();
        ob_end_clean();
        // https://github.com/yiisoft/yii2/issues/5356
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
             , (string) $form->field($model, 'categories', $o)->listBox(['apple', 'banana', 'avocado'], ['multiple' => true]));
    }
    public function testOutputBuffering()
    {
        $obLevel = ob_get_level();
        ob_start();
        $model = new DynamicModel(['name']);
        $form = ActiveForm::begin(['id' => 'someform', 'action' => '/someform', 'enableClientScript' => false]);
        echo "\n" . $form->field($model, 'name') . "\n";
        ActiveForm::end();
        $content = ob_get_clean();
        $this->assertEquals($obLevel, ob_get_level(), 'Output buffers not closed correctly.');
        $this->assertEqualsWithoutLE(<<<'HTML'
HTML
, $content);
    }
    public function testRegisterClientScript()
    {
        $this->mockWebApplication();
        $_SERVER['REQUEST_URI'] = 'http://example.com/';
        $model = new DynamicModel(['name']);
        $model->addRule(['name'], 'required');
        $view = $this->getMockBuilder(View::className())->getMock();
        $view->method('registerJs')->with($this->matches("jQuery('#w0').yiiActiveForm([], {\"validateOnSubmit\":false});"));
        $view->method('registerAssetBundle')->willReturn(true);
        Widget::$counter = 0;
        ob_start();
        ob_implicit_flush(false);
        $form = ActiveForm::begin(['view' => $view, 'validateOnSubmit' => false]);
        $form->field($model, 'name');
        $form::end();
        // Disable clientScript will not call `View->registerJs()`
        $form = ActiveForm::begin(['view' => $view, 'enableClientScript' => false]);
        $form->field($model, 'name');
        $form::end();
        ob_get_clean();
        $this->assertTrue(true);
    }
    /**
     * @see https://github.com/yiisoft/yii2/issues/15536
     */
    public function testShouldTriggerInitEvent()
    {
        $initTriggered = false;
        ob_start();
        $form = ActiveForm::begin(
            [
                'action' => '/something',
                'enableClientScript' => false,
                'on init' => function () use (&$initTriggered) {
                    $initTriggered = true;
                }
            ]
        );
        ActiveForm::end();
        ob_end_clean();
        $this->assertTrue($initTriggered);
    }
    /**
     * @see https://github.com/yiisoft/yii2/issues/15476
     * @see https://github.com/yiisoft/yii2/issues/16892
     */
    public function testValidationStateOnInput()
    {
        $model = new DynamicModel(['name']);
        $model->addError('name', 'I have an error!');
        ob_start();
        $form = ActiveForm::begin([
            'action' => '/something',
            'enableClientScript' => false,
            'validationStateOn' => ActiveForm::VALIDATION_STATE_ON_INPUT,
        ]);
        ActiveForm::end();
        ob_end_clean();
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
        , (string) $form->field($model, 'name'));
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
            , (string) $form->field($model, 'name')->checkbox());
        $this->assertEqualsWithoutLE(<<<'EOF'
EOF
            , (string) $form->field($model, 'name')->radio());
    }
}