Initial cut at tower_token module

This commit is contained in:
John Westcott IV
2020-05-21 13:14:10 -04:00
parent e6b1e55274
commit e6416d770b
4 changed files with 220 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import pytest
from awx.main.models import OAuth2AccessToken
@pytest.mark.django_db
def test_create_token(run_module, admin_user):
module_args = {
'description': 'barfoo',
'state': 'present',
'scope': 'read',
'tower_host': None,
'tower_username': None,
'tower_password': None,
'validate_certs': None,
'tower_oauthtoken': None,
'tower_config_file': None,
}
result = run_module('tower_token', module_args, admin_user)
assert result, result.get('changed')
tokens = OAuth2AccessToken.objects.filter(description='barfoo')
assert len(tokens) == 1, tokens[0].description == 'barfoo'