Exemplo n.º 1
0
def test_computer_less_than2():
    ram = [3, 9, 7, 9, 10, 9, 4, 9, 99, -1, 8]
    input = 8
    stdout = []
    computer = Computer(ram, receive(stdout)).run()
    try:
        computer.send(input)
    except StopIteration:
        pass
    assert stdout == [0]
Exemplo n.º 2
0
def test_computer_less_than_immediate():
    ram = [3, 3, 1107, -1, 8, 3, 4, 3, 99]
    input = 8
    stdout = []
    computer = Computer(ram, receive(stdout)).run()
    try:
        computer.send(input)
    except StopIteration:
        pass
    assert stdout == [0]
Exemplo n.º 3
0
def test_computer_jump4():
    ram = [3, 3, 1105, -1, 9, 1101, 0, 0, 12, 4, 12, 99, 1]
    input = 2
    stdout = []
    computer = Computer(ram, receive(stdout)).run()
    try:
        computer.send(input)
    except StopIteration:
        pass
    assert stdout == [1]
Exemplo n.º 4
0
def test_computer_jump2():
    ram = [3, 12, 6, 12, 15, 1, 13, 14, 13, 4, 13, 99, -1, 0, 1, 9]
    input = 2
    stdout = []
    computer = Computer(ram, receive(stdout)).run()
    try:
        computer.send(input)
    except StopIteration:
        pass
    assert stdout == [1]
Exemplo n.º 5
0
def test_computer_long1():
    ram = [
        3, 21, 1008, 21, 8, 20, 1005, 20, 22, 107, 8, 21, 20, 1006, 20, 31,
        1106, 0, 36, 98, 0, 0, 1002, 21, 125, 20, 4, 20, 1105, 1, 46, 104, 999,
        1105, 1, 46, 1101, 1000, 1, 20, 4, 20, 1105, 1, 46, 98, 99
    ]
    input = 8
    stdout = []
    computer = Computer(ram, receive(stdout)).run()
    try:
        computer.send(input)
    except StopIteration:
        pass
    assert stdout == [1000]
Exemplo n.º 6
0
def test_computer_add():
    ram = [1, 0, 0, 0, 99]
    expected_result = [2, 0, 0, 0, 99]
    computer = Computer(ram)
    computer.run()
    assert expected_result == ram
Exemplo n.º 7
0
def test_computer_mutate():
    ram = [1, 1, 1, 4, 99, 5, 6, 0, 99]
    expected_result = [30, 1, 1, 4, 2, 5, 6, 0, 99]
    computer = Computer(ram)
    computer.run()
    assert expected_result == ram
Exemplo n.º 8
0
def test_computer_terminate():
    ram = [2, 4, 4, 5, 99, 0]
    expected_result = [2, 4, 4, 5, 99, 9801]
    computer = Computer(ram)
    computer.run()
    assert expected_result == ram
Exemplo n.º 9
0
def test_computer_mult():
    ram = [2, 3, 0, 3, 99]
    expected_result = [2, 3, 0, 6, 99]
    computer = Computer(ram)
    computer.run()
    assert expected_result == ram