xref: /webtrees/tests/app/Census/CensusOfUnitedStates1840Test.php (revision 84e2cf4e2b1803b300330f631d304db1a3c443dd)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2018 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16namespace Fisharebest\Webtrees\Census;
17
18/**
19 * Test harness for the class CensusOfUnitedStates1840
20 */
21class CensusOfUnitedStates1840Test extends \Fisharebest\Webtrees\TestCase
22{
23    /**
24     * Test the census place and date
25     *
26     * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1840
27     */
28    public function testPlaceAndDate()
29    {
30        $census = new CensusOfUnitedStates1840;
31
32        $this->assertSame('United States', $census->censusPlace());
33        $this->assertSame('01 JUN 1840', $census->censusDate());
34    }
35
36    /**
37     * Test the census columns
38     *
39     * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1840
40     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
41     */
42    public function testColumns()
43    {
44        $census  = new CensusOfUnitedStates1840;
45        $columns = $census->columns();
46
47        $this->assertCount(39, $columns);
48        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnFullName', $columns[0]);
49        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[1]);
50        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[2]);
51        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[3]);
52        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[4]);
53        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[5]);
54        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]);
55        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[7]);
56        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[8]);
57        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[9]);
58        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[10]);
59        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[11]);
60        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[12]);
61        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[13]);
62        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[14]);
63        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[15]);
64        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[16]);
65        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[17]);
66        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[18]);
67        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[19]);
68        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[20]);
69        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[21]);
70        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[22]);
71        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[23]);
72        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[24]);
73        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[25]);
74        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[26]);
75        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[27]);
76        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[28]);
77        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[29]);
78        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[30]);
79        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[31]);
80        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[32]);
81        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[33]);
82        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[34]);
83        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[35]);
84        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[36]);
85        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[37]);
86        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[38]);
87
88        $this->assertSame('Name', $columns[0]->abbreviation());
89        $this->assertSame('M0', $columns[1]->abbreviation());
90        $this->assertSame('M5', $columns[2]->abbreviation());
91        $this->assertSame('M10', $columns[3]->abbreviation());
92        $this->assertSame('M15', $columns[4]->abbreviation());
93        $this->assertSame('M20', $columns[5]->abbreviation());
94        $this->assertSame('M30', $columns[6]->abbreviation());
95        $this->assertSame('M40', $columns[7]->abbreviation());
96        $this->assertSame('M50', $columns[8]->abbreviation());
97        $this->assertSame('M60', $columns[9]->abbreviation());
98        $this->assertSame('M70', $columns[10]->abbreviation());
99        $this->assertSame('M80', $columns[11]->abbreviation());
100        $this->assertSame('M90', $columns[12]->abbreviation());
101        $this->assertSame('M100', $columns[13]->abbreviation());
102        $this->assertSame('F0', $columns[14]->abbreviation());
103        $this->assertSame('F5', $columns[15]->abbreviation());
104        $this->assertSame('F10', $columns[16]->abbreviation());
105        $this->assertSame('F15', $columns[17]->abbreviation());
106        $this->assertSame('F20', $columns[18]->abbreviation());
107        $this->assertSame('F30', $columns[19]->abbreviation());
108        $this->assertSame('F40', $columns[20]->abbreviation());
109        $this->assertSame('F50', $columns[21]->abbreviation());
110        $this->assertSame('F60', $columns[22]->abbreviation());
111        $this->assertSame('F70', $columns[23]->abbreviation());
112        $this->assertSame('F80', $columns[24]->abbreviation());
113        $this->assertSame('F90', $columns[25]->abbreviation());
114        $this->assertSame('F100', $columns[26]->abbreviation());
115        $this->assertSame('M0', $columns[27]->abbreviation());
116        $this->assertSame('M10', $columns[28]->abbreviation());
117        $this->assertSame('M24', $columns[29]->abbreviation());
118        $this->assertSame('M36', $columns[30]->abbreviation());
119        $this->assertSame('M55', $columns[31]->abbreviation());
120        $this->assertSame('M100', $columns[32]->abbreviation());
121        $this->assertSame('F0', $columns[33]->abbreviation());
122        $this->assertSame('F10', $columns[34]->abbreviation());
123        $this->assertSame('F24', $columns[35]->abbreviation());
124        $this->assertSame('F36', $columns[36]->abbreviation());
125        $this->assertSame('F55', $columns[37]->abbreviation());
126        $this->assertSame('F100', $columns[38]->abbreviation());
127
128        $this->assertSame('Name of head of family', $columns[0]->title());
129        $this->assertSame('Free white males 0-5 years', $columns[1]->title());
130        $this->assertSame('Free white males 5-10 years', $columns[2]->title());
131        $this->assertSame('Free white males 10-15 years', $columns[3]->title());
132        $this->assertSame('Free white males 15-20 years', $columns[4]->title());
133        $this->assertSame('Free white males 20-30 years', $columns[5]->title());
134        $this->assertSame('Free white males 30-40 years', $columns[6]->title());
135        $this->assertSame('Free white males 40-50 years', $columns[7]->title());
136        $this->assertSame('Free white males 50-60 years', $columns[8]->title());
137        $this->assertSame('Free white males 60-70 years', $columns[9]->title());
138        $this->assertSame('Free white males 70-80 years', $columns[10]->title());
139        $this->assertSame('Free white males 80-90 years', $columns[11]->title());
140        $this->assertSame('Free white males 90-100 years', $columns[12]->title());
141        $this->assertSame('Free white males 100+ years', $columns[13]->title());
142        $this->assertSame('Free white females 0-5 years', $columns[14]->title());
143        $this->assertSame('Free white females 5-10 years', $columns[15]->title());
144        $this->assertSame('Free white females 10-15 years', $columns[16]->title());
145        $this->assertSame('Free white females 15-20 years', $columns[17]->title());
146        $this->assertSame('Free white females 20-30 years', $columns[18]->title());
147        $this->assertSame('Free white females 30-40 years', $columns[19]->title());
148        $this->assertSame('Free white females 40-50 years', $columns[20]->title());
149        $this->assertSame('Free white females 50-60 years', $columns[21]->title());
150        $this->assertSame('Free white females 60-70 years', $columns[22]->title());
151        $this->assertSame('Free white females 70-80 years', $columns[23]->title());
152        $this->assertSame('Free white females 80-90 years', $columns[24]->title());
153        $this->assertSame('Free white females 90-100 years', $columns[25]->title());
154        $this->assertSame('Free white females 100+ years', $columns[26]->title());
155        $this->assertSame('Free colored males 0-10 years', $columns[27]->title());
156        $this->assertSame('Free colored males 10-24 years', $columns[28]->title());
157        $this->assertSame('Free colored males 24-36 years', $columns[29]->title());
158        $this->assertSame('Free colored males 36-55 years', $columns[30]->title());
159        $this->assertSame('Free colored males 55-100 years', $columns[31]->title());
160        $this->assertSame('Free colored males 100+ years', $columns[32]->title());
161        $this->assertSame('Free colored females 0-10 years', $columns[33]->title());
162        $this->assertSame('Free colored females 10-24 years', $columns[34]->title());
163        $this->assertSame('Free colored females 24-36 years', $columns[35]->title());
164        $this->assertSame('Free colored females 36-55 years', $columns[36]->title());
165        $this->assertSame('Free colored females 55-100 years', $columns[37]->title());
166        $this->assertSame('Free colored females 100+ years', $columns[38]->title());
167    }
168}
169