forked from GoogleCloudPlatform/PerfKitBenchmarker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtual_machine_test.py
89 lines (69 loc) · 3.11 KB
/
virtual_machine_test.py
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
# Copyright 2015 PerfKitBenchmarker Authors. 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.
"""Tests for perfkitbenchmarker.virtual_machine."""
import unittest
from perfkitbenchmarker import errors
from perfkitbenchmarker import virtual_machine
from perfkitbenchmarker.configs import option_decoders
_COMPONENT = 'test_component'
class TestVmSpec(virtual_machine.BaseVmSpec):
CLOUD = 'test_cloud'
@classmethod
def _GetOptionDecoderConstructions(cls):
result = super(TestVmSpec, cls)._GetOptionDecoderConstructions()
result['required_string'] = (option_decoders.StringDecoder, {})
result['required_int'] = (option_decoders.IntDecoder, {})
return result
class BaseVmSpecTestCase(unittest.TestCase):
def testDefaults(self):
spec = virtual_machine.BaseVmSpec(_COMPONENT)
self.assertEqual(spec.image, None)
self.assertEqual(spec.install_packages, True)
self.assertEqual(spec.machine_type, None)
self.assertEqual(spec.zone, None)
def testProvidedValid(self):
spec = virtual_machine.BaseVmSpec(
_COMPONENT, image='test_image', install_packages=False,
machine_type='test_machine_type', zone='test_zone')
self.assertEqual(spec.image, 'test_image')
self.assertEqual(spec.install_packages, False)
self.assertEqual(spec.machine_type, 'test_machine_type')
self.assertEqual(spec.zone, 'test_zone')
def testUnrecognizedOptions(self):
with self.assertRaises(errors.Config.UnrecognizedOption) as cm:
virtual_machine.BaseVmSpec(_COMPONENT, color='red', flavor='cherry',
texture=None)
self.assertEqual(str(cm.exception), (
'Unrecognized options were found in test_component: color, flavor, '
'texture.'))
def testMissingOptions(self):
with self.assertRaises(errors.Config.MissingOption) as cm:
TestVmSpec(_COMPONENT)
self.assertEqual(str(cm.exception), (
'Required options were missing from test_component: required_int, '
'required_string.'))
def testInvalidImage(self):
with self.assertRaises(errors.Config.InvalidValue):
virtual_machine.BaseVmSpec(_COMPONENT, image=0)
def testInvalidInstallPackages(self):
with self.assertRaises(errors.Config.InvalidValue):
virtual_machine.BaseVmSpec(_COMPONENT, install_packages='yes')
def testInvalidMachineType(self):
with self.assertRaises(errors.Config.InvalidValue):
virtual_machine.BaseVmSpec(_COMPONENT, machine_type=True)
def testInvalidZone(self):
with self.assertRaises(errors.Config.InvalidValue):
virtual_machine.BaseVmSpec(_COMPONENT, zone=0)
if __name__ == '__main__':
unittest.main()