~ubuntu-branches/ubuntu/vivid/ceilometer/vivid

« back to all changes in this revision

Viewing changes to ceilometer/tests/hardware/inspector/test_inspector.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-03-06 14:44:28 UTC
  • mto: (28.1.1 utopic-proposed) (1.2.1)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: package-import@ubuntu.com-20140306144428-rvphsh4igwyulzf0
Tags: upstream-2014.1~b3
Import upstream version 2014.1~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
#
 
3
# Copyright © 2014 Intel Corp
 
4
#
 
5
# Authors: Lianhao Lu <lianhao.lu@intel.com>
 
6
#
 
7
# Licensed under the Apache License, Version 2.0 (the "License"); you may
 
8
# not use this file except in compliance with the License. You may obtain
 
9
# a copy of the License at
 
10
#
 
11
#      http://www.apache.org/licenses/LICENSE-2.0
 
12
#
 
13
# Unless required by applicable law or agreed to in writing, software
 
14
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
15
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
16
# License for the specific language governing permissions and limitations
 
17
# under the License.
 
18
 
 
19
from ceilometer.hardware import inspector
 
20
from ceilometer.openstack.common import network_utils
 
21
from ceilometer.tests import base
 
22
 
 
23
 
 
24
class TestHardwareInspector(base.BaseTestCase):
 
25
    def test_get_inspector(self):
 
26
        url = network_utils.urlsplit("snmp://")
 
27
        driver = inspector.get_inspector(url)
 
28
        self.assertTrue(driver)
 
29
 
 
30
    def test_get_inspector_illegal(self):
 
31
        url = network_utils.urlsplit("illegal://")
 
32
        self.assertRaises(RuntimeError,
 
33
                          inspector.get_inspector,
 
34
                          url)