-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.spec.js
126 lines (120 loc) · 3.7 KB
/
index.spec.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
const {
isValidStateAbbreviation,
isValidStateName,
isValidStateInput,
retrieveStateInformation,
isValidStateCapital,
retrieveStateCapitalByName,
retrieveStateNameByCapital
} = require('./index');
describe('isValidStateAbbreviation, isValidStateInput, isValidStateName, isValidStateCapital', () => {
const stateData = [
{
input: {
abbr: 'TX',
name: 'Texas',
capital: 'Austin'
},
expectedResult: true
},
{
input: {
abbr: 'InvalidAbbr',
name: 'InvalidState',
capital: 'InvalidCapital'
},
expectedResult: false
},
{
input: {
abbr: 123,
name: 123,
capital: 123
},
expectedResult: false
},
{
input: {
abbr: undefined,
name: undefined,
capital: undefined
},
expectedResult: false
},
{
input: {
abbr: ' TX ',
name: ' Texas ',
capital: ' Austin '
},
expectedResult: true
},
{
input: {
abbr: 'tx',
name: 'texas',
capital: 'austin'
},
expectedResult: true
}
];
test.each(stateData)('isValidStateInput, isValidStateAbbreviation, isValidStateCapital and isValidStateName successfully determine if the state abbreviation is valid',(data) =>{
expect(isValidStateAbbreviation(data.input.abbr)).toEqual(data.expectedResult);
expect(isValidStateName(data.input.name)).toEqual(data.expectedResult);
expect(isValidStateInput(data.input.abbr)).toEqual(data.expectedResult);
expect(isValidStateInput(data.input.name)).toEqual(data.expectedResult);
expect(isValidStateCapital(data.input.capital)).toEqual(data.expectedResult);
});
});
describe('retrieveStateInformation', () => {
const stateInformationData = [
{
input: "Ohio",
expectedResult: { info: {
abbreviation: "OH",
name: "Ohio",
capital: "Columbus"
},
state: null,
capital: "Columbus"
}
},
{
input: "ME",
expectedResult: {
info: {
abbreviation: "ME",
name: "Maine",
capital: "Augusta"
},
state: null,
capital: null
}
},
{
input: "Augusta",
expectedResult: {
info: {
abbreviation: "ME",
name: "Maine",
capital: "Augusta"
},
state: "Maine",
capital: null
}
},
{
input: "turtle",
expectedResult: {info: null, state: null, capital: null}
},
{
input: undefined,
expectedResult: {info: null, state: null, capital: null}
}
];
test.each(stateInformationData)('isValidStateInput, isValidStateAbbreviation and isValidStateName successfully determine if the state abbreviation is valid',(data) =>{
expect(retrieveStateInformation(data.input)).toEqual(data.expectedResult.info);
expect(retrieveStateCapitalByName(data.input)).toEqual(data.expectedResult.capital);
expect(retrieveStateNameByCapital(data.input)).toEqual(data.expectedResult.state);
});
});