Ejemplo n.º 1
0
def test_call_func_test(tested_func, mocked_func, other_args, called_args,
                        called_kwargs, mocker):
    path_controller = "gamestonk_terminal.stocks.research.res_controller"

    if mocked_func:
        mock = mocker.Mock()
        mocker.patch(
            target=f"{path_controller}.{mocked_func}",
            new=mock,
        )

        controller = res_controller.ResearchController(
            ticker="MOCK_TICKER",
            start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
            interval="MOCK_INTERVAL",
            queue=None,
        )
        getattr(controller, tested_func)(other_args)

        if called_args or called_kwargs:
            mock.assert_called_once_with(*called_args, **called_kwargs)
        else:
            mock.assert_called_once()
    else:
        controller = res_controller.ResearchController(
            ticker="MOCK_TICKER",
            start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
            interval="MOCK_INTERVAL",
            queue=None,
        )
        getattr(controller, tested_func)(other_args)
Ejemplo n.º 2
0
def test_menu_without_queue_completion(mocker):
    path_controller = "gamestonk_terminal.stocks.research.res_controller"

    # ENABLE AUTO-COMPLETION : HELPER_FUNCS.MENU
    mocker.patch(
        target="gamestonk_terminal.feature_flags.USE_PROMPT_TOOLKIT",
        new=True,
    )
    mocker.patch(target="gamestonk_terminal.parent_classes.session", )
    mocker.patch(
        target="gamestonk_terminal.parent_classes.session.prompt",
        return_value="quit",
    )

    # DISABLE AUTO-COMPLETION : CONTROLLER.COMPLETER
    mocker.patch.object(
        target=res_controller.gtff,
        attribute="USE_PROMPT_TOOLKIT",
        new=True,
    )
    mocker.patch(target=f"{path_controller}.session", )
    mocker.patch(
        target=f"{path_controller}.session.prompt",
        return_value="quit",
    )

    result_menu = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=None,
    ).menu()

    assert result_menu == []
Ejemplo n.º 3
0
def test_print_help():
    controller = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=None,
    )
    controller.print_help()
Ejemplo n.º 4
0
def test_switch(an_input, expected_queue):
    controller = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=None,
    )
    queue = controller.switch(an_input=an_input)

    assert queue == expected_queue
Ejemplo n.º 5
0
def test_call_func_expect_queue(expected_queue, func, queue):
    controller = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=queue,
    )
    result = getattr(controller, func)([])

    assert result is None
    assert controller.queue == expected_queue
Ejemplo n.º 6
0
def test_custom_reset(expected, ticker):
    controller = res_controller.ResearchController(
        ticker=None,
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=None,
    )
    controller.ticker = ticker

    result = controller.custom_reset()

    assert result == expected
Ejemplo n.º 7
0
def test_call_cls(mocker):
    mocker.patch("os.system")

    controller = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=None,
    )
    controller.call_cls([])

    assert controller.queue == []
    os.system.assert_called_once_with("cls||clear")
Ejemplo n.º 8
0
def test_menu_with_queue(expected, mocker, queue):
    path_controller = "gamestonk_terminal.stocks.research.res_controller"

    # MOCK SWITCH
    mocker.patch(
        target=f"{path_controller}.ResearchController.switch",
        return_value=["quit"],
    )
    result_menu = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=queue,
    ).menu()

    assert result_menu == expected
Ejemplo n.º 9
0
def test_menu_without_queue_sys_exit(mock_input, mocker):
    path_controller = "gamestonk_terminal.stocks.research.res_controller"

    # DISABLE AUTO-COMPLETION
    mocker.patch.object(
        target=res_controller.gtff,
        attribute="USE_PROMPT_TOOLKIT",
        new=False,
    )
    mocker.patch(
        target=f"{path_controller}.session",
        return_value=None,
    )

    # MOCK USER INPUT
    mocker.patch("builtins.input", return_value=mock_input)

    # MOCK SWITCH
    class SystemExitSideEffect:
        def __init__(self):
            self.first_call = True

        def __call__(self, *args, **kwargs):
            if self.first_call:
                self.first_call = False
                raise SystemExit()
            return ["quit"]

    mock_switch = mocker.Mock(side_effect=SystemExitSideEffect())
    mocker.patch(
        target=f"{path_controller}.ResearchController.switch",
        new=mock_switch,
    )

    result_menu = res_controller.ResearchController(
        ticker="MOCK_TICKER",
        start=datetime.strptime("2021-12-01", "%Y-%m-%d"),
        interval="MOCK_INTERVAL",
        queue=None,
    ).menu()

    assert result_menu == []