xref: /webtrees/tests/app/Census/CensusOfDeutschland1919Test.php (revision 3976b4703df669696105ed6b024b96d433c8fbdb)
1ce92b752Smpwt<?php
2*3976b470SGreg Roach
3ce92b752Smpwt/**
4ce92b752Smpwt * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
6ce92b752Smpwt * This program is free software: you can redistribute it and/or modify
7ce92b752Smpwt * it under the terms of the GNU General Public License as published by
8ce92b752Smpwt * the Free Software Foundation, either version 3 of the License, or
9ce92b752Smpwt * (at your option) any later version.
10ce92b752Smpwt * This program is distributed in the hope that it will be useful,
11ce92b752Smpwt * but WITHOUT ANY WARRANTY; without even the implied warranty of
12ce92b752Smpwt * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13ce92b752Smpwt * GNU General Public License for more details.
14ce92b752Smpwt * You should have received a copy of the GNU General Public License
15ce92b752Smpwt * along with this program. If not, see <http://www.gnu.org/licenses/>.
16ce92b752Smpwt */
17e7f56f2aSGreg Roachdeclare(strict_types=1);
18e7f56f2aSGreg Roach
19ce92b752Smpwtnamespace Fisharebest\Webtrees\Census;
20ce92b752Smpwt
21ce92b752Smpwt/**
22ce92b752Smpwt * Test harness for the class CensusOfDeutschland1919
23ce92b752Smpwt */
2484e2cf4eSGreg Roachclass CensusOfDeutschland1919Test extends \Fisharebest\Webtrees\TestCase
25c1010edaSGreg Roach{
26ce92b752Smpwt    /**
27ce92b752Smpwt     * Test the census place and date
28ce92b752Smpwt     *
2915d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1919
3052348eb8SGreg Roach     *
3152348eb8SGreg Roach     * @return void
32ce92b752Smpwt     */
339b802b22SGreg Roach    public function testPlaceAndDate(): void
34c1010edaSGreg Roach    {
3574d6dc0eSGreg Roach        $census = new CensusOfDeutschland1919();
36ce92b752Smpwt
37ce92b752Smpwt        $this->assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace());
38ce92b752Smpwt        $this->assertSame('08 OCT 1919', $census->censusDate());
39ce92b752Smpwt    }
40ce92b752Smpwt
41ce92b752Smpwt    /**
42ce92b752Smpwt     * Test the census columns
43ce92b752Smpwt     *
4415d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1919
4515d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
4652348eb8SGreg Roach     *
4752348eb8SGreg Roach     * @return void
48ce92b752Smpwt     */
499b802b22SGreg Roach    public function testColumns(): void
50c1010edaSGreg Roach    {
5174d6dc0eSGreg Roach        $census  = new CensusOfDeutschland1919();
52ce92b752Smpwt        $columns = $census->columns();
53ce92b752Smpwt
54ce92b752Smpwt        $this->assertCount(17, $columns);
55803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[0]);
56803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnGivenNames::class, $columns[1]);
57803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnSurname::class, $columns[2]);
58803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnRelationToHeadGerman::class, $columns[3]);
59803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[4]);
60803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[5]);
61803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[6]);
62803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnBirthDay::class, $columns[7]);
63803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnBirthMonth::class, $columns[8]);
64803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnBirthYear::class, $columns[9]);
65803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnBirthPlace::class, $columns[10]);
66803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[11]);
67803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[12]);
68803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[13]);
69803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[14]);
70803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[15]);
71803193feSGreg Roach        $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[16]);
72ce92b752Smpwt
73ce92b752Smpwt        $this->assertSame('Nummer', $columns[0]->abbreviation());
74ce92b752Smpwt        $this->assertSame('Vorname', $columns[1]->abbreviation());
75ce92b752Smpwt        $this->assertSame('Familienname', $columns[2]->abbreviation());
76ce92b752Smpwt        $this->assertSame('Stellung im Haushalt', $columns[3]->abbreviation());
77ce92b752Smpwt        $this->assertSame('männlich', $columns[4]->abbreviation());
78ce92b752Smpwt        $this->assertSame('weiblich', $columns[5]->abbreviation());
79ce92b752Smpwt        $this->assertSame('Familienstand', $columns[6]->abbreviation());
80ce92b752Smpwt        $this->assertSame('Geburts-Tag', $columns[7]->abbreviation());
81ce92b752Smpwt        $this->assertSame('Geburts-Monat', $columns[8]->abbreviation());
82ce92b752Smpwt        $this->assertSame('Geburts-Jahr', $columns[9]->abbreviation());
83ce92b752Smpwt        $this->assertSame('Geburtsort', $columns[10]->abbreviation());
84ce92b752Smpwt        $this->assertSame('Amt, Kreis, Bezirk', $columns[11]->abbreviation());
85ce92b752Smpwt        $this->assertSame('StA', $columns[12]->abbreviation());
86ce92b752Smpwt        $this->assertSame('Gemeinde Brotversorgung', $columns[13]->abbreviation());
87ce92b752Smpwt        $this->assertSame('Wohn-/ Aufenthaltsort', $columns[14]->abbreviation());
88ce92b752Smpwt        $this->assertSame('Dienstgrad', $columns[15]->abbreviation());
89ce92b752Smpwt        $this->assertSame('Kriegsgefangener', $columns[16]->abbreviation());
90ce92b752Smpwt
91ce92b752Smpwt        $this->assertSame('Laufende Nummer', $columns[0]->title());
92ce92b752Smpwt        $this->assertSame('Vorname', $columns[1]->title());
93ce92b752Smpwt        $this->assertSame('Familienname', $columns[2]->title());
94ce92b752Smpwt        $this->assertSame('Stellung im Haushalt', $columns[3]->title());
95ce92b752Smpwt        $this->assertSame('Geschlecht männlich', $columns[4]->title());
96ce92b752Smpwt        $this->assertSame('Geschlecht weiblich', $columns[5]->title());
97ce92b752Smpwt        $this->assertSame('Familienstand', $columns[6]->title());
98ce92b752Smpwt        $this->assertSame('Geburts-Tag', $columns[7]->title());
99ce92b752Smpwt        $this->assertSame('Geburts-Monat', $columns[8]->title());
100ce92b752Smpwt        $this->assertSame('Geburts-Jahr', $columns[9]->title());
101ce92b752Smpwt        $this->assertSame('Name des Geburtsorts', $columns[10]->title());
102ce92b752Smpwt        $this->assertSame('Amt, Kreis oder sonstiger obrigkeitlicher Bezirk', $columns[11]->title());
103ce92b752Smpwt        $this->assertSame('Staatsangehörigkeit', $columns[12]->title());
104ce92b752Smpwt        $this->assertSame('Gemeinde der Brotversorgung', $columns[13]->title());
105ce92b752Smpwt        $this->assertSame('Wohnort bei nur vorübergehend Anwesenden. Aufenthaltsort bei vorübergehend Abwesenden', $columns[14]->title());
106ce92b752Smpwt        $this->assertSame('Für Militärpersonen: Angabe des Dienstgrades', $columns[15]->title());
107ce92b752Smpwt        $this->assertSame('Angabe ob Kriegsgefangener', $columns[16]->title());
108ce92b752Smpwt    }
109ce92b752Smpwt}
110