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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
import unittest
from unittest import mock
from ...management.client_grants import ClientGrants
class TestClientGrants(unittest.TestCase):
def test_init_with_optionals(self):
t = ClientGrants(
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.client_grants.RestClient")
def test_all(self, mock_rc):
mock_instance = mock_rc.return_value
c = ClientGrants(domain="domain", token="jwttoken")
# With default params
c.all()
args, kwargs = mock_instance.get.call_args
self.assertEqual("https://domain/api/v2/client-grants", args[0])
self.assertEqual(
kwargs["params"],
{
"audience": None,
"page": None,
"per_page": None,
"include_totals": "false",
"client_id": None,
"allow_any_organization": None,
},
)
# With audience
c.all(audience="http://domain.auth0.com/api/v2/")
args, kwargs = mock_instance.get.call_args
self.assertEqual("https://domain/api/v2/client-grants", args[0])
self.assertEqual(
kwargs["params"],
{
"audience": "http://domain.auth0.com/api/v2/",
"page": None,
"per_page": None,
"include_totals": "false",
"client_id": None,
"allow_any_organization": None,
},
)
# With pagination params
c.all(per_page=23, page=7, include_totals=True)
args, kwargs = mock_instance.get.call_args
self.assertEqual("https://domain/api/v2/client-grants", args[0])
self.assertEqual(
kwargs["params"],
{
"audience": None,
"page": 7,
"per_page": 23,
"include_totals": "true",
"client_id": None,
"allow_any_organization": None,
},
)
# With client_id param
c.all(client_id="exampleid")
args, kwargs = mock_instance.get.call_args
self.assertEqual("https://domain/api/v2/client-grants", args[0])
self.assertEqual(
kwargs["params"],
{
"audience": None,
"page": None,
"per_page": None,
"include_totals": "false",
"client_id": "exampleid",
"allow_any_organization": None,
},
)
# With allow any organization
c.all(allow_any_organization=True)
args, kwargs = mock_instance.get.call_args
self.assertEqual("https://domain/api/v2/client-grants", args[0])
self.assertEqual(
kwargs["params"],
{
"audience": None,
"page": None,
"per_page": None,
"include_totals": "false",
"client_id": None,
"allow_any_organization": True,
},
)
@mock.patch("auth0.management.client_grants.RestClient")
def test_create(self, mock_rc):
mock_instance = mock_rc.return_value
c = ClientGrants(domain="domain", token="jwttoken")
c.create({"a": "b", "c": "d"})
mock_instance.post.assert_called_with(
"https://domain/api/v2/client-grants", data={"a": "b", "c": "d"}
)
@mock.patch("auth0.management.client_grants.RestClient")
def test_delete(self, mock_rc):
mock_instance = mock_rc.return_value
c = ClientGrants(domain="domain", token="jwttoken")
c.delete("this-id")
mock_instance.delete.assert_called_with(
"https://domain/api/v2/client-grants/this-id"
)
@mock.patch("auth0.management.client_grants.RestClient")
def test_update(self, mock_rc):
mock_instance = mock_rc.return_value
c = ClientGrants(domain="domain", token="jwttoken")
c.update("this-id", {"a": "b", "c": "d"})
args, kwargs = mock_instance.patch.call_args
self.assertEqual("https://domain/api/v2/client-grants/this-id", args[0])
self.assertEqual(kwargs["data"], {"a": "b", "c": "d"})
@mock.patch("auth0.management.client_grants.RestClient")
def test_get_organizations(self, mock_rc):
mock_instance = mock_rc.return_value
c = ClientGrants(domain="domain", token="jwttoken")
c.get_organizations("cgid")
args, kwargs = mock_instance.get.call_args
self.assertEqual(
"https://domain/api/v2/client-grants/cgid/organizations", args[0]
)
self.assertEqual(
kwargs["params"],
{
"page": None,
"per_page": None,
"include_totals": "false",
"from": None,
"take": None,
},
)
|