aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/template_test.php
Commit message (Collapse)AuthorAgeFilesLines
* [feature/template-engine] Factor template locator out of template class.Oleg Pudeyev2011-07-301-2/+2
| | | | | | | | | | | Template locator is responsible for maintaining mapping from template handles to filenames and paths, and provides resolution services using these mappings. Template locator is aware of template inheritance and is capable of checking template file existence on the filesystem. PHPBB3-9726
* [feature/template-engine] Test template DEFINE statements across filesNils Adermann2011-07-171-1/+1
| | | | PHPBB3-9726
* [feature/template-engine] Refactor $config dependency out of the filterIgor Wiedler2011-07-101-3/+1
| | | | | | | | | | The template stream filter no longer depends on the $config global. Instead it uses a 'allow_php' param that is passed via stream_bucket_append's last argument. Tests also adjusted. PHPBB3-9726
* [feature/template-engine] Moved includephp test to its own file.Oleg Pudeyev2011-05-181-14/+0
| | | | PHPBB3-9726
* [feature/template-engine] Delete useless template require.Oleg Pudeyev2011-05-181-1/+0
| | | | | | It is now handled by autoloading. PHPBB3-9726
* [feature/template-engine] Added a test for inclusion of php files from subdir.Oleg Pudeyev2011-05-141-100/+2
| | | | PHPBB3-9726
* [feature/template-engine] Make INCLUDEPHP relative to board root.Oleg Pudeyev2011-05-121-5/+5
| | | | PHPBB3-9726
* [feature/template-engine] Replaced globals with dependency injection.Oleg Pudeyev2011-05-121-1/+3
| | | | PHPBB3-9726
* [feature/template-engine] Deleted useless catch.Oleg Pudeyev2011-05-121-4/+0
| | | | | | In tests there is no need to catch unexpected exceptions. PHPBB3-9726
* [feature/template-engine] Delete obsolete comments pertaining to notices.Oleg Pudeyev2011-05-121-7/+0
| | | | PHPBB3-9726
* [feature/template-engine] Delete template class, use phpbb_template instead.Oleg Pudeyev2011-05-041-1/+1
| | | | PHPBB3-9726
* [feature/template-engine] Only copy files to cache if they exist.Oleg Pudeyev2011-05-011-2/+3
| | | | | | | | When testing eval code path, compiled templates may not be written to the file system, and unconditionally trying to copy them breaks tests. PHPBB3-9726
* [feature/template-engine] Relax missing file exception check.Oleg Pudeyev2011-05-011-1/+1
| | | | | | | As long as the exception message has the correct description and file name we should not care which function raised the exception. PHPBB3-9726
* [feature/template-engine] Fix negative variable expressionsIgor Wiedler2011-04-251-1/+1
| | | | | | | | | | | | | compile_tag_if had the flawed approach of adding an isset statement for all variables to the beginning of the if. This fails for negative expressions, and checking those takes a considerable effort. The easier solution is to make the variable expression itself conditional, defaulting to null if it is not set. Thanks to naderman for the solution. PHPBB3-9726
* [feature/template-engine] Added a test for reuse of loop identifiers.Oleg Pudeyev2011-04-251-0/+10
| | | | | | | | | This currently does not pass, thus it is commented out. The reuse appears implausible in the same file, however it may be also done across template files where it is much harder to detect. PHPBB3-9726
* [feature/template-engine] Corrected miscompilation of loop size constructs.Oleg Pudeyev2011-04-251-0/+7
| | | | PHPBB3-9726
* [feature/template-engine] Corrected an off-by-one error in nested namespaces.Oleg Pudeyev2011-04-241-1/+10
| | | | | | | | This error resulted in a dot from the namespace being placed into variable reference in compiled template code, thus creating bogus compiled template code. PHPBB3-9726
* [feature/template-engine] Added a test for multilevel references in loops.Oleg Pudeyev2011-04-241-0/+14
| | | | | | | | | This currently fails. This test is a reduced version of permission_mask template in acp, which is not correctly compiled by the current template engine code. PHPBB3-9726
* [feature/template-engine] Deleted silencing of notices.Oleg Pudeyev2011-04-241-3/+3
| | | | | | | The code is now supposed to be notice-free, therefore there is no need to have the notices silenced. PHPBB3-9726
* [feature/template-engine] Deleted $template from phpbb_template_compile class.Oleg Pudeyev2011-04-241-2/+1
| | | | | | | | | | | | | phpbb_template_compile is now much simpler. It takes complete file paths as inputs, either source template path or source template path and output compiled template path. The number of methods also went down to two - compile template and returned compiled text or compile and write to file. phpbb_compile class is responsible for determining source and compiled paths. It already had all the data necessary for this, now the code is in the same place as the data it uses. PHPBB3-9726
* [feature/template-engine] Allow leading underscores in variable names.Oleg Pudeyev2011-04-241-0/+9
| | | | | | Subsilver uses ._file in overall_header. PHPBB3-9726
* [feature/template-engine] Fix recompilation logic.Oleg Pudeyev2011-04-241-1/+1
| | | | | | | | | Do not change $recompile from true to false - any recompilation condition alone is sufficient to force recompilation. Also uncomment the nonexistent file test which passes with this fix. PHPBB3-9726
* [feature/template-engine] Update tests.Marek A. Ruszczynski2011-04-231-12/+25
| | | | PHPBB3-9726
* Merge branch 'develop-olympus' into developNils Adermann2011-03-071-203/+44
|\ | | | | | | | | | | * develop-olympus: [ticket/10081] remove $phpEx. [ticket/10081] Cleanup Template Tests.
| * [ticket/10081] remove $phpEx.Marek A. Ruszczynski2011-03-071-10/+3
| | | | | | | | PHPBB3-10081
| * [ticket/10081] Cleanup Template Tests.Marek A. Ruszczynski2011-03-071-196/+44
| | | | | | | | | | | | There are no incomplete template tests anymore. PHPBB3-10081
* | Merge branch 'develop-olympus' into developAndreas Fischer2011-01-311-2/+2
|\ \ | |/ | | | | | | | | | | | | * develop-olympus: [ticket/10011] Tests don't work on PHP < 5.3 Conflicts: tests/security/redirect_test.php
| * [ticket/10011] Tests don't work on PHP < 5.3Erik Frèrejean2011-01-311-2/+2
| | | | | | | | | | | | | | | | Due to the usage of `__DIR__` for the file includes the tests can't be ran on systems with PHP < 5.3. Replace all occurances of `__DIR__` with `dirname(__FILE__)`. PHPBB3-10011
* | Merge branch 'develop-olympus' into developIgor Wiedler2011-01-101-24/+5
|/ | | | This merge commit includes ascraeus-specific renames and adjustments.
* [ticket/9987] Rename test files to include a _test suffixIgor Wiedler2011-01-101-0/+689
PHPBB3-9987