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 CensusColumnBirthPlace 25 */ 26class CensusColumnBirthPlaceTest 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 $placeMock = Mockery::mock('\Fisharebest\Webtrees\Place'); 48 $placeMock->shouldReceive('getGedcomName')->andReturn($place); 49 50 return $placeMock; 51 } 52 53 /** 54 * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlace 55 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 56 * 57 * @return void 58 */ 59 public function testPlaceCountry() 60 { 61 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 62 $individual->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('Westminster, London, England')); 63 64 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 65 $census->shouldReceive('censusPlace')->andReturn('England'); 66 67 $column = new CensusColumnBirthPlace($census, '', ''); 68 69 $this->assertSame('Westminster, London', $column->generate($individual, $individual)); 70 } 71 72 /** 73 * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlace 74 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 75 * 76 * @return void 77 */ 78 public function testPlaceAndCountry() 79 { 80 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 81 $individual->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('England')); 82 83 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 84 $census->shouldReceive('censusPlace')->andReturn('England'); 85 86 $column = new CensusColumnBirthPlace($census, '', ''); 87 88 $this->assertSame('', $column->generate($individual, $individual)); 89 } 90 91 /** 92 * @covers \Fisharebest\Webtrees\Census\CensusColumnBirthPlace 93 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 94 * 95 * @return void 96 */ 97 public function testDifferentCountry() 98 { 99 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 100 $individual->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('Paris, France')); 101 102 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 103 $census->shouldReceive('censusPlace')->andReturn('England'); 104 105 $column = new CensusColumnBirthPlace($census, '', ''); 106 107 $this->assertSame('Paris, France', $column->generate($individual, $individual)); 108 } 109} 110