xref: /webtrees/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php (revision 392561bb99af217275768e5e324d4700af01ce3e)
1a4500ed5SGreg Roach<?php
2a4500ed5SGreg Roach/**
3a4500ed5SGreg Roach * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5a4500ed5SGreg Roach * This program is free software: you can redistribute it and/or modify
6a4500ed5SGreg Roach * it under the terms of the GNU General Public License as published by
7a4500ed5SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8a4500ed5SGreg Roach * (at your option) any later version.
9a4500ed5SGreg Roach * This program is distributed in the hope that it will be useful,
10a4500ed5SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11a4500ed5SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12a4500ed5SGreg Roach * GNU General Public License for more details.
13a4500ed5SGreg Roach * You should have received a copy of the GNU General Public License
14a4500ed5SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15a4500ed5SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
18a4500ed5SGreg Roachnamespace Fisharebest\Webtrees\Census;
19a4500ed5SGreg Roach
20ddf438a5SGreg Roachuse Fisharebest\Webtrees\Family;
21ddf438a5SGreg Roachuse Fisharebest\Webtrees\Individual;
2252348eb8SGreg Roachuse Fisharebest\Webtrees\Place;
23*392561bbSGreg Roachuse Illuminate\Support\Collection;
24a4500ed5SGreg Roachuse Mockery;
25a4500ed5SGreg Roach
26a4500ed5SGreg Roach/**
27a4500ed5SGreg Roach * Test harness for the class CensusColumnMotherBirthPlaceSimple
28a4500ed5SGreg Roach */
2984e2cf4eSGreg Roachclass CensusColumnMotherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase
30c1010edaSGreg Roach{
31a4500ed5SGreg Roach    /**
32a4500ed5SGreg Roach     * Delete mock objects
3352348eb8SGreg Roach     *
3452348eb8SGreg Roach     * @return void
35a4500ed5SGreg Roach     */
36c1010edaSGreg Roach    public function tearDown()
37c1010edaSGreg Roach    {
38a4500ed5SGreg Roach        Mockery::close();
39a4500ed5SGreg Roach    }
40a4500ed5SGreg Roach
41a4500ed5SGreg Roach    /**
4216d0b7f7SRico Sonntag     * Get place mock.
4316d0b7f7SRico Sonntag     *
4416d0b7f7SRico Sonntag     * @param string $place Gedcom Place
4516d0b7f7SRico Sonntag     *
4652348eb8SGreg Roach     * @return Place
4716d0b7f7SRico Sonntag     */
4852348eb8SGreg Roach    private function getPlaceMock($place): Place
49c1010edaSGreg Roach    {
5016d0b7f7SRico Sonntag        $placeParts = explode(', ', $place);
5116d0b7f7SRico Sonntag
52ddf438a5SGreg Roach        $placeMock = Mockery::mock(Place::class);
53*392561bbSGreg Roach        $placeMock->shouldReceive('gedcomName')->andReturn($place);
54*392561bbSGreg Roach        $placeMock->shouldReceive('lastParts')->andReturn(new Collection($placeParts));
5516d0b7f7SRico Sonntag
5616d0b7f7SRico Sonntag        return $placeMock;
5716d0b7f7SRico Sonntag    }
5816d0b7f7SRico Sonntag
5916d0b7f7SRico Sonntag    /**
6015d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlaceSimple
6115d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
6252348eb8SGreg Roach     *
6352348eb8SGreg Roach     * @return void
64a4500ed5SGreg Roach     */
659b802b22SGreg Roach    public function testKnownStateAndTown(): void
66c1010edaSGreg Roach    {
67ddf438a5SGreg Roach        $father = Mockery::mock(Individual::class);
6816d0b7f7SRico Sonntag        $father->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('Miami, Florida, United States'));
69a4500ed5SGreg Roach
70ddf438a5SGreg Roach        $family = Mockery::mock(Family::class);
71a4500ed5SGreg Roach        $family->shouldReceive('getWife')->andReturn($father);
72a4500ed5SGreg Roach
73ddf438a5SGreg Roach        $individual = Mockery::mock(Individual::class);
74a4500ed5SGreg Roach        $individual->shouldReceive('getPrimaryChildFamily')->andReturn($family);
75a4500ed5SGreg Roach
76ddf438a5SGreg Roach        $census = Mockery::mock(CensusInterface::class);
77a4500ed5SGreg Roach        $census->shouldReceive('censusPlace')->andReturn('United States');
78a4500ed5SGreg Roach
79a4500ed5SGreg Roach        $column = new CensusColumnMotherBirthPlaceSimple($census, '', '');
80a4500ed5SGreg Roach
81342dcecdSGreg Roach        $this->assertSame('Florida', $column->generate($individual, $individual));
82a4500ed5SGreg Roach    }
83a4500ed5SGreg Roach}
84