xref: /webtrees/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php (revision 3cfcc809af53e831fa6cafac7b274a2cb407db6e)
1a4500ed5SGreg Roach<?php
23976b470SGreg Roach
3a4500ed5SGreg Roach/**
4a4500ed5SGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
6a4500ed5SGreg Roach * This program is free software: you can redistribute it and/or modify
7a4500ed5SGreg Roach * it under the terms of the GNU General Public License as published by
8a4500ed5SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9a4500ed5SGreg Roach * (at your option) any later version.
10a4500ed5SGreg Roach * This program is distributed in the hope that it will be useful,
11a4500ed5SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12a4500ed5SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13a4500ed5SGreg Roach * GNU General Public License for more details.
14a4500ed5SGreg Roach * You should have received a copy of the GNU General Public License
15a4500ed5SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16a4500ed5SGreg Roach */
17e7f56f2aSGreg Roachdeclare(strict_types=1);
18e7f56f2aSGreg Roach
19a4500ed5SGreg Roachnamespace Fisharebest\Webtrees\Census;
20a4500ed5SGreg Roach
21ddf438a5SGreg Roachuse Fisharebest\Webtrees\Family;
22ddf438a5SGreg Roachuse Fisharebest\Webtrees\Individual;
2352348eb8SGreg Roachuse Fisharebest\Webtrees\Place;
24*3cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
25392561bbSGreg Roachuse Illuminate\Support\Collection;
26a4500ed5SGreg Roach
27a4500ed5SGreg Roach/**
28a4500ed5SGreg Roach * Test harness for the class CensusColumnMotherBirthPlaceSimple
29a4500ed5SGreg Roach */
30*3cfcc809SGreg Roachclass CensusColumnMotherBirthPlaceSimpleTest extends TestCase
31c1010edaSGreg Roach{
32a4500ed5SGreg Roach    /**
3316d0b7f7SRico Sonntag     * Get place mock.
3416d0b7f7SRico Sonntag     *
3516d0b7f7SRico Sonntag     * @param string $place Gedcom Place
3616d0b7f7SRico Sonntag     *
3752348eb8SGreg Roach     * @return Place
3816d0b7f7SRico Sonntag     */
3952348eb8SGreg Roach    private function getPlaceMock($place): Place
40c1010edaSGreg Roach    {
4116d0b7f7SRico Sonntag        $placeParts = explode(', ', $place);
4216d0b7f7SRico Sonntag
430ecdbde6SGreg Roach        $placeMock = $this->createMock(Place::class);
440ecdbde6SGreg Roach        $placeMock->method('gedcomName')->willReturn($place);
450ecdbde6SGreg Roach        $placeMock->method('lastParts')->willReturn(new Collection($placeParts));
4616d0b7f7SRico Sonntag
4716d0b7f7SRico Sonntag        return $placeMock;
4816d0b7f7SRico Sonntag    }
4916d0b7f7SRico Sonntag
5016d0b7f7SRico Sonntag    /**
5115d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlaceSimple
5215d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
5352348eb8SGreg Roach     *
5452348eb8SGreg Roach     * @return void
55a4500ed5SGreg Roach     */
569b802b22SGreg Roach    public function testKnownStateAndTown(): void
57c1010edaSGreg Roach    {
580ecdbde6SGreg Roach        $father = $this->createMock(Individual::class);
590ecdbde6SGreg Roach        $father->method('getBirthPlace')->willReturn($this->getPlaceMock('Miami, Florida, United States'));
60a4500ed5SGreg Roach
610ecdbde6SGreg Roach        $family = $this->createMock(Family::class);
620ecdbde6SGreg Roach        $family->method('wife')->willReturn($father);
63a4500ed5SGreg Roach
640ecdbde6SGreg Roach        $individual = $this->createMock(Individual::class);
650ecdbde6SGreg Roach        $individual->method('primaryChildFamily')->willReturn($family);
66a4500ed5SGreg Roach
670ecdbde6SGreg Roach        $census = $this->createMock(CensusInterface::class);
680ecdbde6SGreg Roach        $census->method('censusPlace')->willReturn('United States');
69a4500ed5SGreg Roach
70a4500ed5SGreg Roach        $column = new CensusColumnMotherBirthPlaceSimple($census, '', '');
71a4500ed5SGreg Roach
72342dcecdSGreg Roach        $this->assertSame('Florida', $column->generate($individual, $individual));
73a4500ed5SGreg Roach    }
74a4500ed5SGreg Roach}
75