xref: /webtrees/tests/app/Census/CensusColumnFatherForeignTest.php (revision 2ebcf907ed34213f816592af04e6c160335d6311)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2021 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Census;
21
22use Fisharebest\Webtrees\Family;
23use Fisharebest\Webtrees\Individual;
24use Fisharebest\Webtrees\Place;
25use Fisharebest\Webtrees\TestCase;
26use Illuminate\Support\Collection;
27
28/**
29 * Test harness for the class CensusColumnFatherForeign
30 */
31class CensusColumnFatherForeignTest extends TestCase
32{
33    /**
34     * Get place mock.
35     *
36     * @param string $place Gedcom Place
37     *
38     * @return Place
39     */
40    private function getPlaceMock(string $place): Place
41    {
42        $placeMock = $this->createMock(Place::class);
43        $placeMock->method('gedcomName')->willReturn($place);
44
45        return $placeMock;
46    }
47
48    /**
49     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherForeign
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('childFamilies')->willReturn(new Collection([$family]));
64
65        $census = $this->createMock(CensusInterface::class);
66        $census->method('censusPlace')->willReturn('England');
67
68        $column = new CensusColumnFatherForeign($census, '', '');
69
70        self::assertSame('', $column->generate($individual, $individual));
71    }
72
73    /**
74     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherForeign
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('childFamilies')->willReturn(new Collection([$family]));
89
90        $census = $this->createMock(CensusInterface::class);
91        $census->method('censusPlace')->willReturn('Ireland');
92
93        $column = new CensusColumnFatherForeign($census, '', '');
94
95        self::assertSame('Y', $column->generate($individual, $individual));
96    }
97
98    /**
99     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherForeign
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('childFamilies')->willReturn(new Collection([$family]));
111
112        $census = $this->createMock(CensusInterface::class);
113        $census->method('censusPlace')->willReturn('England');
114
115        $column = new CensusColumnFatherForeign($census, '', '');
116
117        self::assertSame('', $column->generate($individual, $individual));
118    }
119
120    /**
121     * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherForeign
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('childFamilies')->willReturn(new Collection());
130
131        $census = $this->createMock(CensusInterface::class);
132        $census->method('censusPlace')->willReturn('England');
133
134        $column = new CensusColumnFatherForeign($census, '', '');
135
136        self::assertSame('', $column->generate($individual, $individual));
137    }
138}
139