-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathDocumentValueResolverFunctionalTest.php
147 lines (116 loc) · 4.39 KB
/
DocumentValueResolverFunctionalTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
declare(strict_types=1);
namespace Doctrine\Bundle\MongoDBBundle\Tests;
use Doctrine\Bundle\MongoDBBundle\DoctrineMongoDBBundle;
use Doctrine\Bundle\MongoDBBundle\Tests\Fixtures\FooBundle\Controller\DocumentValueResolverController;
use Doctrine\Bundle\MongoDBBundle\Tests\Fixtures\FooBundle\Document\User;
use Doctrine\Bundle\MongoDBBundle\Tests\Fixtures\FooBundle\FooBundle;
use Doctrine\ODM\MongoDB\DocumentManager;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
use function sys_get_temp_dir;
use function uniqid;
/** @requires function \Symfony\Bridge\Doctrine\Attribute\MapEntity::__construct */
class DocumentValueResolverFunctionalTest extends WebTestCase
{
public function testWithoutConfiguration(): void
{
$client = static::createClient();
$dm = static::getContainer()->get(DocumentManager::class);
$user = new User('user-identifier');
$dm->persist($user);
$dm->flush();
$client->request('GET', '/user/user-identifier');
$this->assertResponseIsSuccessful();
$this->assertSame('user-identifier', $client->getResponse()->getContent());
$dm->remove($user);
}
public function testWithConfiguration(): void
{
$client = static::createClient();
$dm = static::getContainer()->get(DocumentManager::class);
$user = new User('user-identifier');
$dm->persist($user);
$dm->flush();
$client->request('GET', '/user_with_mapping/user-identifier');
$this->assertResponseIsSuccessful();
$this->assertSame('user-identifier', $client->getResponse()->getContent());
$dm->remove($user);
}
protected static function getKernelClass(): string
{
return FooTestKernel::class;
}
}
class FooTestKernel extends Kernel
{
use MicroKernelTrait;
private string $randomKey;
public function __construct()
{
$this->randomKey = uniqid('');
parent::__construct('test', false);
}
protected function getContainerClass(): string
{
return 'test' . $this->randomKey . parent::getContainerClass();
}
public function registerBundles(): array
{
return [
new FrameworkBundle(),
new DoctrineMongoDBBundle(),
new FooBundle(),
];
}
protected function configureRoutes(RoutingConfigurator $routes): void
{
$routes->add('tv_user_show', '/user/{id}')
->controller([DocumentValueResolverController::class, 'showUserByDefault']);
$routes->add('user_with_mapping', '/user_with_mapping/{identifier}')
->controller([DocumentValueResolverController::class, 'showUserWithMapping']);
}
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader): void
{
$c->loadFromExtension('framework', [
'secret' => 'foo',
'router' => ['utf8' => false],
'http_method_override' => false,
'test' => true,
]);
$c->loadFromExtension('doctrine_mongodb', [
'connections' => ['default' => []],
'document_managers' => [
'default' => [
'mappings' => [
'App' => [
'is_bundle' => false,
'type' => 'attribute',
'dir' => '%kernel.project_dir%/Document',
'prefix' => 'Doctrine\Bundle\MongoDBBundle\Tests\Fixtures\FooBundle',
'alias' => 'Doctrine\Bundle\MongoDBBundle\Tests\Fixtures\FooBundle',
],
],
],
],
]);
$loader->load(__DIR__ . '/Fixtures/FooBundle/config/services.php');
}
public function getProjectDir(): string
{
return __DIR__ . '/Fixtures/FooBundle/';
}
public function getCacheDir(): string
{
return sys_get_temp_dir() . '/doctrine_mongodb_odm_bundle' . $this->randomKey;
}
public function getLogDir(): string
{
return sys_get_temp_dir();
}
}