summaryrefslogtreecommitdiffstats
path: root/test/units/utils/test_cleanup_tmp_file.py
blob: 2a44a55b1569b2403b61406c2d98a160a52ee917 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
# Copyright: (c) 2019, 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

import os
import pytest
import tempfile

from ansible.utils.path import cleanup_tmp_file


def raise_error():
    raise OSError


def test_cleanup_tmp_file_file():
    tmp_fd, tmp = tempfile.mkstemp()
    cleanup_tmp_file(tmp)

    assert not os.path.exists(tmp)


def test_cleanup_tmp_file_dir():
    tmp = tempfile.mkdtemp()
    cleanup_tmp_file(tmp)

    assert not os.path.exists(tmp)


def test_cleanup_tmp_file_nonexistant():
    assert None is cleanup_tmp_file('nope')


def test_cleanup_tmp_file_failure(mocker):
    tmp = tempfile.mkdtemp()
    with pytest.raises(Exception):
        mocker.patch('shutil.rmtree', side_effect=raise_error())
        cleanup_tmp_file(tmp)


def test_cleanup_tmp_file_failure_warning(mocker, capsys):
    tmp = tempfile.mkdtemp()
    with pytest.raises(Exception):
        mocker.patch('shutil.rmtree', side_effect=raise_error())
        cleanup_tmp_file(tmp, warn=True)