xref: /webtrees/tests/app/Census/CensusOfCzechRepublic1910Test.php (revision 5a8afed46297e8105e3e5a33ce37e6a8e88bc79d)
1fbf0a249SGreg Roach<?php
23976b470SGreg Roach
3fbf0a249SGreg Roach/**
4fbf0a249SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6fbf0a249SGreg Roach * This program is free software: you can redistribute it and/or modify
7fbf0a249SGreg Roach * it under the terms of the GNU General Public License as published by
8fbf0a249SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9fbf0a249SGreg Roach * (at your option) any later version.
10fbf0a249SGreg Roach * This program is distributed in the hope that it will be useful,
11fbf0a249SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12fbf0a249SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13fbf0a249SGreg Roach * GNU General Public License for more details.
14fbf0a249SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16fbf0a249SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20fbf0a249SGreg Roachnamespace Fisharebest\Webtrees\Census;
21fbf0a249SGreg Roach
223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
243cfcc809SGreg Roach
25*202c018bSGreg Roach#[CoversClass(CensusOfCzechRepublic1910::class)]
26*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)]
273cfcc809SGreg Roachclass CensusOfCzechRepublic1910Test extends TestCase
28c1010edaSGreg Roach{
29fbf0a249SGreg Roach    /**
30fbf0a249SGreg Roach     * Test the census place and date
31fbf0a249SGreg Roach     */
329b802b22SGreg Roach    public function testPlaceAndDate(): void
33c1010edaSGreg Roach    {
3474d6dc0eSGreg Roach        $census = new CensusOfCzechRepublic1910();
35fbf0a249SGreg Roach
365e933c21SGreg Roach        self::assertSame('Česko', $census->censusPlace());
375e933c21SGreg Roach        self::assertSame('31 DEC 1910', $census->censusDate());
38fbf0a249SGreg Roach    }
39fbf0a249SGreg Roach
40fbf0a249SGreg Roach    /**
41fbf0a249SGreg Roach     * Test the census columns
42fbf0a249SGreg Roach     */
439b802b22SGreg Roach    public function testColumns(): void
44c1010edaSGreg Roach    {
4574d6dc0eSGreg Roach        $census  = new CensusOfCzechRepublic1910();
46fbf0a249SGreg Roach        $columns = $census->columns();
47fbf0a249SGreg Roach
485e933c21SGreg Roach        self::assertCount(14, $columns);
495e933c21SGreg Roach        self::assertInstanceOf(CensusColumnFullName::class, $columns[0]);
505e933c21SGreg Roach        self::assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]);
515e933c21SGreg Roach        self::assertInstanceOf(CensusColumnSexMZ::class, $columns[2]);
525e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthDaySlashMonthYear::class, $columns[3]);
535e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthPlace::class, $columns[4]);
545e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[5]);
555e933c21SGreg Roach        self::assertInstanceOf(CensusColumnReligion::class, $columns[6]);
565e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[7]);
575e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[8]);
585e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[9]);
595e933c21SGreg Roach        self::assertInstanceOf(CensusColumnOccupation::class, $columns[10]);
605e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[11]);
615e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[12]);
625e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[13]);
63fbf0a249SGreg Roach
645e933c21SGreg Roach        self::assertSame('Jméno', $columns[0]->abbreviation());
655e933c21SGreg Roach        self::assertSame('Vztah', $columns[1]->abbreviation());
665e933c21SGreg Roach        self::assertSame('Pohlaví', $columns[2]->abbreviation());
675e933c21SGreg Roach        self::assertSame('Narození', $columns[3]->abbreviation());
685e933c21SGreg Roach        self::assertSame('Rodiště', $columns[4]->abbreviation());
695e933c21SGreg Roach        self::assertSame('Přísluší', $columns[5]->abbreviation());
705e933c21SGreg Roach        self::assertSame('Vyznání', $columns[6]->abbreviation());
715e933c21SGreg Roach        self::assertSame('Stav', $columns[7]->abbreviation());
725e933c21SGreg Roach        self::assertSame('Jazyk', $columns[8]->abbreviation());
735e933c21SGreg Roach        self::assertSame('Gramotnost', $columns[9]->abbreviation());
745e933c21SGreg Roach        self::assertSame('Povolání', $columns[10]->abbreviation());
755e933c21SGreg Roach        self::assertSame('Postavení', $columns[11]->abbreviation());
765e933c21SGreg Roach        self::assertSame('Druh pobytu', $columns[12]->abbreviation());
775e933c21SGreg Roach        self::assertSame('Od roku', $columns[13]->abbreviation());
78fbf0a249SGreg Roach
795e933c21SGreg Roach        self::assertSame('', $columns[0]->title());
805e933c21SGreg Roach        self::assertSame('', $columns[1]->title());
815e933c21SGreg Roach        self::assertSame('', $columns[2]->title());
825e933c21SGreg Roach        self::assertSame('Datum narození', $columns[3]->title());
835e933c21SGreg Roach        self::assertSame('Místo narození', $columns[4]->title());
845e933c21SGreg Roach        self::assertSame('Domovské právo', $columns[5]->title());
855e933c21SGreg Roach        self::assertSame('Vyznání náoženské', $columns[6]->title());
865e933c21SGreg Roach        self::assertSame('Rodinný stav', $columns[7]->title());
875e933c21SGreg Roach        self::assertSame('Řeč obcovací', $columns[8]->title());
885e933c21SGreg Roach        self::assertSame('Znalost čtení a psaní', $columns[9]->title());
895e933c21SGreg Roach        self::assertSame('Obor povolání', $columns[10]->title());
905e933c21SGreg Roach        self::assertSame('Postavení v zaměstnání', $columns[11]->title());
915e933c21SGreg Roach        self::assertSame('Pobyt dočasný nebo trvalý', $columns[12]->title());
925e933c21SGreg Roach        self::assertSame('Počátek pobytu', $columns[13]->title());
93fbf0a249SGreg Roach    }
94fbf0a249SGreg Roach}
95