Merge "Third patch for volume support."
[snaps.git] / snaps / domain / test / keypair_tests.py
1 # Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
2 #                    and others.  All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 import unittest
17 from snaps.domain.keypair import Keypair
18
19
20 class KeypairDomainObjectTests(unittest.TestCase):
21     """
22     Tests the construction of the snaps.domain.test.Keypair class
23     """
24
25     def test_construction_positional(self):
26         keypair = Keypair('foo', '123-456', 'foo-bar', '01:02:03')
27         self.assertEqual('foo', keypair.name)
28         self.assertEqual('123-456', keypair.id)
29         self.assertEqual('foo-bar', keypair.public_key)
30         self.assertEqual('01:02:03', keypair.fingerprint)
31
32     def test_construction_named(self):
33         keypair = Keypair(fingerprint='01:02:03', public_key='foo-bar',
34                           kp_id='123-456', name='foo')
35         self.assertEqual('foo', keypair.name)
36         self.assertEqual('123-456', keypair.id)
37         self.assertEqual('foo-bar', keypair.public_key)
38         self.assertEqual('01:02:03', keypair.fingerprint)