xref: /webtrees/tests/app/Census/CensusColumnChildrenLivingTest.php (revision c314ecc9a18e5e740a1c0fcb7379ef541f969dc5)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
16 */
17namespace Fisharebest\Webtrees\Census;
18
19use Fisharebest\Webtrees\Date;
20use Fisharebest\Webtrees\Family;
21use Fisharebest\Webtrees\Individual;
22use Mockery;
23
24/**
25 * Test harness for the class CensusColumnChildrenLiving
26 */
27class CensusColumnChildrenLivingTest extends \PHPUnit_Framework_TestCase {
28	/**
29	 * Delete mock objects
30	 */
31	public function tearDown() {
32		Mockery::close();
33	}
34
35	/**
36	 * @covers Fisharebest\Webtrees\Census\CensusColumnChildrenLiving
37	 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn
38	 */
39	public function testMale() {
40		$individual = Mockery::mock('Fisharebest\Webtrees\Individual');
41		$individual->shouldReceive('getSex')->andReturn('M');
42
43		$census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
44
45		$column = new CensusColumnChildrenLiving($census, '', '');
46
47		$this->assertSame('', $column->generate($individual));
48	}
49
50	/**
51	 * @covers Fisharebest\Webtrees\Census\CensusColumnChildrenLiving
52	 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn
53	 */
54	public function testCountChildren() {
55		// Stillborn
56		$child1 = Mockery::mock('Fisharebest\Webtrees\Individual');
57		$child1->shouldReceive('getBirthDate')->andReturn(new Date('01 FEB 1904'));
58		$child1->shouldReceive('getDeathDate')->andReturn(new Date('01 FEB 1904'));
59
60		// Died after census
61		$child2 = Mockery::mock('Fisharebest\Webtrees\Individual');
62		$child2->shouldReceive('getBirthDate')->andReturn(new Date('02 FEB 1904'));
63		$child2->shouldReceive('getDeathDate')->andReturn(new Date('20 DEC 1912'));
64
65		// Died before census
66		$child3 = Mockery::mock('Fisharebest\Webtrees\Individual');
67		$child3->shouldReceive('getBirthDate')->andReturn(new Date('02 FEB 1904'));
68		$child3->shouldReceive('getDeathDate')->andReturn(new Date('20 DEC 1910'));
69
70		// Still living
71		$child4 = Mockery::mock('Fisharebest\Webtrees\Individual');
72		$child4->shouldReceive('getBirthDate')->andReturn(new Date('01 FEB 1904'));
73		$child4->shouldReceive('getDeathDate')->andReturn(new Date(''));
74
75		$family = Mockery::mock('Fisharebest\Webtrees\Family');
76		$family->shouldReceive('getChildren')->andReturn(array($child1, $child2, $child3, $child4));
77
78		$individual = Mockery::mock('Fisharebest\Webtrees\Individual');
79		$individual->shouldReceive('getSex')->andReturn('F');
80		$individual->shouldReceive('getSpouseFamilies')->andReturn(array($family));
81
82		$census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
83		$census->shouldReceive('censusDate')->andReturn('30 MAR 1911');
84
85		$column = new CensusColumnChildrenLiving($census, '', '');
86
87		$this->assertSame('2', $column->generate($individual));
88	}
89}
90