File: test_rules_configs.py

package info (click to toggle)
auth0-python 4.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,280 kB
  • sloc: python: 8,933; makefile: 15; sh: 2
file content (47 lines) | stat: -rw-r--r-- 1,546 bytes parent folder | download
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
import unittest
from unittest import mock

from ...management.rules_configs import RulesConfigs


class TestRulesConfigs(unittest.TestCase):
    def test_init_with_optionals(self):
        t = RulesConfigs(
            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.rules_configs.RestClient")
    def test_all(self, mock_rc):
        mock_instance = mock_rc.return_value

        c = RulesConfigs(domain="domain", token="jwttoken")

        c.all()

        args, kwargs = mock_instance.get.call_args

        self.assertEqual("https://domain/api/v2/rules-configs", args[0])

    @mock.patch("auth0.management.rules_configs.RestClient")
    def test_unset(self, mock_rc):
        mock_instance = mock_rc.return_value

        c = RulesConfigs(domain="domain", token="jwttoken")
        c.unset("an-id")

        mock_instance.delete.assert_called_with(
            "https://domain/api/v2/rules-configs/an-id"
        )

    @mock.patch("auth0.management.rules_configs.RestClient")
    def test_set(self, mock_rc):
        mock_instance = mock_rc.return_value

        g = RulesConfigs(domain="domain", token="jwttoken")
        g.set("key", "MY_RULES_CONFIG_VALUES")

        args, kwargs = mock_instance.put.call_args
        self.assertEqual("https://domain/api/v2/rules-configs/key", args[0])