xref: /webtrees/tests/app/Census/CensusColumnSurnameGivenNamesTest.php (revision 081147b95980645ee0f905276120bd50aff10f67)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2018 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 */
16namespace Fisharebest\Webtrees\Census;
17
18use Mockery;
19
20/**
21 * Test harness for the class CensusColumnSurnameGivenNames
22 */
23class CensusColumnSurnameGivenNamesTest extends \Fisharebest\Webtrees\TestCase
24{
25    /**
26     * Delete mock objects
27     *
28     * @return void
29     */
30    public function tearDown()
31    {
32        Mockery::close();
33    }
34
35    /**
36     * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames
37     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
38     *
39     * @return void
40     */
41    public function testOneGivenName()
42    {
43        $individual = Mockery::mock('Fisharebest\Webtrees\Individual');
44        $individual->shouldReceive('getAllNames')->andReturn([
45            [
46                'givn' => 'Joe',
47                'surname' => 'Sixpack',
48            ],
49        ]);
50        $individual->shouldReceive('getSpouseFamilies')->andReturn([]);
51
52        $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
53        $census->shouldReceive('censusDate')->andReturn('');
54
55        $column = new CensusColumnSurnameGivenNames($census, '', '');
56
57        $this->assertSame('Sixpack, Joe', $column->generate($individual, $individual));
58    }
59
60    /**
61     * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames
62     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
63     *
64     * @return void
65     */
66    public function testMultipleGivenNames()
67    {
68        $individual = Mockery::mock('Fisharebest\Webtrees\Individual');
69        $individual->shouldReceive('getAllNames')->andReturn([
70            [
71                'givn' => 'Joe Fred',
72                'surname' => 'Sixpack',
73            ],
74        ]);
75        $individual->shouldReceive('getSpouseFamilies')->andReturn([]);
76
77        $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
78        $census->shouldReceive('censusDate')->andReturn('');
79
80        $column = new CensusColumnSurnameGivenNames($census, '', '');
81
82        $this->assertSame('Sixpack, Joe Fred', $column->generate($individual, $individual));
83    }
84
85    /**
86     * @covers \Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames
87     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
88     *
89     * @return void
90     */
91    public function testNoName()
92    {
93        $individual = Mockery::mock('Fisharebest\Webtrees\Individual');
94        $individual->shouldReceive('getAllNames')->andReturn([]);
95        $individual->shouldReceive('getSpouseFamilies')->andReturn([]);
96
97        $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
98        $census->shouldReceive('censusDate')->andReturn('');
99
100        $column = new CensusColumnSurnameGivenNames($census, '', '');
101
102        $this->assertSame('', $column->generate($individual, $individual));
103    }
104}
105