Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2014-03-20Merge pull request #7808 from owncloud/quota-usequotaevenwhenfreespaceunknownVincent Petry
Still return quota value when free space is unknown
2014-03-20Merge pull request #7732 from owncloud/datafolderexistenceVincent Petry
Added .ocdata file to check for data folder validity
2014-03-19Still return quota value when free space is unknownVincent Petry
Fixed the quota storage wrapper to correctly return the quota value when the free space is not known (which usually happens when the disk_free_space function is disabled)
2014-03-18Merge branch 'master' into close-session-faster-masterThomas Müller
2014-03-18introduce reopen() method to be used for unit test execution only - right ↵Thomas Müller
after a unit test has been executed the session will be reopened
2014-03-18Merge pull request #7649 from owncloud/routing-publicThomas Müller
Move routing classes to an interface and expose it in the public api
2014-03-17Merge pull request #7760 from owncloud/core-roundbytesicewind1991
Correctly round bytes when converted from human readable format
2014-03-17Correctly round bytes when converted from human readable formatVincent Petry
Instead of leave two decimal places which is confusing, round the byte values correctly to the closest byte.
2014-03-17unit tests for specific image type output addedThomas Müller
2014-03-14move session reset to endTest() - necessary because we need a valid session ↵Thomas Müller
in the next unit tests setUp() call
2014-03-14Added .ocdata file to check for data folder validityVincent Petry
In environments where the data folder is mount from another partition, it is important to check that the data folder we see is actually the real one. If the mount failed for some reasons, this fix will make ownCloud temporarily unavailable instead of causing unpredictable behavior.
2014-03-13adding StartSessionListener which initializes the session before each test ↵Thomas Müller
case execution
2014-03-11Merge pull request #7650 from owncloud/quota-totalspaceVincent Petry
Fixed total space display when data size exceeds quota
2014-03-10Fixed total space display when data size exceeds quotaVincent Petry
The total space display in the personal page now shows the quota value instead of used space when used space exceeds the quota (soft quota).
2014-03-10Move the router classes to a namespace and expose it with a public interfaceRobin Appelman
2014-03-10Merge pull request #7624 from owncloud/enc-encryptedusedspacefixVincent Petry
[master] Fixed used space to be based on unencrypted size
2014-03-07Return unencrypted_size of folder when queriedVincent Petry
This fixes the "used space" to be based on the unencrypted size, not encrypted size, to be consistent with how quota/space is handled when encryption is enabled
2014-03-06Added unit tests for serverHost and other related functionsVincent Petry
2014-02-28Merge pull request #7439 from owncloud/unit-test-for-7430Thomas Müller
adding test for migrations on columns using keywords
2014-02-27initialize etags of temporary storageJörn Friedrich Dreyer
2014-02-27use assertInternalType for typecheckingJörn Friedrich Dreyer
2014-02-27use assertSame and assertNotSame for etag checksJörn Friedrich Dreyer
2014-02-26let's name the column 'select' because this is a keyword on all platformsThomas Müller
2014-02-26adding test for migrations on columns using keywordsThomas Müller
2014-02-21Merge pull request #7292 from owncloud/sharing_testsBjörn Schießle
fix sharing unit tests
2014-02-21Merge pull request #7337 from owncloud/test_for_6935Björn Schießle
add unit test for \OC\URLGenerator::getAbsoluteURL
2014-02-21fix sharing unit testsBjoern Schiessle
2014-02-21Remove unit tests which causes the filesystem tests to failRobin Appelman
2014-02-20add unit test for \OC\URLGenerator::getAbsoluteURL to verify #6935Bjoern Schiessle
2014-02-20Merge pull request #6962 from owncloud/quota-space-rootThomas Müller
Allow passing a root folder to get the used space from in the quota wrapper
2014-02-20Merge pull request #6714 from owncloud/files-newfileinvalidcharsfixLukas Reschke
Added extra checks for invalid file chars in newfile.php and newfolder.php
2014-02-19Fixed ext storage webdav path encodingVincent Petry
- Some WebDAV servers like lighttpd need paths in URLs to be properly encoded - Added error log output when curl connection failed - Added check for 'resourcetype' in case the WebDAV server doesn't support/return it - Fixed touch() to return false if the server doesn't implement PROPPATCH - Added optional delay in WebDAV unit tests to use when testing against lighttpd's WebDAV
2014-02-19Merge pull request #7274 from owncloud/scrutinizer-patch-1Morris Jobke
Scrutinizer Auto-Fixes
2014-02-19Merge pull request #7260 from owncloud/watcher-policyicewind1991
Allow setting the frequency of which the file watcher checks for updates
2014-02-19add unit tests for watcher policiesRobin Appelman
2014-02-19Scrutinizer Auto-FixesScrutinizer Auto-Fixer
This patch was automatically generated as part of the following inspection: https://scrutinizer-ci.com/g/owncloud/core/inspections/cdfecc4e-a37e-4233-8025-f0d7252a8720 Enabled analysis tools: - PHP Analyzer - JSHint - PHP Copy/Paste Detector - PHP PDepend
2014-02-18Merge pull request #7253 from owncloud/preferences-cachingicewind1991
Add caching to OC\Preferences
2014-02-18Added file name check in webdav connectorVincent Petry
- added file name check for the put, rename and setNames() methods which throw a "Bad Request" whenever invalid characters are used - replaced \OC\Filesystem usage with $this->getFS() to be able to write unit tests
2014-02-18Added extra checks for invalid file chars in newfile.php and newfolder.phpVincent Petry
- added PHP utility function to check for file name validity - fixes issue where a user can create a file called ".." from the files UI - added extra checks to make sure newfile.php and newfolder.php also check for invalid characters
2014-02-18Merge pull request #6650 from owncloud/migration_unit_testsTom Needham
User migration fix, and basic unit test
2014-02-18Merge pull request #7176 from owncloud/styleLukas Reschke
Some style fixes
2014-02-18Fix poor spellingtomneedham
2014-02-18Allow setting the frequency of which the file watcher checks for updatesRobin Appelman
2014-02-18Add caching to OC\PreferencesRobin Appelman
2014-02-17Merge branch 'master' into migration_unit_teststomneedham
2014-02-17Finish basic testing of user exporttomneedham
2014-02-15Merge pull request #7156 from owncloud/backgroundjob-publicThomas Müller
Add the background job list to the public server container
2014-02-14Fix test cases for group managerRobin Appelman
2014-02-13sort expected result in testsRobin Appelman
2014-02-12Add unit tests for JobListRobin Appelman