40f21dfd3c
* Track collection for version_added. Validate *all* version numbers in validate-modules. For tagged version numbers (i.e. version_added), consider source collection to chose validation. * Make tagging/untagging functions more flexible. * Tag all versions in doc fragments. * Tag all deprecation versions issued by code. * Make Display.deprecated() understand tagged versions. * Extend validation to enforce tagged version numbers. * Tag versions in tests. * Lint and fix test. * Mention collection name in collection loader's deprecation/removal messages. * Fix error IDs. * Handle tagged dates in Display.deprecated(). * Also require that removed_at_date and deprecated_aliases.date are tagged. * Also automatically tag/untag removed_at_date; fix sanity module removal version check. * Improve error message when invalid version number is used (like '2.14' in collections).
62 lines
2.2 KiB
Python
62 lines
2.2 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', 'ansible.builtin:2.3')
|
|
am.deprecate('deprecation3', version='ansible.builtin:2.4')
|
|
am.deprecate('deprecation4', date='ansible.builtin:2020-03-10')
|
|
|
|
with pytest.raises(SystemExit):
|
|
am.exit_json(deprecations=['deprecation5', ('deprecation6', 'ansible.builtin: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': 'ansible.builtin:2.3'},
|
|
{u'msg': u'deprecation3', u'version': 'ansible.builtin:2.4'},
|
|
{u'msg': u'deprecation4', u'date': 'ansible.builtin:2020-03-10'},
|
|
{u'msg': u'deprecation5', u'version': None},
|
|
{u'msg': u'deprecation6', u'version': 'ansible.builtin: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"
|