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
|
# Copyright 2015 IBM Corp.
#
# 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 datetime
import pytz
import pypowervm.tests.test_utils.test_wrapper_abc as twrap
from pypowervm.wrappers import monitor
_DATETIME_FORMAT = '%Y-%m-%dT%H:%M:%S.%f%Z'
class TestPCM(twrap.TestWrapper):
file = 'pcm_pref.txt'
wrapper_class_to_test = monitor.PcmPref
def test_pcm(self):
pcm_wrap = self.entries[0]
self.assertEqual('dev-system-6', pcm_wrap.system_name)
# Test enable getters when all are loaded and False
self.assertFalse(pcm_wrap.ltm_enabled)
self.assertFalse(pcm_wrap.aggregation_enabled)
self.assertFalse(pcm_wrap.stm_enabled)
self.assertFalse(pcm_wrap.compute_ltm_enabled)
# Set all to True and test.
pcm_wrap.ltm_enabled = True
self.assertTrue(pcm_wrap.ltm_enabled)
pcm_wrap.aggregation_enabled = True
self.assertTrue(pcm_wrap.aggregation_enabled)
pcm_wrap.stm_enabled = True
self.assertTrue(pcm_wrap.stm_enabled)
pcm_wrap.compute_ltm_enabled = True
self.assertTrue(pcm_wrap.compute_ltm_enabled)
def test_str_to_datetime(self):
expected = datetime.datetime(
year=2015, month=4, day=30, hour=6, minute=11,
second=35).replace(tzinfo=pytz.utc)
func = monitor.MonitorMetrics._str_to_datetime
self.assertEqual(expected, func('2015-04-30T11:11:35.000-05:00'))
self.assertEqual(expected, func('2015-04-30T01:11:35.000+05:00'))
self.assertEqual(expected, func('2015-04-30T06:11:35.000-00:00'))
self.assertEqual(expected, func('2015-04-30T06:11:35.000Z'))
class TestLTMMetrics(twrap.TestWrapper):
file = 'ltm_feed.txt'
wrapper_class_to_test = monitor.LTMMetrics
def test_ltm_metrics(self):
link = ('https://9.1.2.3:12443/rest/api/pcm/ManagedSystem/98498bed'
'-c78a-3a4f-b90a-4b715418fcb6/RawMetrics/LongTermMonitor/L'
'TM_8247-22L*1111111_vios_2_20150430T035300+0000.json')
wrap = self.entries[0]
self.assertEqual('15161241-b72f-41d5-8154-557ff699fb75', wrap.id)
self.assertEqual('2015-04-30T03:53:00.000Z', wrap.published)
self.assertEqual(
'LTM_8247-22L*1111111_vios_2_20150430T035300+0000.json',
wrap.title)
self.assertEqual('2015-04-30T03:53:00.000Z', wrap.updated)
self.assertEqual('vios_2', wrap.category)
self.assertEqual(link, wrap.link)
# Test wrapping just one entry and we should get the same data
wrap = monitor.LTMMetrics.wrap(self.entries[0].entry)
self.assertEqual(link, wrap.link)
class TestSTMMetrics(twrap.TestWrapper):
file = 'stm_feed.txt'
wrapper_class_to_test = monitor.STMMetrics
def test_stm_metrics(self):
link = ('https://9.1.2.3:12443/rest/api/pcm/ManagedSystem/98498bed'
'-c78a-3a4f-b90a-4b715418fcb6/RawMetrics/ShortTermMonitor/'
'STM_8247-22L*1111111_phyp_20150430T061135+0000.json')
wrap = self.entries[0]
self.assertEqual('28cb2328-ca14-48ef-a3bd-691debef53dd', wrap.id)
self.assertEqual('2015-04-30T06:11:35.000-05:00', wrap.published)
self.assertEqual('2015-04-30T01:11:35.000000UTC',
wrap.published_datetime.strftime(_DATETIME_FORMAT))
self.assertEqual(
'STM_8247-22L*1111111_phyp_20150430T061135+0000.json',
wrap.title)
self.assertEqual('2015-04-30T06:11:35.002Z', wrap.updated)
self.assertEqual('2015-04-30T06:11:35.002000UTC',
wrap.updated_datetime.strftime(_DATETIME_FORMAT))
self.assertEqual('phyp', wrap.category)
self.assertEqual(link, wrap.link)
# Test wrapping just one entry and we should get the same data
wrap = monitor.STMMetrics.wrap(self.entries[0].entry)
self.assertEqual(link, wrap.link)
|