aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/files
Commit message (Collapse)AuthorAgeFilesLines
* clear permissions cache when scanning a fileRobin Appelman2013-09-241-0/+17
|
* Move setUp() and tearDown() up in tests/lib/files/cache/scanner.php.Andreas Fischer2013-09-231-15/+15
|
* Merge remote-tracking branch 'owncloud/master' into fixing-4866-masterAndreas Fischer2013-09-232-1/+24
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * owncloud/master: (98 commits) [tx-robot] updated from transifex files: when filtering search results, ensure results are children of the fakeroot not just path starting the same setting a default on filecache column unencrypted_size [tx-robot] updated from transifex remove unneccessary lib in namespace namespaces use upcasefirst parts when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app its magic! initialize variable calculate correct permissions while toggle the password protection make sure that both $permissions and $oldPermissions have the same type Add copyright, remove starting blank line update inherit docs comment Fix insert/update/delete helper functions for oracle Add missing return true statements to legacy preferences functions Add missing static Convert OC_Preference to object interface fix race condition in lazy preview loading use {count} instead of 'One' for more versatile translation fix double translation of error message use n to translate title fixing typos and l10n ... Conflicts: tests/lib/files/cache/scanner.php
| * Merge pull request #4327 from owncloud/scanfile-removeThomas Müller2013-09-221-0/+10
| |\ | | | | | | remove deleted files while scanning
| | * remove deleted files while scanningRobin Appelman2013-08-061-0/+10
| | |
| * | files: when filtering search results, ensure results are children of the ↵Robin Appelman2013-09-221-0/+14
| | | | | | | | | | | | fakeroot not just path starting the same
* | | Do not convert boolean to integer in tests. put() already does this.Andreas Fischer2013-09-211-1/+0
| | |
* | | when storing back the data field 'encrypted' it is necessary to cast the ↵Thomas Müller2013-09-201-0/+1
| | | | | | | | | | | | boolean to an integer to make pg happy
* | | etag changes are now propagated up the file treeThomas Müller2013-09-161-6/+15
| | |
* | | recreate an etag within the scanner if the cache contains an empty etagThomas Müller2013-09-161-0/+17
|/ /
* | - giving the user a new id for each test run in order to prevent reuse of ↵Thomas Müller2013-09-131-1/+2
| | | | | | | | | | | | e.g. permissions data in the database - setting the current user id because \OC\FilesView relies on \OC_User::getUser()
* | Merge branch 'master' into fileapi-forewardRobin Appelman2013-09-121-1/+30
|\ \
| * \ Merge pull request #4477 from owncloud/hooks-viewBernhard Posselt2013-09-041-1/+30
| |\ \ | | | | | | | | also emit hooks for views that are a subfolder of the user folder
| | * | test case for hooks send from a non-default viewRobin Appelman2013-08-291-1/+30
| | | |
* | | | adjust test cases to namespace changesRobin Appelman2013-09-105-26/+26
| | | |
* | | | Provide an implementation of the fileapi for oc6 build on top of the old apiRobin Appelman2013-09-015-0/+1700
|/ / /
* | | merge master in storage-wrapper-quotaRobin Appelman2013-08-184-50/+100
|\| |
| * | Scanner: additional tests for reusing etags during scanningRobin Appelman2013-08-122-0/+92
| |/
| * Add test for calculating size of newly empty folderMichael Gapczynski2013-07-291-0/+5
| |
| * Merge branch 'master' into storage-test-cleanupThomas Müller2013-07-242-4/+13
| |\ | | | | | | | | | | | | Conflicts: tests/lib/files/storage/storage.php
| * | Storage: remove some unneeded strict tests of mtime behaviourRobin Appelman2013-07-161-21/+2
| | |
| * | Storage: remove tests for searchRobin Appelman2013-07-161-29/+1
| | |
* | | add quota storage wrapperRobin Appelman2013-07-251-0/+61
| | |
* | | move storage wrapper test to new namespaceRobin Appelman2013-07-251-2/+2
| | |
* | | add quota streamwrapper that limits the amount of data that can be written ↵Robin Appelman2013-07-251-0/+78
| |/ |/| | | | | to a stream
* | Merge pull request #3925 from berendt/reworking_OC_Files_Storage_AmazonS3Thomas Müller2013-07-221-9/+9
|\ \ | | | | | | reworking of \OC\Files\Storage\AmazonS3
| * | increasing allowed time differenceChristian Berendt2013-07-081-9/+9
| | |
| * | revoking additional testsChristian Berendt2013-07-041-99/+0
| | |
| * | remove tests from the wrong test methodChristian Berendt2013-07-031-10/+0
| | |
| * | test moving and copying of subdirectoriesChristian Berendt2013-07-031-0/+41
| | |
| * | move new tests into the correct test methodChristian Berendt2013-07-031-10/+10
| | |
| * | test working with files in subdirectoriesChristian Berendt2013-07-031-0/+10
| | |
| * | test working with subdirectoriesChristian Berendt2013-07-031-0/+48
| | |
| * | test copying and moving files in subdirectoriesChristian Berendt2013-07-031-0/+10
| | |
| * | increasing difference for modifcation time testsChristian Berendt2013-07-031-9/+9
| | | | | | | | | | | | | | | one second is sometimes not enough when using a slow storage connection, three seconds is working better (at least when testing against S3)
* | | Merge branch 'master' into doctrineBart Visscher2013-07-137-4/+161
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | Conflicts: 3rdparty lib/db.php lib/setup.php tests/lib/db.php tests/lib/dbschema.php
| * | Scanner test: ensure mtime in the cache is the same as on the storage to ↵Robin Appelman2013-07-051-0/+1
| |/ | | | | | | prevent random failures
| * rename can cause mtime change - invalid assertThomas Müller2013-07-011-2/+4
| |
| * Merge pull request #3763 from owncloud/recursive-rmdirThomas Müller2013-06-301-1/+13
| |\ | | | | | | Make rmdir recursive for local storage
| | * Make rmdir recursive for local storageRobin Appelman2013-06-171-1/+13
| | |
| * | Merge pull request #3635 from owncloud/storage-wrapperBart Visscher2013-06-292-0/+72
| |\ \ | | | | | | | | Give apps the option to wrap storage backends
| | * | fix storage wrapper namespacesRobin Appelman2013-06-282-3/+3
| | | |
| | * | add test cases for MountRobin Appelman2013-06-071-0/+46
| | | |
| | * | merge master into storage-wrapperRobin Appelman2013-06-074-9/+205
| | |\ \
| | * | | Add wrapper storage backendRobin Appelman2013-05-081-0/+26
| | | | |
| * | | | better unit tests for static stream wrapperRobin Appelman2013-06-281-0/+68
| | | | |
| * | | | graceful teardown of cacheJörn Friedrich Dreyer2013-06-241-1/+3
| | | | |
* | | | | View test needs a dummy userBart Visscher2013-06-261-0/+9
|/ / / /
* | | | Merge pull request #3796 from ↵Thomas Müller2013-06-201-4/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | owncloud/gracefully_handle_teardown_in_scanner_test skip teardown if cache has not been set up
| * | | | skip teardown if cache has not been set upJörn Friedrich Dreyer2013-06-201-4/+6
| | | | |