mirror of
https://github.com/ansible/awx.git
synced 2026-01-29 15:24:42 -03:30
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
import pytest
|
|
|
|
from awx.main.models import Label
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_create_label(run_module, admin_user, organization):
|
|
result = run_module('label', dict(name='test-label', organization=organization.name), admin_user)
|
|
assert not result.get('failed'), result.get('msg', result)
|
|
assert result.get('changed', False)
|
|
|
|
assert Label.objects.get(name='test-label').organization == organization
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_create_label_using_org_id(run_module, admin_user, organization):
|
|
result = run_module('label', dict(name='test-label', organization=organization.id), admin_user)
|
|
assert not result.get('failed'), result.get('msg', result)
|
|
assert result.get('changed', False)
|
|
|
|
assert Label.objects.get(name='test-label').organization == organization
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_modify_label(run_module, admin_user, organization):
|
|
label = Label.objects.create(name='test-label', organization=organization)
|
|
|
|
result = run_module('label', dict(name='test-label', new_name='renamed-label', organization=organization.name), admin_user)
|
|
assert not result.get('failed'), result.get('msg', result)
|
|
assert result.get('changed', False)
|
|
|
|
label.refresh_from_db()
|
|
assert label.organization == organization
|
|
assert label.name == 'renamed-label'
|