mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.1 KiB
Python
63 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (c) 2017 Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
import json
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize('stdin', [{}], indirect=['stdin'])
|
|
def test_warn(am, capfd):
|
|
|
|
am.warn('warning1')
|
|
|
|
with pytest.raises(SystemExit):
|
|
am.exit_json(warnings=['warning2'])
|
|
out, err = capfd.readouterr()
|
|
assert json.loads(out)['warnings'] == ['warning1', 'warning2']
|
|
|
|
|
|
@pytest.mark.parametrize('stdin', [{}], indirect=['stdin'])
|
|
def test_deprecate(am, capfd):
|
|
am.deprecate('deprecation1')
|
|
am.deprecate('deprecation2', '2.3')
|
|
am.deprecate('deprecation3', version='2.4')
|
|
am.deprecate('deprecation4', date='2020-03-10')
|
|
|
|
with pytest.raises(SystemExit):
|
|
am.exit_json(deprecations=['deprecation5', ('deprecation6', '2.4')])
|
|
|
|
out, err = capfd.readouterr()
|
|
output = json.loads(out)
|
|
assert ('warnings' not in output or output['warnings'] == [])
|
|
assert output['deprecations'] == [
|
|
{u'msg': u'deprecation1', u'version': None},
|
|
{u'msg': u'deprecation2', u'version': '2.3'},
|
|
{u'msg': u'deprecation3', u'version': '2.4'},
|
|
{u'msg': u'deprecation4', u'date': '2020-03-10'},
|
|
{u'msg': u'deprecation5', u'version': None},
|
|
{u'msg': u'deprecation6', u'version': '2.4'},
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize('stdin', [{}], indirect=['stdin'])
|
|
def test_deprecate_without_list(am, capfd):
|
|
with pytest.raises(SystemExit):
|
|
am.exit_json(deprecations='Simple deprecation warning')
|
|
|
|
out, err = capfd.readouterr()
|
|
output = json.loads(out)
|
|
assert ('warnings' not in output or output['warnings'] == [])
|
|
assert output['deprecations'] == [
|
|
{u'msg': u'Simple deprecation warning', u'version': None},
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize('stdin', [{}], indirect=['stdin'])
|
|
def test_deprecate_without_list(am, capfd):
|
|
with pytest.raises(AssertionError) as ctx:
|
|
am.deprecate('Simple deprecation warning', date='', version='')
|
|
assert ctx.value.args[0] == "implementation error -- version and date must not both be set"
|