Ejemplo n.º 1
0
def test_adb_shell_displays_expected_prompt_in_str_conversion(
        buffer_connection):
    from moler.cmd.adb import adb_shell

    cmd_adb_shell = adb_shell.AdbShell(
        connection=buffer_connection.moler_connection,
        expected_prompt=r'shell@adbhost:/ \$')
    assert r"expected_prompt_regex:r'shell@adbhost:/ \$'" in str(cmd_adb_shell)
Ejemplo n.º 2
0
def test_adb_shell_can_generate_serial_number_based_prompt(buffer_connection):
    from moler.cmd.adb import adb_shell

    cmd_adb_shell = adb_shell.AdbShell(
        connection=buffer_connection.moler_connection,
        serial_number='f57e6b77',
        prompt_from_serial_number=True)
    assert r"expected_prompt_regex:r'^adb_shell@f57e6b77 \$'" in str(
        cmd_adb_shell)
Ejemplo n.º 3
0
def test_calling_adb_shell_returns_expected_result(buffer_connection):
    from moler.cmd.adb import adb_shell
    cmd_adb_shell = adb_shell.AdbShell(
        connection=buffer_connection.moler_connection,
        **adb_shell.COMMAND_KWARGS_one_device)
    buffer_connection.remote_inject_response(
        [adb_shell.COMMAND_OUTPUT_one_device])
    result = cmd_adb_shell()
    assert result == adb_shell.COMMAND_RESULT_one_device
Ejemplo n.º 4
0
def test_adb_shell_finishes_on_serial_number_generated_prompt(
        buffer_connection):
    from moler.cmd.adb import adb_shell
    cmd_adb_shell = adb_shell.AdbShell(
        connection=buffer_connection.moler_connection,
        **adb_shell.COMMAND_KWARGS_serial_number_generated_prompt)
    buffer_connection.remote_inject_response(
        [adb_shell.COMMAND_OUTPUT_serial_number_generated_prompt])
    result = cmd_adb_shell()
    assert result == adb_shell.COMMAND_RESULT_serial_number_generated_prompt
Ejemplo n.º 5
0
def test_calling_adb_shell_raises_CommandFailure_with_error_msg_from_cause(
        buffer_connection, cause):
    from moler.exceptions import CommandFailure
    from moler.cmd.adb import adb_shell
    buffer_connection.remote_inject_response(
        ["adb shell\n{}\nxyz@debian ~$ ".format(cause)])
    cmd_adb_shell = adb_shell.AdbShell(
        connection=buffer_connection.moler_connection,
        expected_prompt=r'shell@adbhost:/ \$')
    with pytest.raises(CommandFailure) as error:
        cmd_adb_shell()
    assert "failed with >>Found error regex in line '{}'<<".format(
        cause) in str(error.value)