You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/tests/lib/OCM/OCMSignatoryManagerJwksTest...

368 lines
13 KiB

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\OCM;
use OC\Memcache\ArrayCache;
use OC\OCM\Model\OCMProvider;
use OC\OCM\OCMSignatoryManager;
use OC\Security\IdentityProof\Manager as IdentityProofManager;
use OCP\Http\Client\IClient;
use OCP\Http\Client\IClientService;
use OCP\Http\Client\IResponse;
use OCP\IAppConfig;
use OCP\ICacheFactory;
use OCP\IConfig;
use OCP\IURLGenerator;
use OCP\OCM\Exceptions\OCMProviderException;
use OCP\OCM\IOCMDiscoveryService;
use OCP\Security\Signature\ISignatureManager;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Test\TestCase;
class OCMSignatoryManagerJwksTest extends TestCase {
/** RFC 7517 §A.1 test vector for an EC P-256 public key. */
private const string TEST_X = 'f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU';
private const string TEST_Y = 'x_FEzRu9m36HLN_tue659LNpXW6pCyStikYjKIWI5a0';
/** RFC 8037 §A.2 test vector for an Ed25519 public key. */
private const string TEST_OKP_X = '11qYAYKxCrfVS_7TyWQHOg7hcvPapiMlrwIaaPcHURo';
private const string JWKS_URI = 'https://sender.example.org/ocm/jwks';
private IAppConfig&MockObject $appConfig;
private ISignatureManager&MockObject $signatureManager;
private IURLGenerator&MockObject $urlGenerator;
private IdentityProofManager&MockObject $identityProofManager;
private IClientService&MockObject $clientService;
private IConfig&MockObject $config;
private LoggerInterface&MockObject $logger;
private IClient&MockObject $client;
private IOCMDiscoveryService&MockObject $discoveryService;
private OCMSignatoryManager $signatoryManager;
#[\Override]
protected function setUp(): void {
parent::setUp();
$this->appConfig = $this->createMock(IAppConfig::class);
$this->signatureManager = $this->createMock(ISignatureManager::class);
$this->urlGenerator = $this->createMock(IURLGenerator::class);
$this->identityProofManager = $this->createMock(IdentityProofManager::class);
$this->clientService = $this->createMock(IClientService::class);
$this->config = $this->createMock(IConfig::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->client = $this->createMock(IClient::class);
$this->discoveryService = $this->createMock(IOCMDiscoveryService::class);
$this->clientService->method('newClient')->willReturn($this->client);
$this->overwriteService(IOCMDiscoveryService::class, $this->discoveryService);
$cacheFactory = $this->createMock(ICacheFactory::class);
$cacheFactory->method('createDistributed')->willReturn(new ArrayCache(''));
$this->signatoryManager = new OCMSignatoryManager(
$this->appConfig,
$this->signatureManager,
$this->urlGenerator,
$this->identityProofManager,
$this->clientService,
$this->config,
$cacheFactory,
$this->logger,
);
}
#[\Override]
protected function tearDown(): void {
$this->restoreService(IOCMDiscoveryService::class);
parent::tearDown();
}
/** Remote discovery response advertising http-sig and $jwksUri. */
private function primeDiscovery(
string $jwksUri = self::JWKS_URI,
array $capabilities = ['http-sig'],
bool $httpOnly = false,
): void {
$provider = new OCMProvider();
$provider->setCapabilities($capabilities);
$provider->setJwksUri($jwksUri);
$this->discoveryService->method('discover')
->willReturnCallback(static function (string $remote) use ($httpOnly, $provider): OCMProvider {
if ($httpOnly && str_starts_with($remote, 'https://')) {
throw new OCMProviderException('HTTPS unavailable');
}
return $provider;
});
}
public function testGetRemoteKeyFetchesAndMatchesByKid(): void {
$this->primeDiscovery();
$kid = 'sender.example.org#key1';
$jwks = [
'keys' => [
$this->ecJwk('other'),
$this->ecJwk($kid),
],
];
$this->respondWith($jwks);
$key = $this->signatoryManager->getRemoteKey('sender.example.org', $kid);
$this->assertNotNull($key);
$this->assertSame('ES256', $key->getAlgorithm());
}
public function testGetRemoteKeyReturnsNullWhenKidMissing(): void {
$this->primeDiscovery();
$this->respondWith(['keys' => [$this->ecJwk('unrelated')]]);
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'other-kid'));
}
public function testGetRemoteKeyReturnsNullOnHttpError(): void {
$this->primeDiscovery();
$this->client->method('get')->willThrowException(new \RuntimeException('boom'));
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyReturnsNullOnInvalidJson(): void {
$this->primeDiscovery();
$response = $this->createMock(IResponse::class);
$response->method('getBody')->willReturn('not json');
$this->client->method('get')->willReturn($response);
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyReturnsNullWhenKeysMissing(): void {
$this->primeDiscovery();
$this->respondWith(['no-keys-here' => []]);
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyReturnsNullOnUnparseableJwk(): void {
$this->primeDiscovery();
// JWK with kty=EC but no crv: parseKey rejects.
$this->respondWith(['keys' => [['kty' => 'EC', 'kid' => 'kid', 'alg' => 'ES256', 'x' => self::TEST_X, 'y' => self::TEST_Y]]]);
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyFetchesFromAdvertisedJwksUri(): void {
$this->primeDiscovery();
$this->client->expects($this->once())
->method('get')
->with(
$this->equalTo(self::JWKS_URI),
$this->isType('array'),
)
->willReturn($this->jsonResponse(['keys' => []]));
$this->signatoryManager->getRemoteKey('sender.example.org', 'kid');
}
public function testGetRemoteKeyRejectsMissingJwksUriWhenHttpSigAdvertised(): void {
// a peer advertising http-sig without a jwksUri is non-conformant
$this->primeDiscovery(jwksUri: '');
$this->client->expects($this->never())->method('get');
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyRejectsHttpJwksUriFromHttpsPeer(): void {
// downgrade guard: http jwksUri from an https peer
$this->primeDiscovery(jwksUri: 'http://sender.example.org/ocm/jwks');
$this->client->expects($this->never())->method('get');
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyAcceptsHttpJwksUriFromHttpPeer(): void {
// the spec's http fallback for testing setups
$this->primeDiscovery(
jwksUri: 'http://sender.example.org/ocm/jwks',
httpOnly: true,
);
$kid = 'sender.example.org#key1';
$this->client->expects($this->once())
->method('get')
->with(
$this->equalTo('http://sender.example.org/ocm/jwks'),
$this->isType('array'),
)
->willReturn($this->jsonResponse(['keys' => [$this->ecJwk($kid)]]));
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', $kid));
}
public function testGetRemoteKeyReturnsNullWhenDiscoveryFails(): void {
$this->discoveryService->method('discover')
->willThrowException(new OCMProviderException('no discovery'));
$this->client->expects($this->never())->method('get');
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyRejectsJwkWithoutAlg(): void {
$this->primeDiscovery();
$jwk = $this->ecJwk('kid');
unset($jwk['alg']);
$this->respondWith(['keys' => [$jwk]]);
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyRejectsJwkWithSymmetricAlg(): void {
$this->primeDiscovery();
$jwk = $this->ecJwk('kid');
$jwk['alg'] = 'HS256';
$this->respondWith(['keys' => [$jwk]]);
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyRejectsJwkAlgMismatchingKeyType(): void {
$this->primeDiscovery();
// EC P-256 key claiming an Ed25519 algorithm
$jwk = $this->ecJwk('kid');
$jwk['alg'] = 'Ed25519';
$this->respondWith(['keys' => [$jwk]]);
$this->logger->expects($this->once())->method('warning');
$this->assertNull($this->signatoryManager->getRemoteKey('sender.example.org', 'kid'));
}
public function testGetRemoteKeyAcceptsFullySpecifiedEd25519Alg(): void {
$this->primeDiscovery();
$this->respondWith(['keys' => [[
'kty' => 'OKP',
'crv' => 'Ed25519',
'kid' => 'kid',
'alg' => 'Ed25519',
'use' => 'sig',
'x' => self::TEST_OKP_X,
]]]);
$key = $this->signatoryManager->getRemoteKey('sender.example.org', 'kid');
$this->assertNotNull($key);
$this->assertSame('Ed25519', $key->getAlgorithm());
}
public function testGetRemoteKeyPassesSelfSignedFlagThrough(): void {
$this->primeDiscovery();
$this->config->method('getSystemValueBool')
->with('sharing.federation.allowSelfSignedCertificates')
->willReturn(true);
$this->client->expects($this->once())
->method('get')
->with(
$this->anything(),
$this->callback(static fn (array $opts): bool => ($opts['verify'] ?? null) === false),
)
->willReturn($this->jsonResponse(['keys' => []]));
$this->signatoryManager->getRemoteKey('sender.example.org', 'kid');
}
public function testJwksCachedAcrossCallsToTheSameOrigin(): void {
$this->primeDiscovery();
$kid = 'sender.example.org#key1';
$jwks = ['keys' => [$this->ecJwk($kid)]];
$this->client->expects($this->once())
->method('get')
->willReturn($this->jsonResponse($jwks));
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', $kid));
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', $kid));
}
public function testCacheMissOnNewKidTriggersRefetchOnce(): void {
$this->primeDiscovery();
$first = ['keys' => [$this->ecJwk('old')]];
$second = ['keys' => [$this->ecJwk('new')]];
$this->client->expects($this->exactly(2))
->method('get')
->willReturnOnConsecutiveCalls(
$this->jsonResponse($first),
$this->jsonResponse($second),
);
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', 'old'));
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', 'new'));
}
public function testGetRemoteKeyAcceptsHttpsJwksUriFromHttpPeer(): void {
// upgrade from an http-only peer is fine
$this->primeDiscovery(
httpOnly: true,
);
$kid = 'sender.example.org#key1';
$this->client->expects($this->once())
->method('get')
->with(
$this->equalTo(self::JWKS_URI),
$this->isType('array'),
)
->willReturn($this->jsonResponse(['keys' => [$this->ecJwk($kid)]]));
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', $kid));
}
public function testGetRemoteKeyAcceptsJwksUriOnDifferentHost(): void {
// the JWK Set may live on a different host than the peer
$this->primeDiscovery(
jwksUri: 'https://keys.example.net/ocm/jwks',
httpOnly: true,
);
$kid = 'sender.example.org#key1';
$this->client->expects($this->once())
->method('get')
->with(
$this->equalTo('https://keys.example.net/ocm/jwks'),
$this->isType('array'),
)
->willReturn($this->jsonResponse(['keys' => [$this->ecJwk($kid)]]));
$this->assertNotNull($this->signatoryManager->getRemoteKey('sender.example.org', $kid));
}
public function testGetLocalJwksUriPointsAtAppRoute(): void {
$this->urlGenerator->method('linkToRouteAbsolute')
->willReturn('https://sender.example.org/index.php/apps/cloud_federation_api/api/v1/jwks');
$this->assertSame(
'https://sender.example.org/index.php/apps/cloud_federation_api/api/v1/jwks',
$this->signatoryManager->getLocalJwksUri(),
);
}
private function respondWith(array $body): void {
$this->client->method('get')->willReturn($this->jsonResponse($body));
}
private function jsonResponse(array $body): IResponse {
$response = $this->createMock(IResponse::class);
$response->method('getBody')->willReturn(json_encode($body, JSON_THROW_ON_ERROR));
return $response;
}
/** @return array<string, string> */
private function ecJwk(string $kid): array {
return [
'kty' => 'EC',
'crv' => 'P-256',
'kid' => $kid,
'alg' => 'ES256',
'use' => 'sig',
'x' => self::TEST_X,
'y' => self::TEST_Y,
];
}
}