예제 #1
0
def test_call_func(tested_func, mocked_func, other_args, called_with, mocker):
    if called_with:
        mock = mocker.Mock()
        mocker.patch(
            "gamestonk_terminal.stocks.behavioural_analysis.ba_controller." +
            mocked_func,
            new=mock,
        )
        EMPTY_DF.drop(EMPTY_DF.index, inplace=True)
        controller = ba_controller.BehaviouralAnalysisController(
            ticker="MOCK_TICKER",
            start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        )
        getattr(controller, tested_func)(other_args=other_args)

        if isinstance(called_with, dict):
            mock.assert_called_once_with(**called_with)
        elif isinstance(called_with, list):
            mock.assert_called_once_with(*called_with)
        else:
            mock.assert_called_once()
    else:
        EMPTY_DF.drop(EMPTY_DF.index, inplace=True)
        controller = ba_controller.BehaviouralAnalysisController(
            ticker="MOCK_TICKER",
            start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        )
        getattr(controller, tested_func)(other_args=other_args)
예제 #2
0
def test_call_func(
    tested_func, mocked_func, other_args, called_args, called_kwargs, mocker
):
    path_controller = "gamestonk_terminal.stocks.behavioural_analysis.ba_controller"

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

        EMPTY_DF.drop(EMPTY_DF.index, inplace=True)
        controller = ba_controller.BehaviouralAnalysisController(
            ticker="MOCK_TICKER",
            start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        )
        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:
        EMPTY_DF.drop(EMPTY_DF.index, inplace=True)
        controller = ba_controller.BehaviouralAnalysisController(
            ticker="MOCK_TICKER",
            start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        )
        getattr(controller, tested_func)(other_args)
예제 #3
0
def test_menu_without_queue_completion(mocker):
    # 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=ba_controller.gtff,
        attribute="USE_PROMPT_TOOLKIT",
        new=True,
    )
    mocker.patch(
        target="gamestonk_terminal.stocks.behavioural_analysis.ba_controller.session",
    )
    mocker.patch(
        target="gamestonk_terminal.stocks.behavioural_analysis.ba_controller.session.prompt",
        return_value="quit",
    )

    result_menu = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        queue=None,
    ).menu()

    assert result_menu == []
예제 #4
0
def test_switch(an_input, expected_queue):
    controller = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        queue=None,
    )
    queue = controller.switch(an_input=an_input)

    assert queue == expected_queue
예제 #5
0
def test_call_func_expect_queue(expected_queue, queue, func):
    controller = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        queue=queue,
    )
    result = getattr(controller, func)([])

    assert result is None
    assert controller.queue == expected_queue
예제 #6
0
def test_call_cls(mocker):
    mocker.patch("os.system")
    controller = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
    )
    controller.call_cls([])

    assert controller.queue == []
    os.system.assert_called_once_with("cls||clear")
예제 #7
0
def test_menu_with_queue(expected, mocker, queue):
    mocker.patch(
        target=("gamestonk_terminal.stocks.behavioural_analysis.ba_controller."
                "BehaviouralAnalysisController.switch"),
        return_value=["quit"],
    )
    result_menu = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        queue=queue,
    ).menu()

    assert result_menu == expected
예제 #8
0
def test_call_func_no_ticker(func, mocker):
    mocker.patch(
        "gamestonk_terminal.stocks.behavioural_analysis.ba_controller.parse_known_args_and_warn",
        return_value=True,
    )
    controller = ba_controller.BehaviouralAnalysisController(
        ticker=None,
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
    )

    func_result = getattr(controller, func)(other_args=list())
    assert func_result is None
    assert controller.queue == []
    getattr(ba_controller, "parse_known_args_and_warn").assert_called_once()
예제 #9
0
def test_call_load(mocker):
    yf_download = ba_controller.stocks_helper.yf.download

    def mock_yf_download(*args, **kwargs):
        kwargs["threads"] = False
        return yf_download(*args, **kwargs)

    mocker.patch("yfinance.download", side_effect=mock_yf_download)
    controller = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
    )
    other_args = [
        "TSLA",
        "--start=2021-12-17",
    ]
    controller.call_load(other_args=other_args)
예제 #10
0
def test_menu_without_queue_sys_exit(mock_input, mocker):
    # DISABLE AUTO-COMPLETION
    mocker.patch.object(
        target=ba_controller.gtff,
        attribute="USE_PROMPT_TOOLKIT",
        new=False,
    )
    mocker.patch(
        target="gamestonk_terminal.stocks.behavioural_analysis.ba_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=(
            "gamestonk_terminal.stocks.behavioural_analysis.ba_controller."
            "BehaviouralAnalysisController.switch"
        ),
        new=mock_switch,
    )

    result_menu = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
        queue=None,
    ).menu()

    assert result_menu == []
예제 #11
0
def test_print_help():
    controller = ba_controller.BehaviouralAnalysisController(
        ticker="TSLA",
        start=datetime.strptime("2020-12-01", "%Y-%m-%d"),
    )
    controller.print_help()