8cd66ce95a
(cherry picked from commit 98a0995fd0
)
Co-authored-by: Matt Clay <matt@mystile.com>
48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
# -*- 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)
|