This file is indexed.

/usr/lib/python2.7/dist-packages/neutron_lbaas/tests/tempest/v2/ddt/test_health_monitor_admin_state_up.py is in python-neutron-lbaas 1:9.1.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Copyright 2015 Hewlett-Packard Development Company, L.P.
#
#    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.

from tempest import config
from tempest.lib import decorators
import testscenarios

from neutron_lbaas.tests.tempest.v2.ddt import base_ddt

CONF = config.CONF

scenario_lb_T = ('lb_T', {'lb_flag': True})
scenario_lb_F = ('lb_F', {'lb_flag': False})

scenario_listener_T = ('listener_T', {'listener_flag': True})
scenario_listener_F = ('listener_F', {'listener_flag': False})

scenario_pool_T = ('pool_T', {'pool_flag': True})
scenario_pool_F = ('pool_F', {'pool_flag': False})

scenario_healthmonitor_T = ('healthmonitor_T', {'healthmonitor_flag': True})
scenario_healthmonitor_F = ('healthmonitor_F', {'healthmonitor_flag': False})

scenario_healthmonitor_to_flag_T = ('healthmonitor_to_flag_T', {
    'healthmonitor_to_flag': True})
scenario_healthmonitor_to_flag_F = ('healthmonitor_to_flag_F', {
    'healthmonitor_to_flag': False})

# The following command creates 16 unique scenarios
scenario_create_health_monitor = testscenarios.multiply_scenarios(
    [scenario_lb_T, scenario_lb_F],
    [scenario_listener_T, scenario_listener_F],
    [scenario_pool_T, scenario_pool_F],
    [scenario_healthmonitor_T, scenario_healthmonitor_F])

# The following command creates 32 unique scenarios
scenario_update_health_monitor = testscenarios.multiply_scenarios(
    [scenario_healthmonitor_to_flag_T, scenario_healthmonitor_to_flag_F],
    scenario_create_health_monitor)


class BaseHealthMonitorAdminStateTest(base_ddt.AdminStateTests):
    @classmethod
    def resource_setup(cls):
        super(BaseHealthMonitorAdminStateTest, cls).resource_setup()

    @classmethod
    def resource_cleanup(cls):
        super(BaseHealthMonitorAdminStateTest, cls).resource_cleanup()

    def setUp(self):
        """Set up resources.

        Including :load balancer, listener, and pool and
        health_monitor with scenarios.
        """
        super(BaseHealthMonitorAdminStateTest, self).setUp()
        self.resource_setup_load_balancer(self.lb_flag)
        self.resource_setup_listener(self.listener_flag)
        self.resource_setup_pool(self.pool_flag)
        self.resource_set_health_monitor(self.healthmonitor_flag)

    def tearDown(self):
        """Clean up health monitor, pools, listener and lb."""
        self._delete_health_monitor(self.health_monitor.get('id'))
        self._delete_pool(self.pool.get('id'))
        self._delete_listener(self.listener.get('id'))
        self._delete_load_balancer(self.load_balancer.get('id'))
        super(BaseHealthMonitorAdminStateTest, self).tearDown()

    @classmethod
    def resource_setup_listener(cls, admin_state_up_flag):
        """Set up resources for listener."""
        (super(BaseHealthMonitorAdminStateTest, cls).
         resource_setup_listener(admin_state_up_flag))

    @classmethod
    def resource_setup_pool(cls, admin_state_up_flag):
        """Set up resources for pool."""
        (super(BaseHealthMonitorAdminStateTest, cls).
         resource_setup_pool(admin_state_up_flag))

    @classmethod
    def resource_setup_load_balancer(cls, admin_state_up_flag):
        """Set up resources for load balancer."""
        (super(BaseHealthMonitorAdminStateTest, cls).
         resource_setup_load_balancer(admin_state_up_flag))


class CreateHealthMonitorAdminStateTest(BaseHealthMonitorAdminStateTest):
    scenarios = scenario_create_health_monitor

    """
    Tests the following operations in the Neutron-LBaaS API using the
    REST client for health monitor with testscenarios, the goal is to test
    the various admin_state_up boolean combinations and their expected
    operating_status and provision_status results from the status tree.

        create healthmonitor
    """

    # @decorators.skip_because(bug="1449775")
    def test_create_health_monitor_with_scenarios(self):
        """Test creating healthmonitor with 16 scenarios.

        Compare the status tree before and after setting up admin_state_up flag
        for health monitor.
        """
        self.check_operating_status()


class UpdateHealthMonitorAdminStateTest(BaseHealthMonitorAdminStateTest):
    scenarios = scenario_update_health_monitor

    """
    Tests the following operations in the Neutron-LBaaS API using the
    REST client for health monitor with testscenarios, the goal is to test
    the various admin_state_up boolean combinations and their expected
    operating_status and provision_status results from the status tree.

        update healthmonitor
    """

    @decorators.skip_because(bug="1449775")
    def test_update_health_monitor_with_admin_state_up(self):
        """Test update a monitor.
        Compare the status tree before and after setting the admin_state_up
        flag for health_monitor.

        """
        self.create_health_monitor_kwargs = {
            'admin_state_up': self.healthmonitor_to_flag}
        self.health_monitor = self._update_health_monitor(
            self.health_monitor_id, **self.create_health_monitor_kwargs)
        self.check_operating_status()