xref: /webtrees/tests/app/Census/CensusOfDenmark1940Test.php (revision 5a8afed46297e8105e3e5a33ce37e6a8e88bc79d)
1101af0b4SGreg Roach<?php
23976b470SGreg Roach
3101af0b4SGreg Roach/**
4101af0b4SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6101af0b4SGreg Roach * This program is free software: you can redistribute it and/or modify
7101af0b4SGreg Roach * it under the terms of the GNU General Public License as published by
8101af0b4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9101af0b4SGreg Roach * (at your option) any later version.
10101af0b4SGreg Roach * This program is distributed in the hope that it will be useful,
11101af0b4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12101af0b4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13101af0b4SGreg Roach * GNU General Public License for more details.
14101af0b4SGreg 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/>.
16101af0b4SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20101af0b4SGreg Roachnamespace Fisharebest\Webtrees\Census;
21101af0b4SGreg Roach
223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
243cfcc809SGreg Roach
25*202c018bSGreg Roach#[CoversClass(CensusOfDenmark1940::class)]
26*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)]
273cfcc809SGreg Roachclass CensusOfDenmark1940Test extends TestCase
28c1010edaSGreg Roach{
29101af0b4SGreg Roach    /**
30101af0b4SGreg Roach     * Test the census place and date
31101af0b4SGreg Roach     */
329b802b22SGreg Roach    public function testPlaceAndDate(): void
33c1010edaSGreg Roach    {
3474d6dc0eSGreg Roach        $census = new CensusOfDenmark1940();
35101af0b4SGreg Roach
365e933c21SGreg Roach        self::assertSame('Danmark', $census->censusPlace());
375e933c21SGreg Roach        self::assertSame('05 NOV 1940', $census->censusDate());
38101af0b4SGreg Roach    }
39101af0b4SGreg Roach
40101af0b4SGreg Roach    /**
41101af0b4SGreg Roach     * Test the census columns
42101af0b4SGreg Roach     */
439b802b22SGreg Roach    public function testColumns(): void
44c1010edaSGreg Roach    {
4574d6dc0eSGreg Roach        $census  = new CensusOfDenmark1940();
46101af0b4SGreg Roach        $columns = $census->columns();
47101af0b4SGreg Roach
485e933c21SGreg Roach        self::assertCount(15, $columns);
495e933c21SGreg Roach        self::assertInstanceOf(CensusColumnSurnameGivenNames::class, $columns[0]);
505e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[1]);
515e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[2]);
525e933c21SGreg Roach        self::assertInstanceOf(CensusColumnSexMK::class, $columns[3]);
535e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthDaySlashMonth::class, $columns[4]);
545e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthYear::class, $columns[5]);
555e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthPlace::class, $columns[6]);
565e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[7]);
575e933c21SGreg Roach        self::assertInstanceOf(CensusColumnConditionDanish::class, $columns[8]);
585e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[9]);
595e933c21SGreg Roach        self::assertInstanceOf(CensusColumnRelationToHead::class, $columns[10]);
605e933c21SGreg Roach        self::assertInstanceOf(CensusColumnOccupation::class, $columns[11]);
615e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[12]);
625e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[13]);
635e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[14]);
64101af0b4SGreg Roach
655e933c21SGreg Roach        self::assertSame('Navn', $columns[0]->abbreviation());
665e933c21SGreg Roach        self::assertSame('Nærværende', $columns[1]->abbreviation());
675e933c21SGreg Roach        self::assertSame('Fraværende', $columns[2]->abbreviation());
685e933c21SGreg Roach        self::assertSame('Køn', $columns[3]->abbreviation());
695e933c21SGreg Roach        self::assertSame('Fødselsdag', $columns[4]->abbreviation());
705e933c21SGreg Roach        self::assertSame('Fødselsaar', $columns[5]->abbreviation());
715e933c21SGreg Roach        self::assertSame('Fødested', $columns[6]->abbreviation());
72de119d8eSGreg Roach        self::assertSame('Statsborgerforhold', $columns[7]->abbreviation());
735e933c21SGreg Roach        self::assertSame('Civilstand', $columns[8]->abbreviation());
745e933c21SGreg Roach        self::assertSame('Indgaaelse', $columns[9]->abbreviation());
755e933c21SGreg Roach        self::assertSame('Stilling i familien', $columns[10]->abbreviation());
765e933c21SGreg Roach        self::assertSame('Erhverv', $columns[11]->abbreviation());
775e933c21SGreg Roach        self::assertSame('Virksomhedens', $columns[12]->abbreviation());
785e933c21SGreg Roach        self::assertSame('Hustruen', $columns[13]->abbreviation());
795e933c21SGreg Roach        self::assertSame('Døtre', $columns[14]->abbreviation());
80101af0b4SGreg Roach
815e933c21SGreg Roach        self::assertSame('', $columns[0]->title());
825e933c21SGreg Roach        self::assertSame('Hvis den i Rubrik 1 opførte Person er midleritidg nærværende d.v.s. har fast Bopæl ????? (er optaget under en anden Address i Folkeregistret), anføres her den faste Bopæls Adresse (Kommunens Navn og den fuldstændige Adresse i denne; for Udlændinge dog kun Landets Navn).', $columns[1]->title());
835e933c21SGreg Roach        self::assertSame('Hvis den i Rubrik 1 opførte Person er midleritidg fraværende d.v.s. har fast Bopæl paa Tællingsstedet (er optaget underdenne Address i Folkeregistret), men den 5. Novemer ikke er til Stede paa Tællingsstedet, anføres her „fraværende“ og Adressen paa det midlertidige Opholdssted (ved Ophold i Udlandet anføres jun Landets Navn).', $columns[2]->title());
845e933c21SGreg Roach        self::assertSame('Køn Mand (M) Kvinde (K)', $columns[3]->title());
855e933c21SGreg Roach        self::assertSame('', $columns[4]->title());
865e933c21SGreg Roach        self::assertSame('', $columns[5]->title());
875e933c21SGreg Roach        self::assertSame('', $columns[6]->title());
885e933c21SGreg Roach        self::assertSame('', $columns[7]->title());
895e933c21SGreg Roach        self::assertSame('Ægteskabelig Stillinge. Ugift (U), Gift (G), Enkemand eller Enke (E), Separeret (S), Fraskilt (F).', $columns[8]->title());
905e933c21SGreg Roach        self::assertSame('Date for det nuværende Ægteskabs Indgaaelse. NB." RUbrikken udfyldes ikke al Enkemaend, Enker, Separerede eller Fraskilte.', $columns[9]->title());
915e933c21SGreg Roach        self::assertSame('', $columns[10]->title());
925e933c21SGreg Roach        self::assertSame('', $columns[11]->title());
935e933c21SGreg Roach        self::assertSame('Virksomhedens (Branchens) Art', $columns[12]->title());
945e933c21SGreg Roach        self::assertSame('Besvares kun af Hustruen og hjemmeboende Børn over 14 Aar', $columns[13]->title());
955e933c21SGreg Roach        self::assertSame('Besvares kun af hjemmeboende Døtre over 14 Aar', $columns[14]->title());
96101af0b4SGreg Roach    }
97101af0b4SGreg Roach}
98