48 lines
1.5 KiB
Python
48 lines
1.5 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('tower_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('tower_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('tower_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'
|