File manager - Edit - /var/www/payraty/helpdesk/vendor/handcraftedinthealps/elasticsearch-dsl/tests/Unit/SearchEndpoint/InnerHitsEndpointTest.php
Back
<?php /* * This file is part of the ONGR package. * * (c) NFQ Technologies UAB <info@nfq.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ONGR\ElasticsearchDSL\Tests\Unit\SearchEndpoint; use ONGR\ElasticsearchDSL\SearchEndpoint\InnerHitsEndpoint; use ONGR\ElasticsearchDSL\BuilderInterface; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; /** * Class AggregationsEndpointTest. */ class InnerHitsEndpointTest extends \PHPUnit\Framework\TestCase { /** * Tests constructor. */ public function testItCanBeInstantiated() { $this->assertInstanceOf( InnerHitsEndpoint::class, new InnerHitsEndpoint() ); } /** * Tests if endpoint returns builders. */ public function testEndpointGetter() { $hitName = 'foo'; $innerHit = $this->getMockBuilder(BuilderInterface::class)->getMock(); $endpoint = new InnerHitsEndpoint(); $endpoint->add($innerHit, $hitName); $builders = $endpoint->getAll(); $this->assertCount(1, $builders); $this->assertSame($innerHit, $builders[$hitName]); } /** * Tests normalize method */ public function testNormalization() { $normalizer = $this ->getMockBuilder(NormalizerInterface::class) ->getMock(); $innerHit = $this ->getMockBuilder(BuilderInterface::class) ->setMethods(['getName', 'toArray', 'getType']) ->getMock(); $innerHit->expects($this->any())->method('getName')->willReturn('foo'); $innerHit->expects($this->any())->method('toArray')->willReturn(['foo' => 'bar']); $endpoint = new InnerHitsEndpoint(); $endpoint->add($innerHit, 'foo'); $expected = [ 'foo' => [ 'foo' => 'bar' ] ]; $this->assertEquals( $expected, $endpoint->normalize($normalizer) ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings