summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Add releasenotes classVictor Dubiniuk2016-04-051-0/+114
|
* [stable9] Read available l10n files also from theme folderMorris Jobke2016-04-044-4/+28
| | | | | | | | | | | | | | * Read available l10n files also from theme folder The old behaviour was that only languages could be used for an app that are already present in the apps/$app/l10n folder. If there is a themed l10n that is not present in the apps default l10n folder the language could not be used and the texts are not translated. With this change this is possible and also the l10n files are loaded even if the default l10n doesn't contain the l10n file. * Inject server root - allows proper testing and separation of concerns
* Merge pull request #23709 from ↵Thomas Müller2016-04-011-5/+19
|\ | | | | | | | | owncloud/stable9-make-sure-that-encrypted-version-is-set [stable9] Make sure that the encrypted version is set
| * Make sure that the encrypted version is setLukas Reschke2016-03-311-5/+19
| | | | | | | | | | | | | | | | The code path called when using external storage with WebDAV is using `\OC\Files\Storage\Wrapper\Encryption::getMetaData` which did not contain the actual encrypted version inside the cache entry version. This lead to the following: 1. User uploaded a file 2. File is created and `\OC\Files\Storage\Wrapper\Encryption::getMetaData` is called. It has an empty `encryptedVersion` but sets `encrypted` to either `true` or `false`. 3. The call when updating the file cache will use the old version.
* | fix creation of versions of encrypted files on external storagesBjoern Schiessle2016-03-316-68/+151
|/ | | | | | in order to create a 1:1 copy of a file if a version gets created we need to store this information on copyBetweenStorage(). This allows us to by-pass the encryption wrapper if we read the source file.
* Merge pull request #23652 from owncloud/stable9_23651Thomas Müller2016-03-301-0/+11
|\ | | | | [Stable 9] Non moveable mount points should always be UPDATE+DELETE shareable
| * Non moveable mount points should always be UPDATE+DELETE shareableRoeland Jago Douma2016-03-301-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #23536 The new sharing code is much stricter in checking permissions. However for non moveable mounts the permissions UPDATE+DELETE are not reported on the mount point. This is just a quick fix. * Updated unit tests
* | only remove avatars from the folder we store them inRobin Appelman2016-03-301-2/+1
|/
* dont die when we cant save the resized avatar, log insteadRobin Appelman2016-03-251-1/+1
|
* properly use fileinfo objectsRobin Appelman2016-03-231-18/+63
|
* pass the fileinfo to the node if availableRobin Appelman2016-03-232-15/+8
|
* Block group sharing in API and in share managerRoeland Jago Douma2016-03-221-0/+30
| | | | * Fix tests
* Merge pull request #23293 from owncloud/backport-23108Thomas Müller2016-03-211-0/+42
|\ | | | | [stable9] Ensure that stored version is at least 1 for cross-storage copy
| * Ensure that stored version is at least 1 for cross-storage copyLukas Reschke2016-03-161-0/+42
| | | | | | | | | | | | | | | | | | In case of a move operation from an unencrypted to an encrypted storage the old encrypted version would stay with "0" while the correct value would be "1". Thus we manually set the value to "1" for those cases. See also https://github.com/owncloud/core/issues/23078
* | Merge pull request #23309 from owncloud/backport-23164-stable9Thomas Müller2016-03-171-6/+24
|\ \ | | | | | | [stable9] Prevent certain DBs throwing exceptions on same-value updates
| * | Prevent certain DBs throwing exceptions on same-value updatesRobin McCorkell2016-03-161-6/+24
| |/ | | | | | | | | | | A PreconditionNotMetException must only be thrown if explicit preconditions are specified for setValues(), not if the value is merely the same as was already in the DB.
* / Add support for custom values in integrity checkerLukas Reschke2016-03-153-4/+80
|/
* Merge pull request #23022 from owncloud/stable9_backport_22602Thomas Müller2016-03-151-0/+70
|\ | | | | [stable 9] Do not check all chunks of a chunked upload if we do not need to
| * Added testsRoeland Jago Douma2016-03-091-0/+70
| | | | | | | | | | * Unit tests for OC_Filechunking to verify the isComplete function * Intergration tests to show that shuffling chunks is all fine
* | Merge pull request #23229 from ↵Thomas Müller2016-03-151-1/+8
|\ \ | | | | | | | | | | | | owncloud/backport-23218-memcached-exceptions-on-success [9.0] Fix errors in memcached implementation
| * | Fix errors in memcached implementationJoas Schilling2016-03-141-1/+8
| | |
* | | Generate a valid URL for link notificationRoeland Jago Douma2016-03-151-4/+23
|/ / | | | | | | | | | | fixes #23197 * Updated unit test
* / Explicitly check for portLukas Reschke2016-03-111-1/+9
|/ | | | | | The setup uses `\OCP\IRequest::getInsecureServerHost` which in some cases can also include a port. This makes the trusted domain check fail thus. I've decided to add this here that way because adjusting the setup would require parsing the host properly. This is not something that can be done very good in PHP. Check the following example for why `parse_url` is not our friend: https://3v4l.org/k501Z
* Revert "No longer evaluate appinfo/version"Vincent Petry2016-03-032-0/+0
|
* Keep "encryptedVersion" when calling `\OC\Files\View::copy`Lukas Reschke2016-03-031-6/+21
| | | | | | | | | | | | | | | | When calling `\OC\Files\View::copy` we should also keep the version to ensure that the file will always have the correct version attached and can be successfully decrypted. To test this the following steps are necessary (from https://github.com/owncloud/core/issues/22781#issuecomment-191328982): 1. setup a new ownCloud 9.0 beta2 2. enable encryption 2. upload a docx (5.7MB large) 3. upload the same file again and overwrite the existing file 4. I can download the original file and the first version 5. I restore the first version 6. restored version can no longer be downloaded with the error described above The manual cache operation in `\OCA\Files_Versions\Storage` is unfortunately necessary since `\OCA\Files_Versions\Storage::copyFileContents` is not using `\OCP\Files\Storage::moveFromStorage` in the case when an object storage is used. Due to the workaround added in https://github.com/owncloud/core/commit/54cea05271b887f1c8062c034741df869bc0f055 the stream is directly copied and thus bypassing the FS.
* Merge pull request #22742 from owncloud/ceph-keystone-readinessC. Montero Luque2016-03-013-290/+14
|\ | | | | Use readiness notification socket to be absolutely sure this works
| * local entrypoint.sh isn't needed - all fixes are upstreamMorris Jobke2016-03-012-276/+1
| |
| * Use sockets for startup notification in primary storage testsMorris Jobke2016-03-012-14/+13
| |
* | Use IQueryBuilder::PARAM_* instead of \PDO::PARAM_*Joas Schilling2016-02-294-5/+7
|/
* Merge pull request #22683 from owncloud/fix_22682Thomas Müller2016-02-291-0/+11
|\ | | | | Relax rootfolder check
| * Relax rootfolder checkRoeland Jago Douma2016-02-261-0/+11
| | | | | | | | | | * Updated unit tests * Added intergration test
* | Expiration date can only be enforced if default is enabledRoeland Jago Douma2016-02-261-0/+15
|/ | | | | | If the default expiration date is not enebaled it can not be enforced. * Added unit tests
* Merge pull request #22660 from owncloud/fix_22656Thomas Müller2016-02-261-0/+29
|\ | | | | Do not allow sharing of the users root folder
| * Do not allow sharing of the root folderRoeland Jago Douma2016-02-251-0/+29
| | | | | | | | | | | | | | | | | | | | | | Sharing of the users root folder should not be allowed as it is very weird UX. Also many of our clients have no proper way of displaying this. Added unit test Also added intergration tests to make sure we won't allow it in the future.
* | Merge pull request #22646 from owncloud/fix_22642Thomas Müller2016-02-261-6/+27
|\ \ | | | | | | Set default expiration date if none given on share creation
| * | Set default expiration date if none given on share creationRoeland Jago Douma2016-02-251-6/+27
| | | | | | | | | | | | | | | | | | | | | When we create a share for the first time we should set the default expiration date. If none is given. Fixes #22642
* | | Merge pull request #22650 from owncloud/fix_hookThomas Müller2016-02-261-2/+3
|\ \ \ | | | | | | | | Fix verifyExpirationDate passwordSet argument
| * | | Fix verifyExpirationDate passwordSet argumentRoeland Jago Douma2016-02-251-2/+3
| |/ / | | | | | | | | | | | | | | | Password set should be false if the password is null. Also updated the unit tests to tests this now.
* | / Fix formatting of responseLukas Reschke2016-02-251-52/+58
| |/ |/| | | | | The elements are expected to be within a `service` array as per specification.
* | Merge pull request #22579 from owncloud/fix_broken_unencrypted_sizeThomas Müller2016-02-251-1/+157
|\ \ | |/ |/| Heal unencrypted file sizes at download time (second approach)
| * recalculate unencrypted size if we assume that the size stored in the db is ↵Bjoern Schiessle2016-02-231-1/+157
| | | | | | | | not correct
* | Merge pull request #22573 from owncloud/issue-22568-allow-string-object-idsThomas Müller2016-02-241-37/+37
|\ \ | | | | | | Make sure we can store strings as per the interface
| * | Make sure we can store strings as per the interfaceJoas Schilling2016-02-221-37/+37
| | |
* | | Merge pull request #22569 from owncloud/issue-22566-too-much-mapping-entriesThomas Müller2016-02-231-0/+36
|\ \ \ | | | | | | | | Allow defining a limit and offset for getObjectIdsForTags
| * | | Allow defining a limit and offset for getObjectIdsForTagsJoas Schilling2016-02-231-0/+36
| |/ /
* | | Merge pull request #22551 from owncloud/make-exceptions-easier-to-debugThomas Müller2016-02-231-4/+13
|\ \ \ | |/ / |/| | Throw normal exceptions instead of eating them
| * | Throw normal exceptions instead of eating themLukas Reschke2016-02-221-4/+13
| | | | | | | | | | | | | | | | | | Partially addresses https://github.com/owncloud/core/issues/22550 Replaces https://github.com/owncloud/core/pull/20185
* | | We should check for exceptions when trying to get the avatarRoeland Jago Douma2016-02-221-0/+26
|/ / | | | | | | | | | | | | Fixes #22550 * Updated phpdoc of avatatmanager * Add unit test
* | Merge pull request #22503 from owncloud/issue_22500Thomas Müller2016-02-191-9/+88
|\ \ | | | | | | When (re-)sharing an incomming federated share set the corrent owner
| * | When (re-)sharing an incomming federated share set the corrent ownerRoeland Jago Douma2016-02-191-9/+88
| |/ | | | | | | | | | | | | | | | | | | | | | | Incomming federated shares are a special kind. We mount them as normal webdav shares but we do supply owner info with the federated cloud id of the share owner. Since we do not yet have the new resharing behaviour on federated shares we need to set the correct owner. Which will allow sharing and proper mounting for other users. fixes #22500