mirror of https://github.com/ansible/ansible.git
Use atexit to cleanup tmp dirs (#56532)
* Wrap everything in try/except to avoid leaving files behind * Add unit tests, integration tests, and changelog * Do text the correct waypull/57993/head
parent
875e7c3e50
commit
6cf6f5a34b
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- remove all temporary directories created by ansible-config (https://github.com/ansible/ansible/issues/56488)
|
@ -0,0 +1,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)
|
||||
__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)
|
Loading…
Reference in New Issue