summaryrefslogtreecommitdiffstats
path: root/tests/lib/templatelayout.php
Commit message (Collapse)AuthorAgeFilesLines
* Read from IRequest instead of reading twiceLukas Reschke2015-02-271-72/+0
| | | | Potentially fixes https://github.com/owncloud/core/issues/14541 and https://github.com/owncloud/core/issues/14506
* Refactor OC_Request into TrustedDomainHelper and IRequestLukas Reschke2015-02-161-1/+1
| | | | | | | | | | This changeset removes the static class `OC_Request` and moves the functions either into `IRequest` which is accessible via `\OC::$server::->getRequest()` or into a separated `TrustedDomainHelper` class for some helper methods which should not be publicly exposed. This changes only internal methods and nothing on the public API. Some public functions in `util.php` have been deprecated though in favour of the new non-static functions. Unfortunately some part of this code uses things like `__DIR__` and thus is not completely unit-testable. Where tests where possible they ahve been added though. Fixes https://github.com/owncloud/core/issues/13976 which was requested in https://github.com/owncloud/core/pull/13973#issuecomment-73492969
* Make root tests extend the \Test\TestCaseJoas Schilling2014-11-191-4/+8
|
* Add proper setup and teardownVincent Petry2014-10-201-0/+17
| | | | Properly restore REQUEST_URI and SCRIPT_NAME after test runs
* Add "$_SERVER['REQUEST_URI']" to fix the unit testsLukas Reschke2014-10-201-1/+8
| | | | Let's hope that works
* Add unit tests for convertToRelativePathLukas Reschke2014-10-201-0/+44