Esempio n. 1
0
def test_simple_with_mode_addition_first():
    input_str = '1 + 2 * 3 + 4 * 5 + 6'
    assert process.process(input_str, mode='addition_first') == 231
Esempio n. 2
0
def test_nested_4_with_mode_same_precedence():
    input_str = '((2 + 4 * 9) * (6 + 9 * 8 + 6) + 6) + 2 + 4 * 2'
    assert process.process(input_str, mode='same_precedence') == 13632
Esempio n. 3
0
def test_nested_4_with_mode_addition_first():
    input_str = '((2 + 4 * 9) * (6 + 9 * 8 + 6) + 6) + 2 + 4 * 2'
    assert process.process(input_str, mode='addition_first') == 23340
Esempio n. 4
0
def test_nested_3_with_mode_same_precedence():
    input_str = '5 * 9 * (7 * 3 * 3 + 9 * 3 + (8 + 6 * 4))'
    assert process.process(input_str, mode='same_precedence') == 12240
Esempio n. 5
0
def test_nested_3_with_mode_addition_first():
    input_str = '5 * 9 * (7 * 3 * 3 + 9 * 3 + (8 + 6 * 4))'
    assert process.process(input_str, mode='addition_first') == 669060
Esempio n. 6
0
def test_nested_2_with_mode_same_precedence():
    input_str = '5 + (8 * 3 + 9 + 3 * 4 * 3)'
    assert process.process(input_str, mode='same_precedence') == 437
Esempio n. 7
0
def test_nested_2_with_mode_addition_first():
    input_str = '5 + (8 * 3 + 9 + 3 * 4 * 3)'
    assert process.process(input_str, mode='addition_first') == 1445
Esempio n. 8
0
def test_simple_with_mode_same_precedence():
    input_str = '1 + 2 * 3 + 4 * 5 + 6'
    assert process.process(input_str, mode='same_precedence') == 71
Esempio n. 9
0
def test_nested_1_with_mode_addition_first():
    input_str = '2 * 3 + (4 * 5)'
    assert process.process(input_str, mode='addition_first') == 46
Esempio n. 10
0
def test_nested_1_with_mode_same_precedence():
    input_str = '2 * 3 + (4 * 5)'
    assert process.process(input_str, mode='same_precedence') == 26
Esempio n. 11
0
def test_nested_0_with_mode_addition_first():
    input_str = '1 + (2 * 3) + (4 * (5 + 6))'
    assert process.process(input_str, mode='addition_first') == 51
Esempio n. 12
0
def test_nested_0_with_mode_same_precedence():
    input_str = '1 + (2 * 3) + (4 * (5 + 6))'
    assert process.process(input_str, mode='same_precedence') == 51