This file is indexed.

/usr/lib/python2.7/dist-packages/osc_lib/tests/utils/test_columns.py is in python-osc-lib 1.9.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
#   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 osc_lib.tests import utils as test_utils
from osc_lib.utils import columns as column_utils


class TestColumnUtils(test_utils.TestCase):

    def test_get_column_definitions(self):
        attr_map = (
            ('id', 'ID', column_utils.LIST_BOTH),
            ('tenant_id', 'Project', column_utils.LIST_LONG_ONLY),
            ('name', 'Name', column_utils.LIST_BOTH),
            ('summary', 'Summary', column_utils.LIST_SHORT_ONLY),
        )
        headers, columns = column_utils.get_column_definitions(
            attr_map, long_listing=False)
        self.assertEqual(['id', 'name', 'summary'], columns)
        self.assertEqual(['ID', 'Name', 'Summary'], headers)

    def test_get_column_definitions_long(self):
        attr_map = (
            ('id', 'ID', column_utils.LIST_BOTH),
            ('tenant_id', 'Project', column_utils.LIST_LONG_ONLY),
            ('name', 'Name', column_utils.LIST_BOTH),
            ('summary', 'Summary', column_utils.LIST_SHORT_ONLY),
        )
        headers, columns = column_utils.get_column_definitions(
            attr_map, long_listing=True)
        self.assertEqual(['id', 'tenant_id', 'name'], columns)
        self.assertEqual(['ID', 'Project', 'Name'], headers)

    def test_get_columns(self):
        item = {
            'id': 'test-id',
            'tenant_id': 'test-tenant_id',
            # 'name' is not included
            'foo': 'bar',  # unknown attribute
        }
        attr_map = (
            ('id', 'ID', column_utils.LIST_BOTH),
            ('tenant_id', 'Project', column_utils.LIST_LONG_ONLY),
            ('name', 'Name', column_utils.LIST_BOTH),
        )
        columns, display_names = column_utils.get_columns(item, attr_map)
        self.assertEqual(tuple(['id', 'tenant_id', 'foo']), columns)
        self.assertEqual(tuple(['ID', 'Project', 'foo']), display_names)