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 */ 17use Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition; 18use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; 19 20/** 21 * Test harness for the class SpanishSurnameTradition 22 */ 23class SpanishSurnameTraditionTest extends \PHPUnit_Framework_TestCase { 24 /** @var SurnameTraditionInterface */ 25 private $surname_tradition; 26 27 /** 28 * Prepare the environment for these tests 29 */ 30 public function setUp() { 31 $this->surname_tradition = new SpanishSurnameTradition; 32 } 33 34 /** 35 * Test whether married surnames are used 36 */ 37 public function testMarriedSurnames() { 38 $this->assertSame(false, $this->surname_tradition->hasMarriedNames()); 39 } 40 41 /** 42 * Test whether surnames are used 43 */ 44 public function testSurnames() { 45 $this->assertSame(true, $this->surname_tradition->hasSurnames()); 46 } 47 48 /** 49 * Test new son names 50 */ 51 public function testNewSonNames() { 52 $this->assertSame( 53 array('NAME' => '/Garcia/ /Ruiz/', 'SURN' => 'Garcia,Ruiz'), 54 $this->surname_tradition->newChildNames('Gabriel /Garcia/ /Iglesias/', 'Maria /Ruiz/ /Lorca/', 'M') 55 ); 56 } 57 58 /** 59 * Test new daughter names 60 */ 61 public function testNewDaughterNames() { 62 $this->assertSame( 63 array('NAME' => '/Garcia/ /Ruiz/', 'SURN' => 'Garcia,Ruiz'), 64 $this->surname_tradition->newChildNames('Gabriel /Garcia/ /Iglesias/', 'Maria /Ruiz/ /Lorca/', 'M') 65 ); 66 } 67 68 /** 69 * Test new child names 70 */ 71 public function testNewChildNames() { 72 $this->assertSame( 73 array('NAME' => '/Garcia/ /Ruiz/', 'SURN' => 'Garcia,Ruiz'), 74 $this->surname_tradition->newChildNames('Gabriel /Garcia/ /Iglesias/', 'Maria /Ruiz/ /Lorca/', 'M') 75 ); 76 } 77 78 /** 79 * Test new child names 80 */ 81 public function testNewChildNamesWithNoParentsNames() { 82 $this->assertSame( 83 array('NAME' => '// //', 'SURN'=>''), 84 $this->surname_tradition->newChildNames('', '', 'U') 85 ); 86 } 87 88 /** 89 * Test new child names 90 */ 91 public function testNewChildNamesCompunds() { 92 $this->assertSame( 93 array('NAME' => '/Garcia/ /Ruiz/', 'SURN' => 'Garcia,Ruiz'), 94 $this->surname_tradition->newChildNames('Gabriel /Garcia Iglesias/', 'Maria /Ruiz Lorca/', 'M') 95 ); 96 $this->assertSame( 97 array('NAME' => '/Garcia/ /Ruiz/', 'SURN' => 'Garcia,Ruiz'), 98 $this->surname_tradition->newChildNames('Gabriel /Garcia y Iglesias/', 'Maria /Ruiz y Lorca/', 'M') 99 ); 100 } 101 102 /** 103 * Test new father names 104 */ 105 public function testNewFatherNames() { 106 $this->assertSame( 107 array('NAME' => '/Garcia/ //', 'SURN' => 'Garcia'), 108 $this->surname_tradition->newParentNames('Gabriel /Garcia/ /Iglesias/', 'M') 109 ); 110 } 111 112 /** 113 * Test new mother names 114 */ 115 public function testNewMotherNames() { 116 $this->assertSame( 117 array('NAME' => '/Iglesias/ //', 'SURN' => 'Iglesias'), 118 $this->surname_tradition->newParentNames('Gabriel /Garcia/ /Iglesias/', 'F') 119 ); 120 } 121 122 /** 123 * Test new parent names 124 */ 125 public function testNewParentNames() { 126 $this->assertSame( 127 array('NAME' => '// //'), 128 $this->surname_tradition->newParentNames('Gabriel /Garcia/ /Iglesias/', 'U') 129 ); 130 } 131 132 /** 133 * Test new husband names 134 */ 135 public function testNewHusbandNames() { 136 $this->assertSame( 137 array('NAME' => '// //'), 138 $this->surname_tradition->newSpouseNames('Maria /Ruiz/ /Lorca/', 'M') 139 ); 140 } 141 142 /** 143 * Test new wife names 144 */ 145 public function testNewWifeNames() { 146 $this->assertSame( 147 array('NAME' => '// //'), 148 $this->surname_tradition->newSpouseNames('Gabriel /Garcia/ /Iglesias/', 'F') 149 ); 150 } 151 152 /** 153 * Test new spouse names 154 */ 155 public function testNewSpouseNames() { 156 $this->assertSame( 157 array('NAME' => '// //'), 158 $this->surname_tradition->newSpouseNames('Gabriel /Garcia/ /Iglesias/', 'U') 159 ); 160 } 161} 162