summaryrefslogtreecommitdiffstats
path: root/snaps/domain/test/volume_tests.py
blob: ec5f7b7ef982300f19960356f6ba35332670b0f6 (plain)
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
# Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
#                    and others.  All rights reserved.
#
# 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.

import unittest
from snaps.domain.volume import QoSSpec, VolumeType, VolumeTypeEncryption


class VolumeTypeDomainObjectTests(unittest.TestCase):
    """
    Tests the construction of the snaps.domain.volume.VolumeType class
    """

    def test_construction_positional(self):
        encryption = VolumeTypeEncryption(
            'id-encrypt1', 'id-vol-type1', 'loc1', 'provider1', 'cipher1', 99)
        qos_spec = QoSSpec('name', 'id', 'consumer')

        volume_type = VolumeType('name', 'id', True, encryption, qos_spec)
        self.assertEqual('name', volume_type.name)
        self.assertEqual('id', volume_type.id)
        self.assertTrue(volume_type.public)
        self.assertEqual(encryption, volume_type.encryption)
        self.assertEqual(qos_spec, volume_type.qos_spec)

    def test_construction_named(self):
        encryption = VolumeTypeEncryption(
            'id-encrypt1', 'id-vol-type1', 'loc1', 'provider1', 'cipher1', 99)
        qos_spec = QoSSpec('name', 'id', 'consumer')

        volume_type = VolumeType(
            qos_spec=qos_spec, encryption=encryption, volume_type_id='id',
            name='name', public='true')
        self.assertEqual('name', volume_type.name)
        self.assertEqual('id', volume_type.id)
        self.assertTrue(volume_type.public)
        self.assertEqual(encryption, volume_type.encryption)
        self.assertEqual(qos_spec, volume_type.qos_spec)


class VolumeTypeEncryptionObjectTests(unittest.TestCase):
    """
    Tests the construction of the snaps.domain.volume.VolumeTypeEncryption
    class
    """

    def test_construction_positional(self):
        encryption = VolumeTypeEncryption(
            'id-encrypt1', 'id-vol-type1', 'loc1', 'provider1', 'cipher1', 99)
        self.assertEqual('id-encrypt1', encryption.id)
        self.assertEqual('id-vol-type1', encryption.volume_type_id)
        self.assertEqual('loc1', encryption.control_location)
        self.assertEqual('provider1', encryption.provider)
        self.assertEqual('cipher1', encryption.cipher)
        self.assertEqual(99, encryption.key_size)

    def test_construction_named(self):
        encryption = VolumeTypeEncryption(
            key_size=89, cipher='cipher2', provider='provider2',
            control_location='loc2', volume_type_id='id-vol-type2',
            volume_encryption_id='id-encrypt2')
        self.assertEqual('id-encrypt2', encryption.id)
        self.assertEqual('id-vol-type2', encryption.volume_type_id)
        self.assertEqual('loc2', encryption.control_location)
        self.assertEqual('provider2', encryption.provider)
        self.assertEqual('cipher2', encryption.cipher)
        self.assertEqual(89, encryption.key_size)


class QoSSpecDomainObjectTests(unittest.TestCase):
    """
    Tests the construction of the snaps.domain.volume.QoSSpec class
    """

    def test_construction_positional(self):
        qos_spec = QoSSpec('name', 'id', 'consumer')
        self.assertEqual('name', qos_spec.name)
        self.assertEqual('id', qos_spec.id)
        self.assertEqual('consumer', qos_spec.consumer)

    def test_construction_named(self):
        qos_spec = QoSSpec(consumer='consumer', spec_id='id', name='name')
        self.assertEqual('name', qos_spec.name)
        self.assertEqual('id', qos_spec.id)
        self.assertEqual('consumer', qos_spec.consumer)