1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Bdf\PrimeBundle\Tests; |
4
|
|
|
|
5
|
|
|
require_once __DIR__.'/TestKernel.php'; |
6
|
|
|
|
7
|
|
|
use Bdf\Prime\MongoDB\Collection\MongoCollectionLocator; |
|
|
|
|
8
|
|
|
use Bdf\Prime\MongoDB\Document\DocumentMapper; |
|
|
|
|
9
|
|
|
use Bdf\Prime\MongoDB\Document\MongoDocument; |
|
|
|
|
10
|
|
|
use Bdf\Prime\MongoDB\Schema\CollectionDefinitionBuilder; |
|
|
|
|
11
|
|
|
use Bdf\Prime\MongoDB\Schema\CollectionSchemaResolver; |
|
|
|
|
12
|
|
|
use Bdf\Prime\MongoDB\Schema\CollectionStructureUpgrader; |
|
|
|
|
13
|
|
|
use Bdf\Prime\MongoDB\Schema\CollectionStructureUpgraderResolver; |
|
|
|
|
14
|
|
|
use Bdf\Prime\Query\Expression\Like; |
15
|
|
|
use Bdf\Prime\Schema\StructureUpgraderResolverAggregate; |
16
|
|
|
use Bdf\PrimeBundle\PrimeBundle; |
17
|
|
|
use Bdf\PrimeBundle\Tests\Documents\MapperWithDependency; |
18
|
|
|
use Bdf\PrimeBundle\Tests\Documents\OtherDocumentMapper; |
19
|
|
|
use Bdf\PrimeBundle\Tests\Documents\PersonDocument; |
20
|
|
|
use Bdf\PrimeBundle\Tests\Documents\PersonDocumentMapper; |
21
|
|
|
use PHPUnit\Framework\TestCase; |
22
|
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle; |
23
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface; |
24
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder; |
25
|
|
|
use Symfony\Component\HttpKernel\Kernel; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* BdfSerializerBundleTest |
29
|
|
|
*/ |
30
|
|
|
class WithMongoTest extends TestCase |
31
|
|
|
{ |
32
|
|
|
private $kernel; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* |
36
|
|
|
*/ |
37
|
|
|
protected function setUp(): void |
38
|
|
|
{ |
39
|
|
|
if (!class_exists(MongoCollectionLocator::class)) { |
40
|
|
|
$this->markTestSkipped('MongoDB driver not installed'); |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
|
44
|
|
|
$this->kernel = new class('test', true) extends Kernel { |
45
|
|
|
use \Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; |
|
|
|
|
46
|
|
|
|
47
|
|
|
public function registerBundles(): iterable |
48
|
|
|
{ |
49
|
|
|
return [ |
50
|
|
|
new FrameworkBundle(), |
51
|
|
|
new PrimeBundle(), |
52
|
|
|
]; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader) |
|
|
|
|
56
|
|
|
{ |
57
|
|
|
$loader->import(__DIR__.'/Fixtures/conf_mongo.yaml'); |
|
|
|
|
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
protected function configureRoutes($routes) { } |
|
|
|
|
61
|
|
|
}; |
62
|
|
|
$this->kernel->boot(); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* |
67
|
|
|
*/ |
68
|
|
|
public function test_kernel() |
69
|
|
|
{ |
70
|
|
|
$this->assertInstanceOf(MongoCollectionLocator::class, $this->kernel->getContainer()->get(MongoCollectionLocator::class)); |
71
|
|
|
$this->assertInstanceOf(CollectionStructureUpgraderResolver::class, $this->kernel->getContainer()->get(CollectionStructureUpgraderResolver::class)); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* |
76
|
|
|
*/ |
77
|
|
|
public function test_functional() |
78
|
|
|
{ |
79
|
|
|
$this->kernel->getContainer()->get(CollectionStructureUpgraderResolver::class)->resolveByDomainClass(PersonDocument::class)->migrate(); |
80
|
|
|
|
81
|
|
|
$person1 = new PersonDocument('John', 'Doe'); |
82
|
|
|
$person2 = new PersonDocument('Jean', 'Dupont'); |
83
|
|
|
|
84
|
|
|
$person1->save(); |
85
|
|
|
$person2->save(); |
86
|
|
|
|
87
|
|
|
$this->assertEquals([$person1], PersonDocument::where('firstName', 'john')->all()); |
88
|
|
|
$this->assertEquals([$person1, $person2], PersonDocument::where('lastName', (new Like('o'))->contains())->all()); |
89
|
|
|
|
90
|
|
|
$this->kernel->getContainer()->get(CollectionStructureUpgraderResolver::class)->resolveByDomainClass(PersonDocument::class)->drop(); |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
public function test_mapper_with_dependency_injection() |
94
|
|
|
{ |
95
|
|
|
/** @var MongoCollectionLocator $locator */ |
96
|
|
|
$locator = $this->kernel->getContainer()->get(MongoCollectionLocator::class); |
97
|
|
|
|
98
|
|
|
$collection = $locator->collectionByMapper(MapperWithDependency::class); |
99
|
|
|
|
100
|
|
|
$this->assertInstanceOf(MapperWithDependency::class, $collection->mapper()); |
101
|
|
|
$this->assertSame($locator, $collection->mapper()->locator); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
public function test_same_hydrator_instance_should_be_used() |
105
|
|
|
{ |
106
|
|
|
/** @var MongoCollectionLocator $locator */ |
107
|
|
|
$locator = $this->kernel->getContainer()->get(MongoCollectionLocator::class); |
108
|
|
|
|
109
|
|
|
$c1 = $locator->collectionByMapper(OtherDocumentMapper::class); |
110
|
|
|
$c2 = $locator->collectionByMapper(PersonDocumentMapper::class); |
111
|
|
|
|
112
|
|
|
$c1->mapper()->fromDatabase([], $c1->connection()->platform()->types()); |
113
|
|
|
$c2->mapper()->fromDatabase([], $c1->connection()->platform()->types()); |
114
|
|
|
|
115
|
|
|
$r = new \ReflectionProperty(DocumentMapper::class, 'hydrator'); |
116
|
|
|
$r->setAccessible(true); |
117
|
|
|
|
118
|
|
|
$this->assertSame($r->getValue($c1->mapper()), $r->getValue($c2->mapper())); |
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
public function test_upgrader() |
122
|
|
|
{ |
123
|
|
|
if (!class_exists(StructureUpgraderResolverAggregate::class)) { |
124
|
|
|
$this->markTestSkipped('StructureUpgraderResolverAggregate is not found'); |
125
|
|
|
} |
126
|
|
|
|
127
|
|
|
$this->assertInstanceOf(CollectionStructureUpgrader::class, $this->kernel->getContainer()->get(StructureUpgraderResolverAggregate::class)->resolveByDomainClass(PersonDocument::class)); |
128
|
|
|
$this->assertInstanceOf(CollectionStructureUpgrader::class, $this->kernel->getContainer()->get(StructureUpgraderResolverAggregate::class)->resolveByMapperClass(PersonDocumentMapper::class)); |
129
|
|
|
} |
130
|
|
|
} |
131
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths