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
|
import unittest
from unittest import mock
from ...management.user_blocks import UserBlocks
class TestUserBlocks(unittest.TestCase):
def test_init_with_optionals(self):
t = UserBlocks(
domain="domain", token="jwttoken", telemetry=False, timeout=(10, 2)
)
self.assertEqual(t.client.options.timeout, (10, 2))
telemetry_header = t.client.base_headers.get("Auth0-Client", None)
self.assertEqual(telemetry_header, None)
@mock.patch("auth0.management.user_blocks.RestClient")
def test_get_by_identifier(self, mock_rc):
mock_instance = mock_rc.return_value
u = UserBlocks(domain="domain", token="jwttoken")
u.get_by_identifier("some_identifier")
mock_instance.get.assert_called_with(
"https://domain/api/v2/user-blocks",
params={"identifier": "some_identifier"},
)
@mock.patch("auth0.management.user_blocks.RestClient")
def test_unblock_by_identifier(self, mock_rc):
mock_instance = mock_rc.return_value
u = UserBlocks(domain="domain", token="jwttoken")
u.unblock_by_identifier("test@test.com")
mock_instance.delete.assert_called_with(
"https://domain/api/v2/user-blocks", params={"identifier": "test@test.com"}
)
@mock.patch("auth0.management.user_blocks.RestClient")
def test_get(self, mock_rc):
mock_instance = mock_rc.return_value
u = UserBlocks(domain="domain", token="jwttoken")
u.get("auth0|584ad3c228be27504a2c80d5")
mock_instance.get.assert_called_with(
"https://domain/api/v2/user-blocks/auth0|584ad3c228be27504a2c80d5"
)
@mock.patch("auth0.management.user_blocks.RestClient")
def test_unblock(self, mock_rc):
mock_instance = mock_rc.return_value
u = UserBlocks(domain="domain", token="jwttoken")
u.unblock("auth0|584ad3c228be27504a2c80d5")
mock_instance.delete.assert_called_with(
"https://domain/api/v2/user-blocks/auth0|584ad3c228be27504a2c80d5"
)
|