mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
Add a test that AWX doesn't care about max_hosts when editing hosts
on an inventory.
This commit is contained in:
parent
4afd0672a1
commit
60008dbd74
@ -374,6 +374,18 @@ def test_edit_inventory_host(put, host, alice, role_field, expected_status_code)
|
|||||||
put(reverse('api:host_detail', kwargs={'pk': host.id}), data, alice, expect=expected_status_code)
|
put(reverse('api:host_detail', kwargs={'pk': host.id}), data, alice, expect=expected_status_code)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.django_db
|
||||||
|
def test_edit_inventory_host_with_limits(put, host, admin_user):
|
||||||
|
# The per-Organization host limits functionality should be a no-op on AWX.
|
||||||
|
inventory = host.inventory
|
||||||
|
inventory.organization.max_hosts = 1
|
||||||
|
inventory.organization.save()
|
||||||
|
inventory.hosts.create(name='Alternate host')
|
||||||
|
|
||||||
|
data = {'name': 'New name', 'description': 'Hello world'}
|
||||||
|
put(reverse('api:host_detail', kwargs={'pk': host.id}), data, admin_user, expect=200)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("role_field,expected_status_code", [
|
@pytest.mark.parametrize("role_field,expected_status_code", [
|
||||||
(None, 403),
|
(None, 403),
|
||||||
('admin_role', 204),
|
('admin_role', 204),
|
||||||
|
Loading…
Reference in New Issue
Block a user