This file is indexed.

/usr/lib/python3/dist-packages/magnumclient/tests/v1/test_mservices.py is in python3-magnumclient 2.8.0-0ubuntu1.

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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#    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 testtools
from testtools import matchers

from magnumclient.tests import utils
from magnumclient.v1 import mservices


SERVICE1 = {'id': 123,
            'host': 'fake-host1',
            'binary': 'fake-bin1',
            'state': 'up',
            }
SERVICE2 = {'id': 124,
            'host': 'fake-host2',
            'binary': 'fake-bin2',
            'state': 'down',
            }

fake_responses = {
    '/v1/mservices':
    {
        'GET': (
            {},
            {'mservices': [SERVICE1, SERVICE2]},
        ),
    },
    '/v1/mservices/?limit=2':
    {
        'GET': (
            {},
            {'mservices': [SERVICE1, SERVICE2]},
        ),
    },
    '/v1/mservices/?marker=%s' % SERVICE2['id']:
    {
        'GET': (
            {},
            {'mservices': [SERVICE1, SERVICE2]},
        ),
    },
    '/v1/mservices/?limit=2&marker=%s' % SERVICE2['id']:
    {
        'GET': (
            {},
            {'mservices': [SERVICE2, SERVICE1]},
        ),
    },
    '/v1/mservices/?sort_dir=asc':
    {
        'GET': (
            {},
            {'mservices': [SERVICE1, SERVICE2]},
        ),
    },
    '/v1/mservices/?sort_key=id':
    {
        'GET': (
            {},
            {'mservices': [SERVICE1, SERVICE2]},
        ),
    },
    '/v1/mservices/?sort_key=id&sort_dir=desc':
    {
        'GET': (
            {},
            {'mservices': [SERVICE2, SERVICE1]},
        ),
    },
}


class MServiceManagerTest(testtools.TestCase):

    def setUp(self):
        super(MServiceManagerTest, self).setUp()
        self.api = utils.FakeAPI(fake_responses)
        self.mgr = mservices.MServiceManager(self.api)

    def test_coe_service_list(self):
        mservices = self.mgr.list()
        expect = [
            ('GET', '/v1/mservices', {}, None),
        ]
        self.assertEqual(expect, self.api.calls)
        self.assertThat(mservices, matchers.HasLength(2))

    def _test_coe_service_list_with_filters(
            self, limit=None, marker=None,
            sort_key=None, sort_dir=None,
            detail=False, expect=[]):
        mservices_filter = self.mgr.list(limit=limit, marker=marker,
                                         sort_key=sort_key,
                                         sort_dir=sort_dir,
                                         detail=detail)
        self.assertEqual(expect, self.api.calls)
        self.assertThat(mservices_filter, matchers.HasLength(2))

    def test_coe_service_list_with_limit(self):
        expect = [
            ('GET', '/v1/mservices/?limit=2', {}, None),
        ]
        self._test_coe_service_list_with_filters(
            limit=2,
            expect=expect)

    def test_coe_service_list_with_marker(self):
        expect = [
            ('GET', '/v1/mservices/?marker=%s' % SERVICE2['id'],
             {}, None),
        ]
        self._test_coe_service_list_with_filters(
            marker=SERVICE2['id'],
            expect=expect)

    def test_coe_service_list_with_marker_limit(self):
        expect = [
            ('GET', '/v1/mservices/?limit=2&marker=%s' % SERVICE2['id'],
             {}, None),
        ]
        self._test_coe_service_list_with_filters(
            limit=2, marker=SERVICE2['id'],
            expect=expect)

    def test_coe_service_list_with_sort_dir(self):
        expect = [
            ('GET', '/v1/mservices/?sort_dir=asc',
             {}, None),
        ]
        self._test_coe_service_list_with_filters(
            sort_dir='asc',
            expect=expect)

    def test_coe_service_list_with_sort_key(self):
        expect = [
            ('GET', '/v1/mservices/?sort_key=id',
             {}, None),
        ]
        self._test_coe_service_list_with_filters(
            sort_key='id',
            expect=expect)

    def test_coe_service_list_with_sort_key_dir(self):
        expect = [
            ('GET', '/v1/mservices/?sort_key=id&sort_dir=desc',
             {}, None),
        ]
        self._test_coe_service_list_with_filters(
            sort_key='id', sort_dir='desc',
            expect=expect)