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 */ 16declare(strict_types=1); 17 18namespace Fisharebest\Webtrees\Census; 19 20use Fisharebest\Webtrees\Place; 21use Mockery; 22 23/** 24 * Test harness for the class CensusColumnFatherBirthPlaceSimple 25 */ 26class CensusColumnFatherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase 27{ 28 /** 29 * Delete mock objects 30 * 31 * @return void 32 */ 33 public function tearDown() 34 { 35 Mockery::close(); 36 } 37 38 /** 39 * Get place mock. 40 * 41 * @param string $place Gedcom Place 42 * 43 * @return Place 44 */ 45 private function getPlaceMock($place): Place 46 { 47 $placeParts = explode(', ', $place); 48 49 $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); 50 $placeMock->shouldReceive('getGedcomName')->andReturn($place); 51 $placeMock->shouldReceive('lastPart')->andReturn(end($placeParts)); 52 53 return $placeMock; 54 } 55 56 /** 57 * @covers \Fisharebest\Webtrees\Census\CensusColumnFatherBirthPlaceSimple 58 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 59 * 60 * @return void 61 */ 62 public function testKnownStateAndTown() 63 { 64 $father = Mockery::mock('Fisharebest\Webtrees\Individual'); 65 $father->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('Miami, Florida, United States')); 66 67 $family = Mockery::mock('Fisharebest\Webtrees\Family'); 68 $family->shouldReceive('getHusband')->andReturn($father); 69 70 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 71 $individual->shouldReceive('getPrimaryChildFamily')->andReturn($family); 72 73 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 74 $census->shouldReceive('censusPlace')->andReturn('United States'); 75 76 $column = new CensusColumnFatherBirthPlaceSimple($census, '', ''); 77 78 $this->assertSame('Florida', $column->generate($individual, $individual)); 79 } 80} 81