Completed
Pull Request — master (#1069)
by Giovanni
11:08
created

testResetIndexAddsMappings()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 19
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 1 Features 1
Metric Value
c 3
b 1
f 1
dl 0
loc 19
rs 9.4285
cc 1
eloc 13
nc 1
nop 0
1
<?php
2
3
/**
4
 * This file is part of the FOSElasticaBundle project.
5
 *
6
 * (c) Tim Nagel <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
namespace FOS\ElasticaBundle\Tests\Functional;
13
14
use Symfony\Bundle\FrameworkBundle\Client;
15
16
/**
17
 * @group functional
18
 */
19
class MappingToElasticaTest extends WebTestCase
20
{
21
    public function testResetIndexAddsMappings()
22
    {
23
        $client = $this->createClient(array('test_case' => 'Basic'));
24
        $resetter = $this->getResetter($client);
25
        $resetter->resetIndex('index');
26
27
        $type = $this->getType($client);
28
        $mapping = $type->getMapping();
29
30
        $this->assertNotEmpty($mapping, 'Mapping was populated');
31
32
        $type = $this->getType($client, 'type');
33
        $mapping = $type->getMapping();
34
        $this->assertEquals('parent', $mapping['type']['_parent']['type']);
35
36
        $this->assertEquals('strict', $mapping['type']['dynamic']);
37
        $this->assertArrayHasKey('dynamic', $mapping['type']['properties']['dynamic_allowed']);
38
        $this->assertEquals('true', $mapping['type']['properties']['dynamic_allowed']['dynamic']);
39
    }
40
41
    public function testResetType()
42
    {
43
        $client = $this->createClient(array('test_case' => 'Basic'));
44
        $resetter = $this->getResetter($client);
45
        $resetter->resetIndexType('index', 'type');
46
47
        $type = $this->getType($client);
48
        $mapping = $type->getMapping();
49
50
        $this->assertNotEmpty($mapping, 'Mapping was populated');
51
        $this->assertFalse($mapping['type']['date_detection']);
52
        $this->assertTrue($mapping['type']['numeric_detection']);
53
        $this->assertEquals(array('yyyy-MM-dd'), $mapping['type']['dynamic_date_formats']);
54
    }
55
56 View Code Duplication
    public function testORMResetIndexAddsMappings()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
57
    {
58
        $client = $this->createClient(array('test_case' => 'ORM'));
59
        $resetter = $this->getResetter($client);
60
        $resetter->resetIndex('index');
61
62
        $type = $this->getType($client);
63
        $mapping = $type->getMapping();
64
65
        $this->assertNotEmpty($mapping, 'Mapping was populated');
66
    }
67
68 View Code Duplication
    public function testORMResetType()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
69
    {
70
        $client = $this->createClient(array('test_case' => 'ORM'));
71
        $resetter = $this->getResetter($client);
72
        $resetter->resetIndexType('index', 'type');
73
74
        $type = $this->getType($client);
75
        $mapping = $type->getMapping();
76
77
        $this->assertNotEmpty($mapping, 'Mapping was populated');
78
    }
79
80 View Code Duplication
    public function testMappingIteratorToArrayField()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
81
    {
82
        $client = $this->createClient(array('test_case' => 'ORM'));
83
        $persister = $client->getContainer()->get('fos_elastica.object_persister.index.type');
84
85
        $object = new TypeObj();
86
        $object->id = 1;
87
        $object->coll = new \ArrayIterator(array('foo', 'bar'));
88
        $persister->insertOne($object);
89
90
        $object->coll = new \ArrayIterator(array('foo', 'bar', 'bazz'));
91
        $object->coll->offsetUnset(1);
92
93
        $persister->replaceOne($object);
94
    }
95
96
    /**
97
     * @param Client $client
98
     *
99
     * @return \FOS\ElasticaBundle\Resetter $resetter
100
     */
101
    private function getResetter(Client $client)
102
    {
103
        return $client->getContainer()->get('fos_elastica.resetter');
104
    }
105
106
    /**
107
     * @param Client $client
108
     * @param string $type
109
     *
110
     * @return \Elastica\Type
111
     */
112
    private function getType(Client $client, $type = 'type')
113
    {
114
        return $client->getContainer()->get('fos_elastica.index.index.'.$type);
115
    }
116
117
    protected function setUp()
118
    {
119
        parent::setUp();
120
121
        $this->deleteTmpDir('Basic');
122
        $this->deleteTmpDir('ORM');
123
    }
124
125
    protected function tearDown()
126
    {
127
        parent::tearDown();
128
129
        $this->deleteTmpDir('Basic');
130
        $this->deleteTmpDir('ORM');
131
    }
132
}
133