forked from ChicoState/UnitTestPractice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PasswordTest.cpp
223 lines (195 loc) · 4.93 KB
/
PasswordTest.cpp
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
/**
* Unit Tests for Password class
**/
#include <gtest/gtest.h>
#include "Password.h"
class PracticeTest : public ::testing::Test
{
protected:
PracticeTest(){} //constructor runs before each test
virtual ~PracticeTest(){} //destructor cleans up after tests
virtual void SetUp(){} //sets up before each test (after constructor)
virtual void TearDown(){} //clean up after each test, (before destructor)
};
TEST(PasswordTest, single_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("Z");
ASSERT_EQ(1, actual);
}
TEST(PasswordTest, no_repeat)
{
Password my_password;
int actual = my_password.count_leading_characters("ZzlLNnAa");
ASSERT_EQ(1,actual);
}
TEST(PasswordTest, repeat_three_times)
{
Password my_password;
int actual = my_password.count_leading_characters("ZZZ");
ASSERT_EQ(3, actual);
}
TEST(PasswordTest, no_letter_password)
{
Password my_password;
int actual = my_password.count_leading_characters("");
ASSERT_EQ(0,actual);
}
TEST(PasswordTest, long_repeat_space)
{
Password my_password;
int actual = my_password.count_leading_characters(" ");
ASSERT_EQ(25,actual);
}
TEST(PasswordTest, odd_input)
{
Password my_password;
int actual = my_password.count_leading_characters("\n\n\r \"");
ASSERT_EQ(2,actual);
}
TEST(PasswordTest, upper_lower_no_input)
{
Password my_password;
bool actual = my_password.has_mixed_case("");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, upper_lower_good_input)
{
Password my_password;
bool actual = my_password.has_mixed_case("aaaBBB");
ASSERT_TRUE(actual);
}
TEST(PasswordTest, only_lower)
{
Password my_password;
bool actual = my_password.has_mixed_case("aaaaaa");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, only_upper)
{
Password my_password;
bool actual = my_password.has_mixed_case("BBBBACAWFE");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, up_low_numbers)
{
Password my_password;
bool actual = my_password.has_mixed_case("10393r910391039");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, up_low_true_odd_chars)
{
Password my_password;
bool actual = my_password.has_mixed_case("Cc921309u4\n\\$#@#!# p[][{]");
ASSERT_TRUE(actual);
}
TEST(PasswordTest, one_lower)
{
Password my_password;
bool actual = my_password.has_mixed_case("l");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, one_upper)
{
Password my_password;
bool actual = my_password.has_mixed_case("M");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, last_char_upper)
{
Password my_password;
bool actual = my_password.has_mixed_case("aaaaaaaaaaaB");
ASSERT_TRUE(actual);
}
TEST(PasswordTest, first_char_upper)
{
Password my_password;
bool actual = my_password.has_mixed_case("Baaaaaaaa");
ASSERT_TRUE(actual);
}
TEST(PasswordTest, constructor_good)
{
Password my_password;
bool actual = my_password.authenticate("ChicoCA-95929");
ASSERT_TRUE(actual);
}
TEST(PasswordTest, constructor_bad)
{
Password my_password;
bool actual = my_password.authenticate("");
ASSERT_FALSE(actual);
}
TEST(PasswordTest, set_auth_good)
{
Password my_password;
std::string input = "Hello, World!";
my_password.set(input);
bool actual = my_password.authenticate(input);
ASSERT_TRUE(actual);
}
TEST(PasswordTest, bad_set_short)
{
Password my_password;
std::string input = "No";
my_password.set(input);
int actual = my_password.authenticate(input);
ASSERT_FALSE(actual);
}
TEST(PasswordTest, bad_set_long)
{
Password my_password;
std::string input = "Noooooooooooooooooooooooooooooooooooooooooooooooooooo";
my_password.set(input);
int actual = my_password.authenticate(input);
ASSERT_FALSE(actual);
}
TEST(PasswordTest, bad_set_lower)
{
Password my_password;
std::string input = "noooooooooooo";
my_password.set(input);
int actual = my_password.authenticate(input);
ASSERT_FALSE(actual);
}
TEST(PasswordTest, bad_set_dupe)
{
Password my_password;
std::string input = "oooooooAoo";
my_password.set(input);
int actual = my_password.authenticate(input);
ASSERT_FALSE(actual);
}
TEST(PasswordTest, bad_set_old_password)
{
Password my_password;
std::string input = "Old45678901";
my_password.set(input);
my_password.set("New45678901");
int actual = my_password.authenticate(input);
ASSERT_FALSE(actual);
}
TEST(PasswordTest, good_set_mutiple_passwords)
{
Password my_password;
std::string input1 = "Old1234568901";
std::string input2 = "New1234567890";
std::string input3 = "final123456";
my_password.set(input1);
my_password.set(input2);
my_password.set(input3);
int actual = my_password.authenticate(input2);
ASSERT_TRUE(actual);
}
TEST(PasswordTest, duplicate_password)
{
Password my_password;
std::string input1 = "Old1234568901";
std::string input2 = "New1234567890";
std::string input3 = "Good123456";
my_password.set(input1);
my_password.set(input2);
my_password.set(input3);
my_password.set(input2);
int actual = my_password.authenticate(input2);
ASSERT_FALSE(actual);
}