xref: /webtrees/tests/app/SurnameTradition/PolishSurnameTraditionTest.php (revision 17d74f3aef50c6a34934bb30bfdb7e0f51091eae)
1323788f4SGreg Roach<?php
2323788f4SGreg Roach
3323788f4SGreg Roach/**
4323788f4SGreg Roach * webtrees: online genealogy
5323788f4SGreg Roach * Copyright (C) 2015 webtrees development team
6323788f4SGreg Roach * This program is free software: you can redistribute it and/or modify
7323788f4SGreg Roach * it under the terms of the GNU General Public License as published by
8323788f4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9323788f4SGreg Roach * (at your option) any later version.
10323788f4SGreg Roach * This program is distributed in the hope that it will be useful,
11323788f4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12323788f4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13323788f4SGreg Roach * GNU General Public License for more details.
14323788f4SGreg Roach * You should have received a copy of the GNU General Public License
15323788f4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16323788f4SGreg Roach */
17323788f4SGreg Roachuse Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition;
18323788f4SGreg Roachuse Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface;
19323788f4SGreg Roach
20323788f4SGreg Roach/**
21323788f4SGreg Roach * Test harness for the class SpanishSurnameTradition
22323788f4SGreg Roach */
23db7d25eeSGreg Roachclass PolishSurnameTraditionTest extends \PHPUnit_Framework_TestCase {
24323788f4SGreg Roach	/** @var SurnameTraditionInterface */
25323788f4SGreg Roach	private $surname_tradition;
26323788f4SGreg Roach
27323788f4SGreg Roach	/**
28323788f4SGreg Roach	 * Prepare the environment for these tests
29323788f4SGreg Roach	 */
30323788f4SGreg Roach	public function setUp() {
31323788f4SGreg Roach		$this->surname_tradition = new PolishSurnameTradition;
32323788f4SGreg Roach	}
33323788f4SGreg Roach
34323788f4SGreg Roach	/**
35323788f4SGreg Roach	 * Test whether married surnames are used
36*17d74f3aSGreg Roach	 *
37*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
38323788f4SGreg Roach	 */
39323788f4SGreg Roach	public function testMarriedSurnames() {
40323788f4SGreg Roach		$this->assertSame(true, $this->surname_tradition->hasMarriedNames());
41323788f4SGreg Roach	}
42323788f4SGreg Roach
43323788f4SGreg Roach	/**
44c1ec7145SGreg Roach	 * Test whether surnames are used
45*17d74f3aSGreg Roach	 *
46*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
47c1ec7145SGreg Roach	 */
48c1ec7145SGreg Roach	public function testSurnames() {
49c1ec7145SGreg Roach		$this->assertSame(true, $this->surname_tradition->hasSurnames());
50c1ec7145SGreg Roach	}
51c1ec7145SGreg Roach
52c1ec7145SGreg Roach	/**
53323788f4SGreg Roach	 * Test new son names
54*17d74f3aSGreg Roach	 *
55*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
56323788f4SGreg Roach	 */
57323788f4SGreg Roach	public function testNewSonNames() {
58323788f4SGreg Roach		$this->assertSame(
59323788f4SGreg Roach			array('NAME' => '/White/', 'SURN' => 'White'),
60323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /White/', 'Mary /Black/', 'M')
61323788f4SGreg Roach		);
62323788f4SGreg Roach	}
63323788f4SGreg Roach
64323788f4SGreg Roach	/**
65323788f4SGreg Roach	 * Test new daughter names
66*17d74f3aSGreg Roach	 *
67*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
68323788f4SGreg Roach	 */
69323788f4SGreg Roach	public function testNewDaughterNames() {
70323788f4SGreg Roach		$this->assertSame(
71323788f4SGreg Roach			array('NAME' => '/White/', 'SURN' => 'White'),
72323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /White/', 'Mary /Black/', 'F')
73323788f4SGreg Roach		);
74323788f4SGreg Roach	}
75323788f4SGreg Roach
76323788f4SGreg Roach	/**
77323788f4SGreg Roach	 * Test new daughter names
78*17d74f3aSGreg Roach	 *
79*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
80323788f4SGreg Roach	 */
81323788f4SGreg Roach	public function testNewDaughterNamesInflected() {
82323788f4SGreg Roach		$this->assertSame(
83323788f4SGreg Roach			array('NAME' => '/Whitecka/', 'SURN' => 'Whitecki'),
84323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /Whitecki/', 'Mary /Black/', 'F')
85323788f4SGreg Roach		);
86323788f4SGreg Roach		$this->assertSame(
87323788f4SGreg Roach			array('NAME' => '/Whitedzka/', 'SURN' => 'Whitedzki'),
88323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /Whitedzki/', 'Mary /Black/', 'F')
89323788f4SGreg Roach		);
90323788f4SGreg Roach		$this->assertSame(
91323788f4SGreg Roach			array('NAME' => '/Whiteska/', 'SURN' => 'Whiteski'),
92323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /Whiteski/', 'Mary /Black/', 'F')
93323788f4SGreg Roach		);
94323788f4SGreg Roach		$this->assertSame(
95323788f4SGreg Roach			array('NAME' => '/Whiteżka/', 'SURN' => 'Whiteżki'),
96323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /Whiteżki/', 'Mary /Black/', 'F')
97323788f4SGreg Roach		);
98323788f4SGreg Roach	}
99323788f4SGreg Roach
100323788f4SGreg Roach	/**
101323788f4SGreg Roach	 * Test new child names
102*17d74f3aSGreg Roach	 *
103*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
104323788f4SGreg Roach	 */
105323788f4SGreg Roach	public function testNewChildNames() {
106323788f4SGreg Roach		$this->assertSame(
107323788f4SGreg Roach			array('NAME' => '/White/', 'SURN' => 'White'),
108323788f4SGreg Roach			$this->surname_tradition->newChildNames('John /White/', 'Mary /Black/', 'U')
109323788f4SGreg Roach		);
110323788f4SGreg Roach	}
111323788f4SGreg Roach
112323788f4SGreg Roach	/**
1131677a03aSGreg Roach	 * Test new child names
114*17d74f3aSGreg Roach	 *
115*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
1161677a03aSGreg Roach	 */
1171677a03aSGreg Roach	public function testNewChildNamesWithNoParentsNames() {
1181677a03aSGreg Roach		$this->assertSame(
1191677a03aSGreg Roach			array('NAME' => '//'),
1201677a03aSGreg Roach			$this->surname_tradition->newChildNames('', '', 'U')
1211677a03aSGreg Roach		);
1221677a03aSGreg Roach	}
1231677a03aSGreg Roach
1241677a03aSGreg Roach	/**
125323788f4SGreg Roach	 * Test new father names
126*17d74f3aSGreg Roach	 *
127*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
128323788f4SGreg Roach	 */
129323788f4SGreg Roach	public function testNewFatherNames() {
130323788f4SGreg Roach		$this->assertSame(
131323788f4SGreg Roach			array('NAME' => '/White/', 'SURN' => 'White'),
132323788f4SGreg Roach			$this->surname_tradition->newParentNames('John /White/', 'M')
133323788f4SGreg Roach		);
134323788f4SGreg Roach	}
135323788f4SGreg Roach
136323788f4SGreg Roach	/**
137323788f4SGreg Roach	 * Test new father names
138*17d74f3aSGreg Roach	 *
139*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
140323788f4SGreg Roach	 */
141323788f4SGreg Roach	public function testNewFatherNamesInflected() {
142323788f4SGreg Roach		$this->assertSame(
143323788f4SGreg Roach			array('NAME' => '/Whitecki/', 'SURN' => 'Whitecki'),
144323788f4SGreg Roach			$this->surname_tradition->newParentNames('Mary /Whitecka/', 'M')
145323788f4SGreg Roach		);
146323788f4SGreg Roach		$this->assertSame(
147323788f4SGreg Roach			array('NAME' => '/Whitedzki/', 'SURN' => 'Whitedzki'),
148323788f4SGreg Roach			$this->surname_tradition->newParentNames('Mary /Whitedzka/', 'M')
149323788f4SGreg Roach		);
150323788f4SGreg Roach		$this->assertSame(
151323788f4SGreg Roach			array('NAME' => '/Whiteski/', 'SURN' => 'Whiteski'),
152323788f4SGreg Roach			$this->surname_tradition->newParentNames('Mary /Whiteska/', 'M')
153323788f4SGreg Roach		);
154323788f4SGreg Roach		$this->assertSame(
155323788f4SGreg Roach			array('NAME' => '/Whiteżki/', 'SURN' => 'Whiteżki'),
156323788f4SGreg Roach			$this->surname_tradition->newParentNames('Mary /Whiteżka/', 'M')
157323788f4SGreg Roach		);
158323788f4SGreg Roach	}
159323788f4SGreg Roach
160323788f4SGreg Roach	/**
161323788f4SGreg Roach	 * Test new mother names
162*17d74f3aSGreg Roach	 *
163*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
164323788f4SGreg Roach	 */
165323788f4SGreg Roach	public function testNewMotherNames() {
166323788f4SGreg Roach		$this->assertSame(
167323788f4SGreg Roach			array('NAME' => '//'),
168323788f4SGreg Roach			$this->surname_tradition->newParentNames('John /White/', 'F')
169323788f4SGreg Roach		);
170323788f4SGreg Roach	}
171323788f4SGreg Roach
172323788f4SGreg Roach	/**
173323788f4SGreg Roach	 * Test new parent names
174*17d74f3aSGreg Roach	 *
175*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
176323788f4SGreg Roach	 */
177323788f4SGreg Roach	public function testNewParentNames() {
178323788f4SGreg Roach		$this->assertSame(
179323788f4SGreg Roach			array('NAME' => '//'),
180323788f4SGreg Roach			$this->surname_tradition->newParentNames('John /White/', 'U')
181323788f4SGreg Roach		);
182323788f4SGreg Roach	}
183323788f4SGreg Roach
184323788f4SGreg Roach	/**
185323788f4SGreg Roach	 * Test new husband names
186*17d74f3aSGreg Roach	 *
187*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
188323788f4SGreg Roach	 */
189323788f4SGreg Roach	public function testNewHusbandNames() {
190323788f4SGreg Roach		$this->assertSame(
191323788f4SGreg Roach			array('NAME' => '//'),
192323788f4SGreg Roach			$this->surname_tradition->newSpouseNames('Mary /Black/', 'M')
193323788f4SGreg Roach		);
194323788f4SGreg Roach	}
195323788f4SGreg Roach
196323788f4SGreg Roach	/**
197323788f4SGreg Roach	 * Test new wife names
198*17d74f3aSGreg Roach	 *
199*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
200323788f4SGreg Roach	 */
201323788f4SGreg Roach	public function testNewWifeNames() {
202323788f4SGreg Roach		$this->assertSame(
203323788f4SGreg Roach			array('NAME' => '//', '_MARNM' => '/White/'),
204323788f4SGreg Roach			$this->surname_tradition->newSpouseNames('John /White/', 'F')
205323788f4SGreg Roach		);
206323788f4SGreg Roach	}
207323788f4SGreg Roach
208323788f4SGreg Roach	/**
209323788f4SGreg Roach	 * Test new spouse names
210*17d74f3aSGreg Roach	 *
211*17d74f3aSGreg Roach	 * @covers Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition
212323788f4SGreg Roach	 */
213323788f4SGreg Roach	public function testNewSpouseNames() {
214323788f4SGreg Roach		$this->assertSame(
215323788f4SGreg Roach			array('NAME' => '//'),
216323788f4SGreg Roach			$this->surname_tradition->newSpouseNames('Chris /Green/', 'U')
217323788f4SGreg Roach		);
218323788f4SGreg Roach	}
219323788f4SGreg Roach}
220