-
Notifications
You must be signed in to change notification settings - Fork 333
/
Copy pathobjects.test.js
238 lines (206 loc) · 4.71 KB
/
objects.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
const {
createPerson,
getName,
getProperty,
hasProperty,
isOver65,
getAges,
findByName,
findHondas,
averageAge,
createTalkingPerson
} = require('../objects');
describe('createPerson', () => {
it('creates an object with the given name and age properties', () => {
expect(createPerson('Fred', 79)).toEqual({
name: 'Fred',
age: 79
});
expect(createPerson('Dilys', 50)).toEqual({
name: 'Dilys',
age: 50
});
});
});
describe('getName', () => {
it('returns the name property of the object', () => {
expect(
getName({
name: 'Fred',
age: 79
})
).toEqual('Fred');
expect(
getName({
name: 'Bob',
age: 79
})
).toEqual('Bob');
});
});
describe('getProperty', () => {
it('returns the given property', () => {
expect(
getProperty('age', {
name: 'Fred',
age: 79
})
).toEqual(79);
expect(
getProperty('name', {
name: 'Fred',
age: 79
})
).toEqual('Fred');
});
});
describe('hasProperty', () => {
const fred = {
name: 'Fred',
age: 79
};
const tom = {
name: 'Tom',
age: 23
};
it('returns true if the object has the given property', () => {
expect(hasProperty('age', fred)).toBe(true);
expect(hasProperty('name', tom)).toBe(true);
expect(hasProperty('favouriteColour', fred)).toBe(false);
expect(hasProperty('arms', tom)).toBe(false);
});
});
describe('isOver65', () => {
it('returns true if the person is aged over 65', () => {
const jim = {
name: 'Jim',
age: 66
};
const dilys = {
name: 'Dilys',
age: 50
};
const marjorie = {
name: 'Marjorie',
age: 65
};
expect(isOver65(jim)).toBe(true);
expect(isOver65(dilys)).toBe(false);
expect(isOver65(marjorie)).toBe(false);
});
});
describe('getAges', () => {
xit('returns the ages of each person in the array', () => {
const jim = {
name: 'Jim',
age: 66
};
const dilys = {
name: 'Dilys',
age: 50
};
const marjorie = {
name: 'Marjorie',
age: 65
};
expect(getAges([jim, dilys, marjorie])).toEqual([66, 50, 65]);
expect(getAges([dilys, marjorie])).toEqual([50, 65]);
expect(getAges([jim, marjorie])).toEqual([66, 65]);
});
});
describe('findByName', () => {
it('returns the person with the given name', () => {
const jim = {
name: 'Jim',
age: 66
};
const dilys = {
name: 'Dilys',
age: 50
};
const marjorie = {
name: 'Marjorie',
age: 65
};
expect(findByName('Jim', [jim, dilys, marjorie])).toBe(jim);
expect(findByName('Marjorie', [jim, dilys, marjorie])).toBe(marjorie);
});
});
describe('findHondas', () => {
it('returns a list of cars manufactured by Honda', () => {
const car1 = {
manufacturer: 'Honda',
year: 1997,
colour: 'blue'
};
const car2 = {
manufacturer: 'Fiat',
year: 2010,
colour: 'green'
};
const car3 = {
manufacturer: 'Toyota',
year: 2017,
colour: 'blue'
};
const car4 = {
manufacturer: 'Honda',
year: 2001,
colour: 'red'
};
expect(findHondas([car1, car2, car3, car4])).toEqual([car1, car4]);
expect(findHondas([car1, car2, car3])).toEqual([car1]);
expect(findHondas([car2, car3])).toEqual([]);
});
});
describe('averageAge', () => {
it('returns the average age of the people in the list', () => {
const john = {
name: 'John',
age: 60
};
const eric = {
name: 'Eric',
age: 50
};
const gary = {
name: 'Gary',
age: 25
};
const james = {
name: 'James',
age: 10
};
expect(averageAge([john, eric, gary])).toBe(45);
expect(averageAge([john, eric])).toBe(55);
expect(averageAge([james, eric])).toBe(30);
});
});
describe('createTalkingPerson', () => {
it('returns a person who can introduce themselves', () => {
const bill = createTalkingPerson('Bill', 40);
const catherine = createTalkingPerson('Catherine', 21);
expect(bill).toEqual({
name: 'Bill',
age: 40,
introduce: expect.any(Function)
});
expect(catherine).toEqual({
name: 'Catherine',
age: 21,
introduce: expect.any(Function)
});
expect(bill.introduce('Fred')).toEqual(
'Hi Fred, my name is Bill and I am 40!'
);
expect(bill.introduce('Penny')).toEqual(
'Hi Penny, my name is Bill and I am 40!'
);
expect(catherine.introduce('Zoe')).toEqual(
'Hi Zoe, my name is Catherine and I am 21!'
);
expect(catherine.introduce('Bob')).toEqual(
'Hi Bob, my name is Catherine and I am 21!'
);
});
});