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
2015-06-23Merge pull request #16581 from owncloud/stable7-cors-no-cookie-authLukas Reschke
Disallow cookie auth for cors requests stable7
2015-06-22AppFramework annotation whitespace unit testRobin McCorkell
2015-05-27backport #16532 to stable7Bernhard Posselt
2015-04-22fix filesystem and encryption testsJörn Friedrich Dreyer
2015-02-09Add a test for the post_shared hook shareTypeJoas Schilling
Conflicts: tests/lib/share/share.php
2015-02-06Normalize before processingLukas Reschke
2015-02-04detect root of mountpoint also if the trailing slash is missedBjoern Schiessle
2015-01-23Merge pull request #13470 from ↵Morris Jobke
owncloud/stable7-share-fixfindshareforuserwithmultiplegroups [stable7] Fix getItemSharedWithUser for groups
2015-01-22Fix undefined offset 1 for wrong user mail addressMorris Jobke
* fixes Undefined offset: 1 at lib/private/mail.php#143
2015-01-22Add unit testRobin Appelman
2015-01-21Fix getItemSharedWithUser for groupsVincent Petry
Fixed SQL query for whenever a user has more than one group. Added missing $owner where clause for group lookup. Added unit tests for the group cases. Backport of 40931a8b0d5d10c0f711756a4e8a423ff055621e from master
2015-01-15Fix testRobin Appelman
2015-01-15Return valid fileinfo objects for part filesRobin Appelman
2015-01-08Add \OC\TempManager to handle creating and cleaning temporary filesRobin Appelman
Conflicts: lib/private/server.php lib/public/iservercontainer.php
2014-12-05Add test for IPv6 without portLukas Reschke
2014-12-05Trim port from domainLukas Reschke
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)
2014-12-01Merge pull request #11747 from owncloud/storeCredentialsOnlyInSessionIfRequiredVincent Petry
Store credentials only in session if required
2014-11-26Consolidate if statement, and update unit testMiguel Prokop
2014-11-20Backport \OC\Security\Crypto to ownCloud 7Lukas Reschke
Conflicts: lib/repair/repairconfig.php
2014-11-19fixing cache routesClark Tomlinson
Conflicts: tests/lib/cache/file.php tests/lib/cache/usercache.php
2014-11-19use the new base class for share/share.php testsBjoern Schiessle
2014-11-19Simple fix for the wrong Mapper resetJoas Schilling
2014-11-19Back to OC_Util::generateRandomBytes()Joas Schilling
2014-11-19Correctly restore previous root mount point after testingJoas Schilling
Conflicts: tests/lib/cache/file.php tests/lib/cache/usercache.php
2014-11-19Correctly refresh the apps list after removing the mockJoas Schilling
2014-11-19Fix Files\Storage\Home::testRoot()Joas Schilling
2014-11-19Skip some more tests on Windows which just can not work at allJoas Schilling
Conflicts: tests/lib/archive/tar.php tests/lib/files/storage/local.php tests/lib/files/view.php
2014-11-19Windows does not support CHMOD, therefor we can not test not writable foldersJoas Schilling
Conflicts: tests/lib/tempmanager.php
2014-11-19Test LargeFileHelperGetFileSize also with ascii only charactersJoas Schilling
And skip the UTF8 names on Windows as they are not supported
2014-11-19Do not use uniqid in Group and User tests as it is not unique on windowsJoas Schilling
2014-11-19Testcase base classJoas Schilling
2014-11-18make sure that we don't find the wrong shares if a user and a group have the ↵Bjoern Schiessle
same ID
2014-11-18Merge pull request #12154 from owncloud/ignore-port-for-trusted-domainMorris Jobke
Ignore port for trusted domains
2014-11-17Backport #12181Lukas Reschke
This should fix the stable7 unit tests again since the last CI update.
2014-11-15Check if app is enabled for userLukas Reschke
Fixes https://github.com/owncloud/core/issues/12188 for AppFramework apps
2014-11-13Ignore port for trusted domainsLukas Reschke
This lead to a lot of confusion in the past and did not really offer any value. Let's remove the port check therefore. (it's anyways not really a part of the domain) Fixes https://github.com/owncloud/core/issues/12150 and https://github.com/owncloud/core/issues/12123 and also a problem reported by @DeepDiver1975.
2014-11-05fix typo in content typeBernhard Posselt
2014-10-28Merge pull request #11802 from owncloud/backport-10958Lukas Reschke
Backport #10958
2014-10-28Introduce cross-db ILIKERobin Appelman
adding ILIKE to AdapterSQLSrv add test case for ILIKE with wildcard Make sqlite LIKE case sensitive on default Implement ILIKE for sqlite Use ILIKE in cache search Fix ILIKE without wildcards for oracle
2014-10-28Make supported DBs configurable within config.phpLukas Reschke
This commit will make the supported DBs for installation configurable within config.php. By default the following databases are tested: "sqlite", "mysql", "pgsql". The reason behind this is that there might be instances where we want to prevent SQLite to be used by mistake. To test this play around with the new configuration parameter "supportedDatabases". Conflicts: lib/private/util.php
2014-10-20Add proper setup and teardownVincent Petry
Properly restore REQUEST_URI and SCRIPT_NAME after test runs
2014-10-20Add "$_SERVER['REQUEST_URI']" to fix the unit testsLukas Reschke
Let's hope that works
2014-10-20Add unit tests for convertToRelativePathLukas Reschke
2014-10-18backport of #11494Arthur Schiwon
fix retrievel of group members and cache group members fix changed variable name with several backends, more than limit can be returned make performance less bad. Still far from good, but at least it works add one simple cache test adjust group manager tests
2014-10-17backport of #9104macjohnny
Update manager.php add caching to getUserGroupIds Update manager.php added description and blank lines in getUserGroupIds Update manager.php defined $uid in getUserGroupIds Update manager.php Update manager.php Update manager.php clean up function getUserGroupIds clean up of function getUserGroupIds and improved caching mechanism of cachedUserGroupIds modified caching mechanism in getUserGroupIds removed cachedUserGroupIds, instead changed indexing in getUserGroups to groupId adapted tests for a groupId indexed group array
2014-10-16strip whitespace from the beginning and end of the display name to avoid ↵Bjoern Schiessle
empty display names
2014-10-15Use `rawurlencode` since this seems to be expected by cURLLukas Reschke
Fixes https://github.com/owncloud/core/pull/11501#issuecomment-58794405 Conflicts: tests/lib/largefilehelpergetfilesize.php
2014-10-15Merge pull request #11567 from owncloud/cache-updater-refactor-stable7Robin Appelman
[stable7] Refactor cache updater to work outside of the users home
2014-10-15Adding test helper to test private methodsClark Tomlinson
2014-10-14remove unstable testRobin Appelman