xref: /webtrees/tests/app/Census/CensusOfUnitedStates1830Test.php (revision fcfa147e10aaa6c7ff580c29bd6e5b88666befc1)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2019 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 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Census;
21
22use Fisharebest\Webtrees\TestCase;
23
24/**
25 * Test harness for the class CensusOfUnitedStates1830
26 */
27class CensusOfUnitedStates1830Test extends TestCase
28{
29    /**
30     * Test the census place and date
31     *
32     * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1830
33     *
34     * @return void
35     */
36    public function testPlaceAndDate(): void
37    {
38        $census = new CensusOfUnitedStates1830();
39
40        $this->assertSame('United States', $census->censusPlace());
41        $this->assertSame('01 JUN 1830', $census->censusDate());
42    }
43
44    /**
45     * Test the census columns
46     *
47     * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1830
48     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
49     *
50     * @return void
51     */
52    public function testColumns(): void
53    {
54        $census  = new CensusOfUnitedStates1830();
55        $columns = $census->columns();
56
57        $this->assertCount(51, $columns);
58        $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]);
59        $this->assertInstanceOf(CensusColumnNull::class, $columns[1]);
60        $this->assertInstanceOf(CensusColumnNull::class, $columns[2]);
61        $this->assertInstanceOf(CensusColumnNull::class, $columns[3]);
62        $this->assertInstanceOf(CensusColumnNull::class, $columns[4]);
63        $this->assertInstanceOf(CensusColumnNull::class, $columns[5]);
64        $this->assertInstanceOf(CensusColumnNull::class, $columns[6]);
65        $this->assertInstanceOf(CensusColumnNull::class, $columns[7]);
66        $this->assertInstanceOf(CensusColumnNull::class, $columns[8]);
67        $this->assertInstanceOf(CensusColumnNull::class, $columns[9]);
68        $this->assertInstanceOf(CensusColumnNull::class, $columns[10]);
69        $this->assertInstanceOf(CensusColumnNull::class, $columns[11]);
70        $this->assertInstanceOf(CensusColumnNull::class, $columns[12]);
71        $this->assertInstanceOf(CensusColumnNull::class, $columns[13]);
72        $this->assertInstanceOf(CensusColumnNull::class, $columns[14]);
73        $this->assertInstanceOf(CensusColumnNull::class, $columns[15]);
74        $this->assertInstanceOf(CensusColumnNull::class, $columns[16]);
75        $this->assertInstanceOf(CensusColumnNull::class, $columns[17]);
76        $this->assertInstanceOf(CensusColumnNull::class, $columns[18]);
77        $this->assertInstanceOf(CensusColumnNull::class, $columns[19]);
78        $this->assertInstanceOf(CensusColumnNull::class, $columns[20]);
79        $this->assertInstanceOf(CensusColumnNull::class, $columns[21]);
80        $this->assertInstanceOf(CensusColumnNull::class, $columns[22]);
81        $this->assertInstanceOf(CensusColumnNull::class, $columns[23]);
82        $this->assertInstanceOf(CensusColumnNull::class, $columns[24]);
83        $this->assertInstanceOf(CensusColumnNull::class, $columns[25]);
84        $this->assertInstanceOf(CensusColumnNull::class, $columns[26]);
85        $this->assertInstanceOf(CensusColumnNull::class, $columns[27]);
86        $this->assertInstanceOf(CensusColumnNull::class, $columns[28]);
87        $this->assertInstanceOf(CensusColumnNull::class, $columns[29]);
88        $this->assertInstanceOf(CensusColumnNull::class, $columns[30]);
89        $this->assertInstanceOf(CensusColumnNull::class, $columns[31]);
90        $this->assertInstanceOf(CensusColumnNull::class, $columns[32]);
91        $this->assertInstanceOf(CensusColumnNull::class, $columns[33]);
92        $this->assertInstanceOf(CensusColumnNull::class, $columns[34]);
93        $this->assertInstanceOf(CensusColumnNull::class, $columns[35]);
94        $this->assertInstanceOf(CensusColumnNull::class, $columns[36]);
95        $this->assertInstanceOf(CensusColumnNull::class, $columns[37]);
96        $this->assertInstanceOf(CensusColumnNull::class, $columns[38]);
97        $this->assertInstanceOf(CensusColumnNull::class, $columns[39]);
98        $this->assertInstanceOf(CensusColumnNull::class, $columns[40]);
99        $this->assertInstanceOf(CensusColumnNull::class, $columns[41]);
100        $this->assertInstanceOf(CensusColumnNull::class, $columns[42]);
101        $this->assertInstanceOf(CensusColumnNull::class, $columns[43]);
102        $this->assertInstanceOf(CensusColumnNull::class, $columns[44]);
103        $this->assertInstanceOf(CensusColumnNull::class, $columns[45]);
104        $this->assertInstanceOf(CensusColumnNull::class, $columns[46]);
105        $this->assertInstanceOf(CensusColumnNull::class, $columns[47]);
106        $this->assertInstanceOf(CensusColumnNull::class, $columns[48]);
107        $this->assertInstanceOf(CensusColumnNull::class, $columns[49]);
108        $this->assertInstanceOf(CensusColumnNull::class, $columns[50]);
109
110        $this->assertSame('Name', $columns[0]->abbreviation());
111        $this->assertSame('M0', $columns[1]->abbreviation());
112        $this->assertSame('M5', $columns[2]->abbreviation());
113        $this->assertSame('M10', $columns[3]->abbreviation());
114        $this->assertSame('M15', $columns[4]->abbreviation());
115        $this->assertSame('M20', $columns[5]->abbreviation());
116        $this->assertSame('M30', $columns[6]->abbreviation());
117        $this->assertSame('M40', $columns[7]->abbreviation());
118        $this->assertSame('M50', $columns[8]->abbreviation());
119        $this->assertSame('M60', $columns[9]->abbreviation());
120        $this->assertSame('M70', $columns[10]->abbreviation());
121        $this->assertSame('M80', $columns[11]->abbreviation());
122        $this->assertSame('M90', $columns[12]->abbreviation());
123        $this->assertSame('M100', $columns[13]->abbreviation());
124        $this->assertSame('F0', $columns[14]->abbreviation());
125        $this->assertSame('F5', $columns[15]->abbreviation());
126        $this->assertSame('F10', $columns[16]->abbreviation());
127        $this->assertSame('F15', $columns[17]->abbreviation());
128        $this->assertSame('F20', $columns[18]->abbreviation());
129        $this->assertSame('F30', $columns[19]->abbreviation());
130        $this->assertSame('F40', $columns[20]->abbreviation());
131        $this->assertSame('F50', $columns[21]->abbreviation());
132        $this->assertSame('F60', $columns[22]->abbreviation());
133        $this->assertSame('F70', $columns[23]->abbreviation());
134        $this->assertSame('F80', $columns[24]->abbreviation());
135        $this->assertSame('F90', $columns[25]->abbreviation());
136        $this->assertSame('F100', $columns[26]->abbreviation());
137        $this->assertSame('M0', $columns[27]->abbreviation());
138        $this->assertSame('M10', $columns[28]->abbreviation());
139        $this->assertSame('M24', $columns[29]->abbreviation());
140        $this->assertSame('M36', $columns[30]->abbreviation());
141        $this->assertSame('M55', $columns[31]->abbreviation());
142        $this->assertSame('M100', $columns[32]->abbreviation());
143        $this->assertSame('F0', $columns[33]->abbreviation());
144        $this->assertSame('F10', $columns[34]->abbreviation());
145        $this->assertSame('F24', $columns[35]->abbreviation());
146        $this->assertSame('F36', $columns[36]->abbreviation());
147        $this->assertSame('F55', $columns[37]->abbreviation());
148        $this->assertSame('F100', $columns[38]->abbreviation());
149        $this->assertSame('M0', $columns[39]->abbreviation());
150        $this->assertSame('M10', $columns[40]->abbreviation());
151        $this->assertSame('M24', $columns[41]->abbreviation());
152        $this->assertSame('M36', $columns[42]->abbreviation());
153        $this->assertSame('M55', $columns[43]->abbreviation());
154        $this->assertSame('M100', $columns[44]->abbreviation());
155        $this->assertSame('F0', $columns[45]->abbreviation());
156        $this->assertSame('F10', $columns[46]->abbreviation());
157        $this->assertSame('F24', $columns[47]->abbreviation());
158        $this->assertSame('F36', $columns[48]->abbreviation());
159        $this->assertSame('F55', $columns[49]->abbreviation());
160        $this->assertSame('F100', $columns[50]->abbreviation());
161
162        $this->assertSame('Name of head of family', $columns[0]->title());
163        $this->assertSame('Free white males 0-5 years', $columns[1]->title());
164        $this->assertSame('Free white males 5-10 years', $columns[2]->title());
165        $this->assertSame('Free white males 10-15 years', $columns[3]->title());
166        $this->assertSame('Free white males 15-20 years', $columns[4]->title());
167        $this->assertSame('Free white males 20-30 years', $columns[5]->title());
168        $this->assertSame('Free white males 30-40 years', $columns[6]->title());
169        $this->assertSame('Free white males 40-50 years', $columns[7]->title());
170        $this->assertSame('Free white males 50-60 years', $columns[8]->title());
171        $this->assertSame('Free white males 60-70 years', $columns[9]->title());
172        $this->assertSame('Free white males 70-80 years', $columns[10]->title());
173        $this->assertSame('Free white males 80-90 years', $columns[11]->title());
174        $this->assertSame('Free white males 90-100 years', $columns[12]->title());
175        $this->assertSame('Free white males 100+ years', $columns[13]->title());
176        $this->assertSame('Free white females 0-5 years', $columns[14]->title());
177        $this->assertSame('Free white females 5-10 years', $columns[15]->title());
178        $this->assertSame('Free white females 10-15 years', $columns[16]->title());
179        $this->assertSame('Free white females 15-20 years', $columns[17]->title());
180        $this->assertSame('Free white females 20-30 years', $columns[18]->title());
181        $this->assertSame('Free white females 30-40 years', $columns[19]->title());
182        $this->assertSame('Free white females 40-50 years', $columns[20]->title());
183        $this->assertSame('Free white females 50-60 years', $columns[21]->title());
184        $this->assertSame('Free white females 60-70 years', $columns[22]->title());
185        $this->assertSame('Free white females 70-80 years', $columns[23]->title());
186        $this->assertSame('Free white females 80-90 years', $columns[24]->title());
187        $this->assertSame('Free white females 90-100 years', $columns[25]->title());
188        $this->assertSame('Free white females 100+ years', $columns[26]->title());
189        $this->assertSame('Slave males 0-10 years', $columns[27]->title());
190        $this->assertSame('Slave males 10-24 years', $columns[28]->title());
191        $this->assertSame('Slave males 24-36 years', $columns[29]->title());
192        $this->assertSame('Slave males 36-55 years', $columns[30]->title());
193        $this->assertSame('Slave males 55-100 years', $columns[31]->title());
194        $this->assertSame('Slave males 100+ years', $columns[32]->title());
195        $this->assertSame('Slave females 0-10 years', $columns[33]->title());
196        $this->assertSame('Slave females 10-24 years', $columns[34]->title());
197        $this->assertSame('Slave females 24-36 years', $columns[35]->title());
198        $this->assertSame('Slave females 36-55 years', $columns[36]->title());
199        $this->assertSame('Slave females 55-100 years', $columns[37]->title());
200        $this->assertSame('Slave females 100+ years', $columns[38]->title());
201        $this->assertSame('Free colored males 0-10 years', $columns[39]->title());
202        $this->assertSame('Free colored males 10-24 years', $columns[40]->title());
203        $this->assertSame('Free colored males 24-36 years', $columns[41]->title());
204        $this->assertSame('Free colored males 36-55 years', $columns[42]->title());
205        $this->assertSame('Free colored males 55-100 years', $columns[43]->title());
206        $this->assertSame('Free colored males 100+ years', $columns[44]->title());
207        $this->assertSame('Free colored females 0-10 years', $columns[45]->title());
208        $this->assertSame('Free colored females 10-24 years', $columns[46]->title());
209        $this->assertSame('Free colored females 24-36 years', $columns[47]->title());
210        $this->assertSame('Free colored females 36-55 years', $columns[48]->title());
211        $this->assertSame('Free colored females 55-100 years', $columns[49]->title());
212        $this->assertSame('Free colored females 100+ years', $columns[50]->title());
213    }
214}
215