1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
from .. import util
import duo_client.admin
from .base import TestAdmin
class TestU2F(TestAdmin):
def test_get_u2ftokens_with_params(self):
""" Test to get u2ftokens with params.
"""
response = list(self.client_list.get_u2ftokens(limit=8))[0]
uri, args = response['uri'].split('?')
self.assertEqual(response['method'], 'GET')
self.assertEqual(uri, '/admin/v1/u2ftokens')
self.assertEqual(
util.params_to_dict(args),
{
'account_id':[self.client_list.account_id],
'limit': ['8'],
'offset': ['0'],
}
)
def test_get_u2ftokens_iterator(self):
response = self.client_list.get_u2ftokens_iterator()
response = next(response)
uri, args = response['uri'].split('?')
self.assertEqual(response['method'], 'GET')
self.assertEqual(uri, '/admin/v1/u2ftokens')
self.assertEqual(
util.params_to_dict(args),
{
'account_id': [self.client_list.account_id],
'limit': ['100'],
'offset': ['0']
}
)
def test_get_u2ftokens_without_params(self):
""" Test to get u2ftokens without params.
"""
response = list(self.client_list.get_u2ftokens())[0]
uri, args = response['uri'].split('?')
self.assertEqual(response['method'], 'GET')
self.assertEqual(uri, '/admin/v1/u2ftokens')
self.assertEqual(
util.params_to_dict(args),
{
'account_id': [self.client_list.account_id],
'limit': ['100'],
'offset': ['0'],
}
)
def test_get_u2ftokens_with_offset(self):
response = list(self.client_list.get_u2ftokens(limit=2, offset=3))[0]
uri, args = response['uri'].split('?')
self.assertEqual(response['method'], 'GET')
self.assertEqual(uri, '/admin/v1/u2ftokens')
self.assertEqual(
util.params_to_dict(args),
{
'account_id':[self.client_list.account_id],
'limit': ['2'],
'offset': ['3']
}
)
def test_get_u2ftoken_by_id(self):
""" Test to get u2ftoken by registration id.
"""
response = self.client.get_u2ftoken_by_id('DU012345678901234567')
uri, args = response['uri'].split('?')
self.assertEqual(response['method'], 'GET')
self.assertEqual(uri, '/admin/v1/u2ftokens/DU012345678901234567')
self.assertEqual(util.params_to_dict(args),
{'account_id':[self.client.account_id]})
def test_delete_u2ftoken(self):
""" Test to delete u2ftoken by registration id.
"""
response = self.client.delete_u2ftoken('DU012345678901234567')
uri, args = response['uri'].split('?')
self.assertEqual(response['method'], 'DELETE')
self.assertEqual(uri, '/admin/v1/u2ftokens/DU012345678901234567')
self.assertEqual(util.params_to_dict(args),
{'account_id':[self.client.account_id]})
|