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

« back to all changes in this revision

Viewing changes to ceilometer/tests/network/statistics/test_table.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
#
 
2
# Copyright 2014 NEC Corporation.  All rights reserved.
 
3
#
 
4
# Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
# not use this file except in compliance with the License. You may obtain
 
6
# 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, WITHOUT
 
12
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
# License for the specific language governing permissions and limitations
 
14
# under the License.
 
15
 
 
16
from ceilometer.network.statistics import table
 
17
from ceilometer import sample
 
18
from ceilometer.tests.network import statistics
 
19
 
 
20
 
 
21
class TestTablePollsters(statistics._PollsterTestBase):
 
22
 
 
23
    def test_table_pollster(self):
 
24
        self._test_pollster(
 
25
            table.TablePollster,
 
26
            'switch.table',
 
27
            sample.TYPE_GAUGE,
 
28
            'table')
 
29
 
 
30
    def test_table_pollster_active_entries(self):
 
31
        self._test_pollster(
 
32
            table.TablePollsterActiveEntries,
 
33
            'switch.table.active.entries',
 
34
            sample.TYPE_GAUGE,
 
35
            'entry')
 
36
 
 
37
    def test_table_pollster_lookup_packets(self):
 
38
        self._test_pollster(
 
39
            table.TablePollsterLookupPackets,
 
40
            'switch.table.lookup.packets',
 
41
            sample.TYPE_GAUGE,
 
42
            'packet')
 
43
 
 
44
    def test_table_pollster_matched_packets(self):
 
45
        self._test_pollster(
 
46
            table.TablePollsterMatchedPackets,
 
47
            'switch.table.matched.packets',
 
48
            sample.TYPE_GAUGE,
 
49
            'packet')