xref: /webtrees/tests/app/Census/CensusColumnFatherBirthPlaceTest.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 CensusColumnFatherBirthPlace
27 */
28class CensusColumnFatherBirthPlaceTest 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\CensusColumnFatherBirthPlace
50     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
51     *
52     * @return void
53     */
54    public function testSameCountry(): void
55    {
56        $father = $this->createMock(Individual::class);
57        $father->method('getBirthPlace')->willReturn($this->getPlaceMock('London, England'));
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('England');
67
68        $column = new CensusColumnFatherBirthPlace($census, '', '');
69
70        $this->assertSame('London', $column->generate($individual, $individual));
71    }
72
73    /**
74     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace
75     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
76     *
77     * @return void
78     */
79    public function testDifferentCountry(): void
80    {
81        $father = $this->createMock(Individual::class);
82        $father->method('getBirthPlace')->willReturn($this->getPlaceMock('London, England'));
83
84        $family = $this->createMock(Family::class);
85        $family->method('husband')->willReturn($father);
86
87        $individual = $this->createMock(Individual::class);
88        $individual->method('primaryChildFamily')->willReturn($family);
89
90        $census = $this->createMock(CensusInterface::class);
91        $census->method('censusPlace')->willReturn('Ireland');
92
93        $column = new CensusColumnFatherBirthPlace($census, '', '');
94
95        $this->assertSame('London, England', $column->generate($individual, $individual));
96    }
97
98    /**
99     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace
100     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
101     *
102     * @return void
103     */
104    public function testPlaceNoParent(): void
105    {
106        $family = $this->createMock(Family::class);
107        $family->method('husband')->willReturn(null);
108
109        $individual = $this->createMock(Individual::class);
110        $individual->method('primaryChildFamily')->willReturn($family);
111
112        $census = $this->createMock(CensusInterface::class);
113        $census->method('censusPlace')->willReturn('England');
114
115        $column = new CensusColumnFatherBirthPlace($census, '', '');
116
117        $this->assertSame('', $column->generate($individual, $individual));
118    }
119
120    /**
121     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlace
122     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
123     *
124     * @return void
125     */
126    public function testPlaceNoParentFamily(): void
127    {
128        $individual = $this->createMock(Individual::class);
129        $individual->method('primaryChildFamily')->willReturn(null);
130
131        $census = $this->createMock(CensusInterface::class);
132        $census->method('censusPlace')->willReturn('England');
133
134        $column = new CensusColumnFatherBirthPlace($census, '', '');
135
136        $this->assertSame('', $column->generate($individual, $individual));
137    }
138}
139