summaryrefslogtreecommitdiff
path: root/test/units/utils/display/test_broken_cowsay.py
blob: 96157e1a8b1c0bf3e2efb031eb9aee1f614201ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
# Copyright (c) 2021 Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from __future__ import absolute_import, division, print_function

__metaclass__ = type


from ansible.utils.display import Display
from unittest.mock import MagicMock


def test_display_with_fake_cowsay_binary(capsys, mocker):
    display = Display()

    mocker.patch("ansible.constants.ANSIBLE_COW_PATH", "./cowsay.sh")

    mock_popen = MagicMock()
    mock_popen.return_value.returncode = 1
    mocker.patch("subprocess.Popen", mock_popen)

    assert not hasattr(display, "cows_available")
    assert display.b_cowsay is None