-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.py
More file actions
490 lines (372 loc) · 15.3 KB
/
tests.py
File metadata and controls
490 lines (372 loc) · 15.3 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
import unittest
class Lexer( unittest.TestCase):
def test_instance(self):
from arithmetic import Lexer
lexer = Lexer( '5x3 ' )
self.assertEqual( lexer.text, '5x3 ' )
self.assertEqual( lexer.offset, 0 )
def test_gettoken_null_text(self):
from arithmetic import Lexer
lexer = Lexer( '' )
lexer.gettoken()
self.assertEqual( lexer.value, None )
self.assertEqual( lexer.type, '' )
def test_gettoken_newline(self):
from arithmetic import Lexer
lexer = Lexer( ' \n ' )
lexer.gettoken()
self.assertEqual( lexer.value, '\n' )
self.assertEqual( lexer.type, 'r' )
def test_gettoken_f(self):
from arithmetic import Lexer
lexer = Lexer( ' 5 ' )
lexer.gettoken()
self.assertEqual( lexer.value, '5' )
self.assertEqual( lexer.type, 'f' )
def test_gettoken_x_enclosed(self):
from arithmetic import Lexer
lexer = Lexer( '5x3' )
lexer.gettoken()
lexer.gettoken()
self.assertEqual( lexer.value, 'x' )
self.assertEqual( lexer.type, 'x' )
def test_gettoken_n(self):
from arithmetic import Lexer
lexer = Lexer( ' name ' )
lexer.gettoken()
self.assertEqual( lexer.value, 'name' )
self.assertEqual( lexer.type, 'n' )
def test_gettoken_power(self):
from arithmetic import Lexer
lexer = Lexer( ' ** ' )
lexer.gettoken()
self.assertEqual( lexer.value, '**' )
self.assertEqual( lexer.type, 'o' )
def test_gettoken_plus(self):
from arithmetic import Lexer
lexer = Lexer( ' + ' )
lexer.gettoken()
self.assertEqual( lexer.value, '+' )
self.assertEqual( lexer.type, 'o' )
def test_gettoken_invalid(self):
from arithmetic import Lexer
lexer = Lexer( ' @ ' )
lexer.gettoken()
self.assertEqual( lexer.value, '@***' )
self.assertEqual( lexer.type, 'u' )
class Evaluate( unittest.TestCase):
def test_evaluate_factor(self):
from arithmetic import evaluate
res = evaluate('5*2')
self.assertEqual( res, '10' )
def test_evaluate_negative_factor(self):
from arithmetic import evaluate
res = evaluate('5*-2')
self.assertEqual( res, '-10' )
def test_evaluate_factor_percentage(self):
from arithmetic import evaluate
res = evaluate('50%')
self.assertEqual( res, '0.5' )
def test_evaluate_factor_open_parenthesis(self):
from arithmetic import evaluate
res = evaluate('(1)')
self.assertEqual( res, '1' )
def test_evaluate_factor_multiple_word_identifier(self):
from arithmetic import evaluate
res = evaluate('avg val', variables={'avg val':'5'})
self.assertEqual( res, '5' )
def test_evaluate_factor_name_undefined(self):
from arithmetic import evaluate
from decimal import InvalidOperation
self.assertRaises( InvalidOperation, evaluate, 'a' )
def test_evaluate_factors(self):
from arithmetic import evaluate
res = evaluate('5**2')
self.assertEqual( res, '25' )
def test_evaluate_numeric(self):
from arithmetic import evaluate
res = evaluate('5+2')
self.assertEqual( res, '7' )
def test_evaluate_variable(self):
from arithmetic import evaluate
res = evaluate('a', variables={'a':'1'})
self.assertEqual( res, '1' )
def test_evaluate_variable_plus(self):
from arithmetic import evaluate
res = evaluate('f+1', variables={'f':'1'})
self.assertEqual( res, '2' )
def test_evaluate_function(self):
from arithmetic import evaluate
res = evaluate('f', variables={'a':'1'}, functions={'f': 'a+1'})
self.assertEqual( res, '2' )
def test_evaluate_function_name_substring(self):
from arithmetic import evaluate
res = evaluate('f', variables={'af':'1'}, functions={'f': 'af'})
self.assertEqual( res, '1' )
def test_evaluate_function_recursive_no_initial_value(self):
from arithmetic import evaluate
res = evaluate('f', functions={'f': 'f+1'})
self.assertEqual( res, '0' )
class TypeAndValueOf(unittest.TestCase):
def test_v(self):
from arithmetic import TypeAndValueOf
res = TypeAndValueOf('')
self.assertEqual( res, ('v', ''))
def test_f(self):
from arithmetic import TypeAndValueOf
res = TypeAndValueOf('5.0')
self.assertEqual( res, ('f', '5.0'))
def test_n(self):
from arithmetic import TypeAndValueOf
res = TypeAndValueOf('name')
self.assertEqual( res, ('n', 'name'))
def test_e(self):
from arithmetic import TypeAndValueOf
res = TypeAndValueOf('name + 2')
self.assertEqual( res, ('e', 'name + 2'))
def test_a(self):
from arithmetic import TypeAndValueOf
res = TypeAndValueOf('2 + 2')
self.assertEqual( res, ('a', '2 + 2'))
class FindLeftStarts(unittest.TestCase):
def test_begin_of_line(self):
from arithmetic import find_left_starts
expected = [0, 0]
result = find_left_starts('2+2 =', 0, 4, 5)
self.assertEqual(expected, result)
def test_spaces(self):
from arithmetic import find_left_starts
expected = [0, 5, 2]
result = find_left_starts(' a 2+2 =', 0, 9, 10)
self.assertEqual(expected, result)
def test_colon(self):
from arithmetic import find_left_starts
expected = [0, 3, 0]
result = find_left_starts('a: 2+2 =', 0, 7, 8)
self.assertEqual(expected, result)
def test_previous_equals_sign(self):
from arithmetic import find_left_starts
expected = [4, 0]
result = find_left_starts('a = 2+2 =', 4, 8, 9)
self.assertEqual(expected, result)
class FindRightEnds(unittest.TestCase):
def test_separator(self):
from arithmetic import find_right_ends
match_eqs_next = None
expected = [4, 4]
result = find_right_ends('2+1= ', 4, match_eqs_next)
self.assertEqual(expected, result)
def test_equals_sign_next(self):
from unittest.mock import Mock
from arithmetic import find_right_ends
match_eqs_next = Mock()
match_eqs_next.start.return_value = 10
expected = [10, 4, 11]
result = find_right_ends('2+1= =', 4, match_eqs_next)
self.assertEqual(expected, result)
def test_end_of_line(self):
from arithmetic import find_right_ends
match_eqs_next = None
expected = [4]
result = find_right_ends('2+1=', 4, match_eqs_next)
self.assertEqual(expected, result)
class PerformOperations(unittest.TestCase):
def setUp(self):
from unittest.mock import Mock
import arithmetic
arithmetic.print = Mock()
def tearDown(self):
import arithmetic
del arithmetic.print
def test_evaluate_arithmetic_expression(self):
from unittest.mock import Mock
from arithmetic import perform_operations
write_result = Mock()
perform_operations('a', '2*3', 'v', '', {}, {},
write_result, 10, 11, [], 0)
write_result.assert_called_with(0, [], 10, 11, '6')
def test_evaluate_expression_error(self):
from arithmetic import perform_operations
import arithmetic
perform_operations('a', 'a+3', 'v', '', {}, {},
'write_result', 10, 11, [], 0)
arithmetic.print.assert_called_with('eval error:', 'a', 'a+3', 'v', '')
def test_assign_to_variable(self):
from arithmetic import perform_operations
variables = {}
perform_operations('n', 'a', 'i', '1', variables, {},
'write_result', 10, 11, [], 0)
self.assertEqual(variables, {'a': '1'})
def test_assign_to_variable_error(self):
import decimal
from arithmetic import perform_operations
import arithmetic
self.assertRaises(decimal.DivisionByZero, perform_operations,
'n', 'a', 'a', '1/0', {}, {},
'write_result', 10, 11, [], 0)
arithmetic.print.assert_called_with('exec error:', 'n', 'a', 'a', '1/0')
def test_evaluate_variable(self):
from unittest.mock import Mock
from arithmetic import perform_operations
write_result = Mock()
variables = {'a': '5'}
perform_operations('n', 'a', 'v', '', variables, {},
write_result, 10, 11, [], 0)
write_result.assert_called_with(0, [], 10, 11, '5')
def test_evaluate_function(self):
from unittest.mock import Mock
from arithmetic import perform_operations
write_result = Mock()
variables = {'a': '1'}
functions = {'f': 'a+1'}
perform_operations('n', 'f', 'v', '', variables, functions,
write_result, 10, 11, [], 0)
write_result.assert_called_with(0, [], 10, 11, '2')
def test_evaluate_function_error(self):
from arithmetic import perform_operations
import arithmetic
functions = {'f': 'a+1'}
perform_operations('n', 'f', 'v', '', {}, functions,
'write_result', 10, 11, [], 0)
arithmetic.print.assert_called_with('eval error:', 'n', 'f', 'v', '')
def test_recursive_function_initial_value(self):
from arithmetic import perform_operations
variables = {}
functions = {'f': 'f+3'}
perform_operations('n', 'f', 'i', '1', variables, functions,
'write_result', 10, 11, [], 0)
self.assertEqual(variables, {'f': '1'})
def test_recursive_function_iteration(self):
from unittest.mock import Mock
from arithmetic import perform_operations
write_result = Mock()
variables = {'f': '1'}
functions = {'f': 'f+3'}
perform_operations('n', 'f', 'v', '', variables, functions,
write_result, 10, 11, [], 0)
self.assertEqual(variables, {'f': '4'})
def test_define_function(self):
from arithmetic import perform_operations
variables = {}
functions = {}
perform_operations('n', 'a', 'e', 'f+1', variables, functions,
'write_result', 10, 11, [], 0)
self.assertEqual(functions, {'a': 'f+1'})
def test_define_alias(self):
from arithmetic import perform_operations
variables = {}
functions = {}
perform_operations('n', 'a', 'n', 'b', variables, functions,
'write_result', 10, 11, [], 0)
self.assertEqual(functions, {'a': 'b'})
class Parser(unittest.TestCase):
def test_instance(self):
from arithmetic import Parser
self.assertIsInstance( Parser(), Parser )
def test_parse(self):
from arithmetic import Parser
parser = Parser()
self.assertEqual( parser.parse('2+2='), '2+2=4' )
def test_parseLine_mSeparLeft(self):
from arithmetic import Parser
parser = Parser()
lines = [' a 2+2 =']
parser.parseLine(0, lines)
self.assertEqual( lines[0], ' a 2+2 =4' )
def test_parseLine_mColonLeft(self):
from arithmetic import Parser
parser = Parser()
lines = ['a: 2+2 =']
parser.parseLine(0, lines)
self.assertEqual( lines[0], 'a: 2+2 =4' )
def test_parseLine_mEqualSignNext(self):
from arithmetic import Parser
parser = Parser()
lines = ['a: 2+2 = 2x3=']
parser.parseLine(0, lines)
self.assertEqual( lines[0], 'a: 2+2 = 4 2x3=6' )
class ParserParseLine(unittest.TestCase):
def setUp(self):
from unittest.mock import Mock
import arithmetic
arithmetic.print = Mock()
def tearDown(self):
import arithmetic
del arithmetic.print
def test_evaluate_expression(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['a + 1 =']
parser.parseLine(0, lines)
arithmetic.print.assert_called_with('eval error:', 'e' , 'a + 1', 'v', '')
def test_assign_to_variable(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['a=1']
variables = {}
parser.parseLine(0, lines, variables=variables)
self.assertEqual(variables, {'a': '1'})
def test_assign_to_variable_exception(self):
import arithmetic
import decimal
parser = arithmetic.Parser()
lines = ['a=1/0']
self.assertRaises(decimal.DivisionByZero, parser.parseLine, 0, lines)
def test_evaluate_variable(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['a=']
variables = {'a': '1'}
parser.parseLine(0, lines, variables=variables)
self.assertEqual(lines, ['a=1'])
def test_evaluate_function(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['f=']
variables = {'a': '1'}
functions = {'f': 'a+1'}
parser.parseLine(0, lines, variables=variables, functions=functions)
self.assertEqual(lines, ['f=2'])
def test_evaluate_function_exception(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['f=']
functions = {'f': 'a+1'}
parser.parseLine(0, lines, functions=functions)
arithmetic.print.assert_called_with('eval error:', 'n', 'f', 'v', '')
def test_function_recursive_initial_value(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['f=1']
variables = {}
functions = {'f': 'f+3'}
parser.parseLine(0, lines, variables=variables, functions=functions)
self.assertEqual(variables, {'f': '1'})
def test_function_recursive_iteration(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['f=']
variables = {'f': '1'}
functions = {'f': 'f+3'}
parser.parseLine(0, lines, variables=variables, functions=functions)
self.assertEqual(variables, {'f': '4'})
def test_define_function(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['a=f+1']
functions = {}
parser.parseLine(0, lines, functions=functions)
self.assertEqual(functions, {'a': 'f+1'})
def test_define_an_alias(self):
import arithmetic
parser = arithmetic.Parser()
lines = ['a=b']
functions = {}
parser.parseLine(0, lines, functions=functions)
self.assertEqual(functions, {'a': 'b'})
class AddCommas(unittest.TestCase):
def test_commas(self):
from arithmetic import AddCommas
self.assertEqual('1,000', AddCommas(1000))
if __name__ == '__main__':
unittest.main()