mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 15:24:07 +01:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* CMaskedTextFieldTest
|
|
*/
|
|
class CMaskedTextFieldTest extends CTestCase
|
|
{
|
|
public function testCallbackEncoding()
|
|
{
|
|
$expected = "'completed':function() { /* callback */ }";
|
|
|
|
$out=$this->getWidgetScript('js:function() { /* callback */ }');
|
|
$this->assertTrue(mb_strpos($out,$expected, null, Yii::app()->charset)!==false, "Unexpected JavaScript (js:): ".$out);
|
|
|
|
$out=$this->getWidgetScript('function() { /* callback */ }');
|
|
$this->assertTrue(mb_strpos($out,$expected, null, Yii::app()->charset)!==false, "Unexpected JavaScript (w/o js:): ".$out);
|
|
|
|
$out=$this->getWidgetScript(new CJavaScriptExpression('function() { /* callback */ }'));
|
|
$this->assertTrue(mb_strpos($out,$expected, null, Yii::app()->charset)!==false, "Unexpected JavaScript (wrap): ".$out);
|
|
}
|
|
|
|
private function getWidgetScript($callback)
|
|
{
|
|
Yii::app()->clientScript->scripts = array();
|
|
ob_start();
|
|
$widget = new CMaskedTextField(null);
|
|
$widget->name = 'test';
|
|
$widget->completed = $callback;
|
|
$widget->mask = '99/99/9999';
|
|
$widget->init();
|
|
$widget->run();
|
|
Yii::app()->clientScript->render($out);
|
|
ob_end_clean();
|
|
return $out;
|
|
}
|
|
}
|