xref: /webtrees/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php (revision db3aeb3eb846bb233f34557aedb1559aadf9275a)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2019 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees\Census;
19
20use Fisharebest\Webtrees\Family;
21use Fisharebest\Webtrees\Individual;
22use Fisharebest\Webtrees\Place;
23use Illuminate\Support\Collection;
24
25/**
26 * Test harness for the class CensusColumnFatherBirthPlaceSimple
27 */
28class CensusColumnFatherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase
29{
30    /**
31     * Get place mock.
32     *
33     * @param string $place Gedcom Place
34     *
35     * @return Place
36     */
37    private function getPlaceMock($place): Place
38    {
39        $placeParts = explode(', ', $place);
40
41        $placeMock = $this->createMock(Place::class);
42        $placeMock->method('gedcomName')->willReturn($place);
43        $placeMock->method('lastParts')->willReturn(new Collection($placeParts));
44
45        return $placeMock;
46    }
47
48    /**
49     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlaceSimple
50     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
51     *
52     * @return void
53     */
54    public function testKnownStateAndTown(): void
55    {
56        $father = $this->createMock(Individual::class);
57        $father->method('getBirthPlace')->willReturn($this->getPlaceMock('Miami, Florida, United States'));
58
59        $family = $this->createMock(Family::class);
60        $family->method('husband')->willReturn($father);
61
62        $individual = $this->createMock(Individual::class);
63        $individual->method('primaryChildFamily')->willReturn($family);
64
65        $census = $this->createMock(CensusInterface::class);
66        $census->method('censusPlace')->willReturn('United States');
67
68        $column = new CensusColumnFatherBirthPlaceSimple($census, '', '');
69
70        $this->assertSame('Florida', $column->generate($individual, $individual));
71    }
72}
73