}
private function getCertBundle(): string {
+ if ($this->certificateManager->listCertificates() !== []) {
+ return $this->certificateManager->getAbsoluteBundlePath();
+ }
+
// If the instance is not yet setup we need to use the static path as
// $this->certificateManager->getAbsoluteBundlePath() tries to instantiate
// a view
- if ($this->config->getSystemValue('installed', false) === false) {
- return \OC::$SERVERROOT . '/resources/config/ca-bundle.crt';
- }
-
- if ($this->certificateManager->listCertificates() === []) {
- return \OC::$SERVERROOT . '/resources/config/ca-bundle.crt';
+ if ($this->config->getSystemValue('installed', false)) {
+ return $this->certificateManager->getAbsoluteBundlePath(null);
}
- return $this->certificateManager->getAbsoluteBundlePath();
+ return \OC::$SERVERROOT . '/resources/config/ca-bundle.crt';
}
/**
->with('installed', false)
->willReturn(false);
$this->certificateManager
- ->expects($this->never())
- ->method('listCertificates');
+ ->expects($this->once())
+ ->method('listCertificates')
+ ->willReturn([]);
$this->assertEquals([
'verify' => \OC::$SERVERROOT . '/resources/config/ca-bundle.crt',