File: test_models_fields.py

package info (click to toggle)
ansible-tower-cli 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,484 kB
  • sloc: python: 10,467; sh: 183; makefile: 76
file content (174 lines) | stat: -rw-r--r-- 5,978 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
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
168
169
170
171
172
173
174
# Copyright 2015, Ansible, Inc.
# Luke Sneeringer <lsneeringer@ansible.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from tower_cli import models

from tests.compat import unittest, mock


class FieldTests(unittest.TestCase):
    """A set of tests to establish that the base Field class works in the
    way we expect.
    """
    def test_dunder_lt(self):
        """Establish that the `__lt__` comparison method on fields works
        as expected.
        """
        f1 = models.Field()
        f2 = models.Field()
        self.assertTrue(f1 < f2)

    def test_dunder_gt(self):
        """Establish that the `__gt__` comparison method on fields works
        in the way we expect.
        """
        f1 = models.Field()
        f2 = models.Field()
        self.assertTrue(f2 > f1)

    def test_help_property_explicit(self):
        """Establish that an explicitly provided help text is preserved
        as the field's help.
        """
        f1 = models.Field(help_text='foo bar baz')
        self.assertEqual(f1.help, 'foo bar baz')

    def test_help_property_implicit(self):
        """Establish that a sane implicit help text is provided if none is
        specified.
        """
        f1 = models.Field()
        f1.name = 'f1'
        self.assertEqual(f1.help, 'The f1 field.')

    def test_flags_standard(self):
        """Establish that the `flags` property returns what I expect for a
        run-of-the-mill field.
        """
        f1 = models.Field()
        self.assertEqual(f1.flags, ['str'])

    def test_flags_unique_unfilterable(self):
        """Establish that the `flags` property successfully flags unfilterable
        and unique flags.
        """
        f1 = models.Field(unique=True, filterable=False)
        self.assertIn('unique', f1.flags)
        self.assertIn('not filterable', f1.flags)

    def test_flags_read_only(self):
        """Establish that the `flags` property successfully flags read-only
        flags.
        """
        f = models.Field(read_only=True)
        self.assertEqual(f.flags, ['str', 'read-only'])

    def test_flags_not_required(self):
        """Establish that the `flags` property successfully flags a
        not-required field.
        """
        f = models.Field(type=int, required=False)
        self.assertEqual(f.flags, ['int', 'not required'])

    def test_flags_type(self):
        """Establish that the flags property successfully shows the correct
        type name.
        """
        f = models.Field(type=bool)
        self.assertEqual(f.flags, ['bool'])


class ManyToManyFieldTests(unittest.TestCase):
    """
    Core functionality tests for the ManyToManyField
    """
    maxDiff = None

    def test_method_name(self):
        f = models.ManyToManyField('user', relationship='auditors', res_name='organization')
        self.assertEqual(f.associate_method_name, 'associate_auditor')
        self.assertEqual(f.disassociate_method_name, 'disassociate_auditor')

    def test_configure_model(self):
        f = models.ManyToManyField('user')
        self.assertEqual(f.res_name, None)
        self.assertEqual(f.relationship, None)
        f.configure_model({'endpoint': '/organizations/'}, 'auditors')
        self.assertEqual(f.res_name, 'organization')
        self.assertEqual(f.relationship, 'auditors')

    def test_associate_method(self):
        f = models.ManyToManyField('user', res_name='organization', relationship='admins')
        method = f.associate_method

        class Resource:
            def _assoc(self):
                pass

        res = Resource()
        with mock.patch.object(res, '_assoc') as mock_assoc:
            method(res, organization=1, user=2)
            mock_assoc.assert_called_once_with('admins', 1, 2)

    def test_disassociate_method(self):
        f = models.ManyToManyField('user', res_name='organization', relationship='admins')
        method = f.disassociate_method

        class Resource:
            def _disassoc(self):
                pass

        res = Resource()
        with mock.patch.object(res, '_disassoc') as mock_disassoc:
            method(res, organization=1, user=2)
            mock_disassoc.assert_called_once_with('admins', 1, 2)

    def test_resource_configuration(self):
        f = models.ManyToManyField('user')

        class Foo(models.BaseResource):
            admins = f
            endpoint = '/foos/'

        self.assertEqual(Foo.m2m_fields, [f])
        self.assertTrue(hasattr(Foo, 'associate_admin'))
        self.assertTrue(hasattr(Foo, 'disassociate_admin'))

    def test_method_docs(self):
        f = models.ManyToManyField('user')

        class Foo(models.BaseResource):
            admins = f
            endpoint = '/foos/'

        expect_text = """Associate an admin with this foo.

        =====API DOCS=====
        Associate an admin with this foo.

        :param foo: Primary key or name of the foo to associate to.
        :type foo: str
        :param user: Primary key or name of the user to be associated.
        :type user: str
        :returns: Dictionary of only one key "changed", which indicates whether the associate succeeded.
        :rtype: dict

        =====API DOCS=====
        """.strip(' ')

        self.assertEqual(Foo.associate_admin.__doc__.strip(' '), expect_text)
        self.assertEqual(Foo.disassociate_admin.__doc__.strip(' '), expect_text.replace(
            'associate', 'disassociate').replace('Associate', 'Disassociate')
        )