forked from laruence/yaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bug63900.phpt
54 lines (49 loc) · 1.04 KB
/
bug63900.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--TEST--
Bug #63900 (Segfault if separated action executes failed)
--SKIPIF--
<?php if (!extension_loaded("yaf")) print "skip"; ?>
--INI--
yaf.use_spl_autoload=1
yaf.lowcase_path=0
yaf.throw_exception=0
yaf.catch_exception=1
yaf.use_namespace=0
--FILE--
<?php
require "build.inc";
startup();
$config = array(
"application" => array(
"directory" => APPLICATION_PATH,
),
);
file_put_contents(APPLICATION_PATH . "/controllers/Index.php", <<<PHP
<?php
class IndexController extends Yaf_Controller_Abstract {
public \$actions = array(
"index" => "controllers/IndexAction.php",
);
}
PHP
);
file_put_contents(APPLICATION_PATH . "/controllers/IndexAction.php", <<<PHP
<?php
class IndexAction extends Yaf_Action_Abstract {
public function execute() {
return FALSE;
}
}
PHP
);
file_put_contents(APPLICATION_PATH . "/views/index/index.phtml", "Okey");
$app = new Yaf_Application($config);
$response = $app->run();
echo "Okey";
?>
--CLEAN--
<?php
require "build.inc";
shutdown();
?>
--EXPECTF--
Okey