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
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-05-25 16:03:52 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-05-25 20:51:03 +0300
commitebbdd2de33771751b4d0ff16743763e4804f5a03 (patch)
tree4c16527e07032dff608ae92c974d385975262d31 /tests
parent33b06cfa0c81e8edb2163a8766eb8fe0aa51b14f (diff)
Do not read certificate bundle from data dir by default
Before the resources/config/ca-bundle.crt was only used when the list of custom certificates was empty and the instance was not installed. But it should also be used when the list is empty and the instance is installed. This is inverting the logic to stop if the instance is not installed to use the default bundle. And it also does this when the list is empty. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Http/Client/ClientTest.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/lib/Http/Client/ClientTest.php b/tests/lib/Http/Client/ClientTest.php
index b136a0ca300..bd9cab023f5 100644
--- a/tests/lib/Http/Client/ClientTest.php
+++ b/tests/lib/Http/Client/ClientTest.php
@@ -460,9 +460,8 @@ class ClientTest extends \Test\TestCase {
->with('installed', false)
->willReturn(false);
$this->certificateManager
- ->expects($this->once())
- ->method('listCertificates')
- ->willReturn([]);
+ ->expects($this->never())
+ ->method('listCertificates');
$this->assertEquals([
'verify' => \OC::$SERVERROOT . '/resources/config/ca-bundle.crt',