-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbchean-TestCollatz.c++
203 lines (154 loc) · 4.36 KB
/
bchean-TestCollatz.c++
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
// --------------------------------
// projects/collatz/TestCollatz.c++
// Copyright (C) 2013
// Glenn P. Downing
// --------------------------------
/*
To test the program:
% ls -al /usr/include/gtest/
...
gtest.h
...
% locate libgtest.a
/usr/lib/libgtest.a
% locate libpthread.a
/usr/lib/x86_64-linux-gnu/libpthread.a
/usr/lib32/libpthread.a
% locate libgtest_main.a
/usr/lib/libgtest_main.a
% g++ -pedantic -std=c++0x -Wall Collatz.c++ TestCollatz.c++ -o TestCollatz -lgtest -lpthread -lgtest_main
% valgrind TestCollatz > TestCollatz.out
*/
// --------
// includes
// --------
#include <iostream> // cout, endl
#include <sstream> // istringtstream, ostringstream
#include <string> // ==
#include "gtest/gtest.h"
#include "Collatz.h"
// -----------
// TestCollatz
// -----------
// ----
// read
// ----
TEST(CollatzReadTest, BasicInput) {
std::istringstream in_stream("1 2\n");
int first;
int second;
const bool read_successful = collatz_read(in_stream, first, second);
ASSERT_TRUE(read_successful);
ASSERT_EQ(1, first);
ASSERT_EQ(2, second);
}
TEST(CollatzReadTest, ReverseInput) {
std::istringstream in_stream("2 1\n");
int first;
int second;
const bool read_successful = collatz_read(in_stream, first, second);
ASSERT_TRUE(read_successful);
ASSERT_EQ(2, first);
ASSERT_EQ(1, second);
}
TEST(CollatzReadTest, IdenticalInput) {
std::istringstream in_stream("1 1\n");
int first;
int second;
const bool read_successful = collatz_read(in_stream, first, second);
ASSERT_TRUE(read_successful);
ASSERT_EQ(1, first);
ASSERT_EQ(first, second);
}
// ----
// eval
// ----
TEST(CollatzEvalTest, BasicInput) {
const int max_cycle_length = collatz_eval(2, 3);
ASSERT_EQ(8, max_cycle_length);
}
TEST(CollatzEvalTest, ReverseInput) {
const int max_cycle_length = collatz_eval(3, 2);
ASSERT_EQ(8, max_cycle_length);
}
TEST(CollatzEvalTest, IdenticalInput) {
const int max_cycle_length = collatz_eval(2, 2);
ASSERT_EQ(2, max_cycle_length);
}
TEST(CollatzEvalTest, LargerGapInput) {
const int max_cycle_length = collatz_eval(100, 200);
ASSERT_EQ(125, max_cycle_length);
}
TEST(CollatzEvalTest, LowBoundaryBasicInput) {
const int max_cycle_length = collatz_eval(1, 10);
ASSERT_EQ(20, max_cycle_length);
}
TEST(CollatzEvalTest, LowBoundaryReverseInput) {
const int max_cycle_length = collatz_eval(10, 1);
ASSERT_EQ(20, max_cycle_length);
}
TEST(CollatzEvalTest, LowBoundaryIdenticalInput) {
const int max_cycle_length = collatz_eval(1, 1);
ASSERT_EQ(1, max_cycle_length);
}
TEST(CollatzEvalTest, HighBoundaryBasicInput) {
const int max_cycle_length = collatz_eval(999990, 999999);
ASSERT_EQ(259, max_cycle_length);
}
TEST(CollatzEvalTest, HighBoundaryReverseInput) {
const int max_cycle_length = collatz_eval(999999, 999990);
ASSERT_EQ(259, max_cycle_length);
}
TEST(CollatzEvalTest, HighBoundaryIdenticalInput) {
const int max_cycle_length = collatz_eval(999999, 999999);
ASSERT_EQ(259, max_cycle_length);
}
// ------------
// cycle length
// ------------
TEST(CollatzCycleLengthTest, Basic) {
const int cycle_length = collatz_find_cycle_length(10);
ASSERT_EQ(7, cycle_length);
}
TEST(CollatzCycleLengthTest, LowBoundary) {
const int cycle_length = collatz_find_cycle_length(1);
ASSERT_EQ(1, cycle_length);
}
TEST(CollatzCycleLengthTest, HighBoundary) {
const int cycle_length = collatz_find_cycle_length(999999);
ASSERT_EQ(259, cycle_length);
}
// -----
// print
// -----
TEST(CollatzPrintTest, BasicInput) {
std::ostringstream out_stream;
collatz_print(out_stream, 1, 2, 3);
ASSERT_STREQ("1 2 3\n", out_stream.str().c_str());
}
TEST(CollatzPrintTest, DifferentOrderInput) {
std::ostringstream out_stream;
collatz_print(out_stream, 3, 1, 2);
ASSERT_STREQ("3 1 2\n", out_stream.str().c_str());
}
// -----
// solve
// -----
TEST(CollatzSolveTest, SingleLineInput) {
std::istringstream in_stream("1 10\n");
std::ostringstream out_stream;
collatz_solve(in_stream, out_stream);
ASSERT_STREQ("1 10 20\n", out_stream.str().c_str());
}
TEST(CollatzSolveTest, MultipleLineInput) {
std::istringstream in_stream("1 10\n100 200\n");
std::ostringstream out_stream;
collatz_solve(in_stream, out_stream);
ASSERT_STREQ("1 10 20\n100 200 125\n", out_stream.str().c_str());
}
TEST(CollatzSolveTest, EmptyInput) {
std::istringstream in_stream("");
std::ostringstream out_stream;
collatz_solve(in_stream, out_stream);
ASSERT_STREQ("", out_stream.str().c_str());
}