This file is indexed.

/usr/lib/python2.7/dist-packages/openpyxl/utils/tests/test_units.py is in python-openpyxl 2.3.0-1.

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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import pytest

from .. import units


@pytest.mark.parametrize("value, expected",
                         [
                             (-120, -0.08333333333333334),
                             (0, 0),
                             (240, 0.16666666666666669),
                             (1440, 1),
                             (5000, 3.4722222222222223)
                         ]
                         )
def test_dxa_to_inch(value, expected):
    FUT = units.dxa_to_inch
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -14400),
                             (0, 0),
                             (1, 1440),
                             (2.37, 3412),
                             (9, 12960),
                         ]
                         )
def test_inch_to_dxa(value, expected):
    FUT =  units.inch_to_dxa
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-120, -0.2116666666666667),
                             (0, 0),
                             (240, 0.4233333333333334),
                             (1440, 2.54),
                             (5000,  8.819444444444445)
                         ]
                         )
def test_dxa_to_cm(value, expected):
    FUT =  units.dxa_to_cm
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -5669),
                             (0, 0),
                             (1, 566),
                             (10.0, 5669),
                             (1000, 566929),
                         ]
                         )
def test_cm_to_dxa(value, expected):
    FUT =  units.cm_to_dxa
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -95250),
                             (0, 0),
                             (1, 9525),
                             (10.0, 95250),
                             (1000, 9525000),
                         ]
                         )
def test_pixels_to_EMU(value, expected):
    FUT = units.pixels_to_EMU
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                            (0, 0),
                            (1000, 0),
                            (5000, 1),
                            (9525, 1),
                         ]
                         )
def test_EMU_to_pixels(value, expected):
    FUT = units.EMU_to_pixels
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-100000, -0.2778),
                             (0, 0),
                             (200000, 0.5556),
                             (360000, 1),
                            (500000, 1.3889),
                         ]
                         )
def test_EMU_to_cm(value, expected):
    FUT = units.EMU_to_cm
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -3600000),
                             (0, 0),
                             (1, 360000),
                             (3.23, 1162800),
                         ]
                         )
def test_cm_to_EMU(value, expected):
    FUT = units.cm_to_EMU
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-100000, -0.1094),
                             (0, 0),
                             (200000, 0.2187),
                             (914400, 1),
                            (500000, 0.5468),
                         ]
                         )
def test_EMU_to_inch(value, expected):
    FUT = units.EMU_to_inch
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -9144000),
                             (0, 0),
                             (1, 914400),
                             (3.23, 2953512),
                         ]
                         )
def test_inch_to_EMU(value, expected):
    FUT = units.inch_to_EMU
    assert FUT(value) == expected



@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -7.5),
                             (0, 0),
                             (1, 0.75),
                             (96, 72),
                             (144, 108),
                         ]
                         )
def test_pixels_to_points(value, expected):
    FUT = units.pixels_to_points
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -13),
                             (0, 0),
                             (1, 2),
                             (10.0, 14),
                             (72, 96),
                         ]
                         )
def test_points_to_pixels(value, expected):
    FUT = units.points_to_pixels
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, -600000),
                             (0, 0),
                             (1, 60000),
                             (10.0, 600000),
                             (1000, 60000000),
                         ]
                         )
def test_degrees_to_angle(value, expected):
    FUT = units.degrees_to_angle
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             (-10, 0),
                             (0, 0),
                             (10, 0),
                             (50000, 0.83),
                             (60000, 1),
                         ]
                         )
def test_angle_to_degrees(value, expected):
    FUT = units.angle_to_degrees
    assert FUT(value) == expected


@pytest.mark.parametrize("value, expected",
                         [
                             ("#FFFFF", "#FFFFF"),
                             ('FF000000', "000000"),
                             ('FFFF0000', "FF0000"),
                             ('FF800000', "800000"),
                             ('FFFFFF00', "FFFF00"),
                             ('FF808000', "808000"),
                         ]
                         )
def test_short_color(value, expected):
    FUT = units.short_color
    assert FUT(value) == expected