mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 12:09:14 +00:00
122 lines
2.9 KiB
PHP
122 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Test\AppFramework\DependencyInjection;
|
|
|
|
use OC\AppFramework\DependencyInjection\DIContainer;
|
|
use OC\AppFramework\Utility\SimpleContainer;
|
|
use OC\ServerContainer;
|
|
use Test\TestCase;
|
|
|
|
interface Interface1 {
|
|
}
|
|
|
|
class ClassA1 implements Interface1 {
|
|
}
|
|
|
|
class ClassA2 implements Interface1 {
|
|
}
|
|
|
|
class ClassB {
|
|
/** @var Interface1 */
|
|
public $interface1;
|
|
|
|
/**
|
|
* ClassB constructor.
|
|
*
|
|
* @param Interface1 $interface1
|
|
*/
|
|
public function __construct(Interface1 $interface1) {
|
|
$this->interface1 = $interface1;
|
|
}
|
|
}
|
|
|
|
class DIIntergrationTests extends TestCase {
|
|
/** @var DIContainer */
|
|
private $container;
|
|
|
|
/** @var ServerContainer */
|
|
private $server;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->server = new ServerContainer();
|
|
$this->container = new DIContainer('App1', [], $this->server);
|
|
}
|
|
|
|
public function testInjectFromServer(): void {
|
|
$this->server->registerService(Interface1::class, function () {
|
|
return new ClassA1();
|
|
});
|
|
|
|
$this->server->registerService(ClassB::class, function (SimpleContainer $c) {
|
|
return new ClassB(
|
|
$c->query(Interface1::class)
|
|
);
|
|
});
|
|
|
|
/** @var ClassB $res */
|
|
$res = $this->container->query(ClassB::class);
|
|
$this->assertSame(ClassA1::class, get_class($res->interface1));
|
|
}
|
|
|
|
public function testInjectDepFromServer(): void {
|
|
$this->server->registerService(Interface1::class, function () {
|
|
return new ClassA1();
|
|
});
|
|
|
|
$this->container->registerService(ClassB::class, function (SimpleContainer $c) {
|
|
return new ClassB(
|
|
$c->query(Interface1::class)
|
|
);
|
|
});
|
|
|
|
/** @var ClassB $res */
|
|
$res = $this->container->query(ClassB::class);
|
|
$this->assertSame(ClassA1::class, get_class($res->interface1));
|
|
}
|
|
|
|
public function testOverwriteDepFromServer(): void {
|
|
$this->server->registerService(Interface1::class, function () {
|
|
return new ClassA1();
|
|
});
|
|
|
|
$this->container->registerService(Interface1::class, function () {
|
|
return new ClassA2();
|
|
});
|
|
|
|
$this->container->registerService(ClassB::class, function (SimpleContainer $c) {
|
|
return new ClassB(
|
|
$c->query(Interface1::class)
|
|
);
|
|
});
|
|
|
|
/** @var ClassB $res */
|
|
$res = $this->container->query(ClassB::class);
|
|
$this->assertSame(ClassA2::class, get_class($res->interface1));
|
|
}
|
|
|
|
public function testIgnoreOverwriteInServerClass(): void {
|
|
$this->server->registerService(Interface1::class, function () {
|
|
return new ClassA1();
|
|
});
|
|
|
|
$this->container->registerService(Interface1::class, function () {
|
|
return new ClassA2();
|
|
});
|
|
|
|
$this->server->registerService(ClassB::class, function (SimpleContainer $c) {
|
|
return new ClassB(
|
|
$c->query(Interface1::class)
|
|
);
|
|
});
|
|
|
|
/** @var ClassB $res */
|
|
$res = $this->container->query(ClassB::class);
|
|
$this->assertSame(ClassA1::class, get_class($res->interface1));
|
|
}
|
|
}
|