forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
77 lines
2.3 KiB
PHP
77 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace CommerceGuys\Addressing\Tests\Subdivision;
|
|
|
|
use CommerceGuys\Addressing\Subdivision\LazySubdivisionCollection;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @coversDefaultClass \CommerceGuys\Addressing\Subdivision\LazySubdivisionCollection
|
|
*/
|
|
final class LazySubdivisionCollectionTest extends TestCase
|
|
{
|
|
/**
|
|
* @var LazySubdivisionCollection
|
|
*/
|
|
protected $collection;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
$this->collection = new LazySubdivisionCollection(['BR', 'Porto Acre']);
|
|
}
|
|
|
|
/**
|
|
* @covers ::__construct
|
|
*/
|
|
public function testConstructor()
|
|
{
|
|
$collection = new LazySubdivisionCollection(['BR', 'Porto Acre']);
|
|
|
|
$reflected_constraint = (new \ReflectionObject($collection))->getProperty('parents');
|
|
$reflected_constraint->setAccessible(TRUE);
|
|
$this->assertEquals(['BR', 'Porto Acre'], $reflected_constraint->getValue($collection));
|
|
}
|
|
|
|
/**
|
|
* @covers ::doInitialize
|
|
*/
|
|
public function testInitialize()
|
|
{
|
|
$subdivision = $this
|
|
->getMockBuilder('CommerceGuys\Addressing\Subdivision\Subdivision')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$subdivisionRepository = $this
|
|
->getMockBuilder('CommerceGuys\Addressing\Subdivision\SubdivisionRepository')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$subdivisionRepository
|
|
->expects($this->any())
|
|
->method('getAll')
|
|
->with(['BR', 'Porto Acre'])
|
|
->will($this->returnValue([$subdivision]));
|
|
$this->collection->setRepository($subdivisionRepository);
|
|
|
|
$this->assertFalse($this->collection->isInitialized());
|
|
$this->assertCount(1, $this->collection);
|
|
$this->assertTrue($this->collection->isInitialized());
|
|
}
|
|
|
|
/**
|
|
* @covers ::getRepository
|
|
* @covers ::setRepository
|
|
*/
|
|
public function testRepository()
|
|
{
|
|
$subdivisionRepository = $this
|
|
->getMockBuilder('CommerceGuys\Addressing\Subdivision\SubdivisionRepository')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$this->collection->setRepository($subdivisionRepository);
|
|
$this->assertSame($subdivisionRepository, $this->collection->getRepository());
|
|
}
|
|
}
|