summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* migrate \OC\AllConfig to \OCP\IConfigMorris Jobke2014-12-083-5/+4
|
* Extract interaction with config.php into SystemConfigMorris Jobke2014-12-081-2/+11
| | | | | | * introduce SystemConfig to avoid DI circle (used by database connection which is itself needed by AllConfig that itself contains the methods to access the config.php which then would need the database connection - did you get it? ;)) * use DI container and use that method in legacy code paths (for easier refactoring later) * create and use getSystemConfig instead of query() in DI container
* React on other statuscodes than 200Lukas Reschke2014-12-082-22/+9
|
* Add statuscodesLukas Reschke2014-12-082-10/+86
|
* Add REST route for user & group managementLukas Reschke2014-12-083-0/+618
| | | | First step of a somewhat testable user management. - I know, the JSON returns are in an ugly format but the JS expects it that way. So let's keep it that way until we have time to fix the JS in the future.
* Merge pull request #12583 from owncloud/trim-portMorris Jobke2014-12-051-0/+17
|\ | | | | Trim port from domain
| * Add test for IPv6 without portLukas Reschke2014-12-041-1/+2
| |
| * Trim port from domainLukas Reschke2014-12-031-0/+16
| | | | | | | | | | | | Depending on the used environment the port might be appended to the host header resulting in an inaccessible instance when initially setting up on a system with a different HTTP or HTTPS port. (for example test:500) To test this setup ownCloud under a different port with and without this patch. (heads-up: localhost is always white-listed, so use a different domain)
* | Merge pull request #12622 from owncloud/disable-for-allJoas Schilling2014-12-051-3/+6
|\ \ | | | | | | Disable when no sendmail is available
| * | Disable when no sendmail is availableLukas Reschke2014-12-041-3/+6
| | |
* | | Merge pull request #12619 from owncloud/use-also-original-heaMorris Jobke2014-12-041-1/+2
|\ \ \ | | | | | | | | Merge headers
| * | | Fix unit testLukas Reschke2014-12-041-1/+2
| |/ /
* | | Merge pull request #12616 from owncloud/node-fileinfoMorris Jobke2014-12-044-46/+73
|\ \ \ | | | | | | | | make \OC\Files\Node\Node implement the FileInfo interface
| * | | make \OC\Files\Node\Node implement the FileInfo interfaceRobin Appelman2014-12-044-46/+73
| | | |
* | | | Merge pull request #12596 from owncloud/remove-travis-tracesMorris Jobke2014-12-042-13/+1
|\ \ \ \ | |_|/ / |/| | | Remove last traces of travis integration
| * | | PHP < 5.4 is not supported anymore - see #12606Morris Jobke2014-12-041-8/+0
| | | |
| * | | Remove last traces of travis integrationMorris Jobke2014-12-042-7/+3
| |/ /
* | | no nested xml tags on dependenciesThomas Müller2014-12-043-15/+11
| | |
* | | adding command dependencyThomas Müller2014-12-042-1/+17
| | |
* | | adjust dependency analyzer to use attributes properlyThomas Müller2014-12-041-4/+4
| | |
* | | switch to different parsing implementation to get xml attributes properly ↵Thomas Müller2014-12-045-55/+19
| | | | | | | | | | | | handled
* | | adding supported databasesThomas Müller2014-12-043-2/+39
| | |
* | | introduce dependency analyzer to take care of app dependenciesThomas Müller2014-12-044-6/+139
| | | | | | | | | | | | some more unit tests on xml info parser
* | | adding new dependency for php version in apps info.xmlThomas Müller2014-12-042-1/+9
|/ /
* | Merge pull request #12544 from owncloud/fix-windows-unittestsThomas Müller2014-12-0321-35/+43
|\ \ | | | | | | Replace uniqid calls with $this->getUniqueID so tests pass again on windows
| * | Replace uniqid calls with $this->getUniqueID so tests pass again on windowsJoas Schilling2014-12-0321-35/+43
| |/
* / drop files_external tests from autotest - they will be executed with ↵Morris Jobke2014-12-032-3/+1
|/ | | | autotest-external.sh which is coming
* Merge pull request #12488 from owncloud/activity_group_multiple_conditionsLukas Reschke2014-11-281-2/+5
|\ | | | | activitymanager: concatenate queries with 'or'
| * concatenate queries with 'or'Bjoern Schiessle2014-11-281-2/+5
| |
* | Skip lostcontroller sending email test on windowsJoas Schilling2014-11-281-0/+5
|/
* Merge pull request #12472 from owncloud/modifyCookiesMorris Jobke2014-11-283-9/+95
|\ | | | | Add functions to modify cookies to response class
| * Add functions to modify cookies to response classLukas Reschke2014-11-273-9/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently there is no AppFramework way to modify cookies, which makes it unusable for quite some use-cases or results in untestable code. This PR adds some basic functionalities to add and invalidate cookies. Usage: ```php $response = new TemplateResponse(...); $response->addCookie('foo', 'bar'); $response->invalidateCookie('foo'); $response->addCookie('bar', 'foo', new \DateTime('2015-01-01 00:00')); ``` Existing cookies can be accessed with the AppFramework using `$this->request->getCookie($name)`.
* | Merge pull request #12443 from owncloud/issue/6101-all-classes-autoloadableMorris Jobke2014-11-281-2/+0
|\ \ | | | | | | Issue/6101 Make all interfaces/classes autoloadable
| * | Move share interfaces to own files so they can be autoloadedJoas Schilling2014-11-271-2/+0
| |/
* | Add storage and cache wrappers to apply a permissions mask to a storageRobin Appelman2014-11-272-0/+199
| |
* | Add storage and cache wrappers to jail a storage to a subfolderRobin Appelman2014-11-273-4/+126
| |
* | Correctly namespace and autoload DatabaseExceptionJoas Schilling2014-11-271-2/+2
|/
* Merge pull request #12350 from mprokop/link_expirationMorris Jobke2014-11-261-4/+2
|\ | | | | fix calculation of expiration date if there is a default expiration date...
| * Consolidate if statement, and update unit testMiguel Prokop2014-11-211-4/+2
| |
* | Merge pull request #12421 from ↵Morris Jobke2014-11-267-111/+111
|\ \ | | | | | | | | | | | | owncloud/issue/6101-remove-namespace-permission-constants Issue/6101 remove namespace permission constants
| * | Replace deprecated constant with new class constantJoas Schilling2014-11-257-111/+111
| | |
* | | Merge pull request #12420 from owncloud/sqlite-wal-2Morris Jobke2014-11-262-19/+18
|\ \ \ | | | | | | | | adding new config parameter for sqlite to specify the journal mode
| * | | fix failing unit test for the temp manager - concurrently executed unit ↵Thomas Müller2014-11-251-2/+2
| | | | | | | | | | | | | | | | tests influence each other
| * | | adding new config parameter for sqlite to specify the journal modeThomas Müller2014-11-251-17/+16
| |/ /
* | | handle invalid xml fileThomas Müller2014-11-252-0/+27
| | |
* | | simplify xml parser codeThomas Müller2014-11-252-17/+27
| | |
* | | Introduce app info xml parser including basic unit test - necessary for #10777Thomas Müller2014-11-252-0/+79
|/ /
* | Merge pull request #12380 from owncloud/remove-oc-migrateLukas Reschke2014-11-251-98/+0
|\ \ | | | | | | Remove OC_Migrate
| * | Remove OC_MigrateLukas Reschke2014-11-241-98/+0
| | | | | | | | | | | | | | | | | | This is unused legacy code. Let it die with ~~~honor~~ fire. Fixes https://github.com/owncloud/core/issues/12346
* | | Merge pull request #12294 from owncloud/route-postfixThomas Müller2014-11-241-1/+14
|\ \ \ | | | | | | | | Add route postfix to allow url versioning when only the http method changed