mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @subpackage tests
|
|
*/
|
|
class BacktraceTest extends SapphireTest {
|
|
|
|
public function testFullFuncNameWithArgsAndCustomCharLimit() {
|
|
$func = array(
|
|
'class' => 'MyClass',
|
|
'type' => '->',
|
|
'file' => 'MyFile.php',
|
|
'line' => 99,
|
|
'function' => 'myFunction',
|
|
'args' => array(
|
|
'number' => 1,
|
|
'mylongstring' => 'more than 20 characters 1234567890',
|
|
)
|
|
);
|
|
$this->assertEquals(
|
|
'MyClass->myFunction(1,more than 20 charact...)',
|
|
SS_Backtrace::full_func_name($func, true, 20)
|
|
);
|
|
}
|
|
|
|
public function testIgnoredFunctionArgs() {
|
|
$bt = array(
|
|
array(
|
|
'type' => '->',
|
|
'file' => 'MyFile.php',
|
|
'line' => 99,
|
|
'function' => 'myIgnoredGlobalFunction',
|
|
'args' => array('password' => 'secred',)
|
|
),
|
|
array(
|
|
'class' => 'MyClass',
|
|
'type' => '->',
|
|
'file' => 'MyFile.php',
|
|
'line' => 99,
|
|
'function' => 'myIgnoredClassFunction',
|
|
'args' => array('password' => 'secred',)
|
|
),
|
|
array(
|
|
'class' => 'MyClass',
|
|
'type' => '->',
|
|
'file' => 'MyFile.php',
|
|
'line' => 99,
|
|
'function' => 'myFunction',
|
|
'args' => array('myarg' => 'myval')
|
|
)
|
|
);
|
|
$orig = Config::inst()->get('SS_Backtrace', 'ignore_function_args');
|
|
Config::inst()->update('SS_Backtrace', 'ignore_function_args',
|
|
array(
|
|
array('MyClass', 'myIgnoredClassFunction'),
|
|
'myIgnoredGlobalFunction'
|
|
)
|
|
);
|
|
|
|
$filtered = SS_Backtrace::filter_backtrace($bt);
|
|
|
|
$this->assertEquals('<filtered>', $filtered[0]['args']['password'], 'Filters global functions');
|
|
$this->assertEquals('<filtered>', $filtered[1]['args']['password'], 'Filters class functions');
|
|
$this->assertEquals('myval', $filtered[2]['args']['myarg'], 'Doesnt filter other functions');
|
|
|
|
Config::inst()->remove('SS_Backtrace', 'ignore_function_args');
|
|
Config::inst()->update('SS_Backtrace', 'ignore_function_args', $orig);
|
|
}
|
|
|
|
}
|