This file is indexed.

/usr/lib/python3/dist-packages/pyutilib/excel/tests/test_data.py is in python3-pyutilib 5.3.5-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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#
# Unit Tests for util/data
#
#

import os
from os.path import abspath, dirname, join
pkgdir = dirname(abspath(__file__))

import pyutilib.th as unittest
import pyutilib.excel

try:
    unicode
except:
    def unicode(x):
        return x

try:
    from win32com.client.dynamic import Dispatch
    _win32com_available=True
except:
    _win32com_available=False #pragma:nocover
try:
    import xlrd
    _xlrd_available=True
except:
    _xlrd_available=False
try:
    import openpyxl
    _openpyxl_available=True
except:
    _openpyxl_available=False


class BaseTests(object):

    def test_spreadsheet1(self):
        """ Create a spreadsheet with a constructor """
        sheet = pyutilib.excel.ExcelSpreadsheet(join(pkgdir,"test_data"+self.suffix), ctype=self.ctype)
        tmp = sheet.get_range("Arange")

        self.assertEqual(tmp,['A1','A2','A3'])
        del sheet

    def test_spreadsheet2(self):
        """ Create and open spreadsheet """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        tmp = sheet.get_range("Arange")
        self.assertEqual(tmp,['A1','A2','A3'])
        tmp = sheet.get_range_nrows("Arange")
        self.assertEqual(tmp,3)
        tmp = sheet.get_range_ncolumns("Arange")
        self.assertEqual(tmp,1)

    def test_spreadsheet3(self):
        """ Create and open spreadsheet in the test dir"""
        os.chdir(pkgdir)
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        sheet.open("test_data"+self.suffix)
        tmp = sheet.get_range("Arange")
        self.assertEqual(tmp,['A1','A2','A3'])
        try:
            tmp = sheet.get_range("Brange")
            self.fail("test_spreadsheet3 - should not have opened range")
        except IOError:
            pass

    def test_spreadsheet4(self):
        """ Create and delete spreadsheet without opening it """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        sheet.close()

    def test_spreadsheet5(self):
        """ Create and open spreadsheet """
        s1 = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        s1.open(join(pkgdir,"test_data"+self.suffix))
        tmp = s1.get_range("Arange")
        self.assertEqual(tmp,['A1','A2','A3'])

    def test_spreadsheet6(self):
        """ Create and open spreadsheet """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_write():
            self.skipTest("Writing not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        val = (('B1',),('B2',),('B3',))
        sheet.set_range("Arange",val)
        tmp = sheet.get_range("Arange")
        self.assertEqual(tmp,['B1','B2','B3'])

    def test_spreadsheet7(self):
        """ Create and open spreadsheet """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_write():
            self.skipTest("Writing not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        val = [['B1'],['B2'],['B3']]
        sheet.set_range("Arange",val)
        tmp = sheet.get_range("Arange")
        self.assertEqual(tmp,['B1','B2','B3'])
        val = [['B1'],['B2'],['B3'],['B4']]
        try:
            sheet.set_range("Arange",val)
            self.fail("expected error")
        except IOError:
            pass

    def test_spreadsheet8(self):
        """ Create and open spreadsheet """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_write():
            self.skipTest("Writing not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        val = [['B1','C1'],['B2','C1'],['B3','C1']]
        sheet.set_array(3,4,val)
        val = sheet.get_array(4,4,5,5)
        self.assertEqual(val,[[unicode('B2'), unicode('C1')], [unicode('B3'), unicode('C1')]])

    def test_spreadsheet9(self):
        """ Create and open spreadsheet """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_write():
            self.skipTest("Writing not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        val = (('B1','C1'),('B2','C1'),('B3','C1'))
        sheet.set_array(3,4,val)
        val = sheet.get_array(4,4,5,5)
        self.assertEqual(val,[[unicode('B2'), unicode('C1')], [unicode('B3'), unicode('C1')]])

    def test_spreadsheet10(self):
        """ Verify that we can get updated function values """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_calculate():
            self.skipTest("Calculation not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        sheet.set_range("x", 2.0)
        val = sheet.get_range("x")
        self.assertEqual(val,2.0)
        val = sheet.get_range("xSquared")
        self.assertEqual(val,16.0)
        sheet.calculate()
        val = sheet.get_range("xSquared")
        self.assertEqual(val,4.0)
        sheet.set_range("x", 4.0)
        sheet.close()

    def test_spreadsheet11(self):
        """ Verify that we can activate a spreadsheet """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_write():
            self.skipTest("Writing not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        sheet.activate("Sheet2")
        val = sheet.get_range("sInfo")
        self.assertEqual(val,["s1","s2","s3"])
        val = sheet.get_range("A2:A2")
        self.assertEqual(val,"s1")
        sheet.close()

    def test_calc_iterations(self):
        """ Verify that iterations can be set """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_calculate():
            self.skipTest("Calculation not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        tmp = sheet.calc_iterations()
        sheet.calc_iterations(not tmp)
        ttmp = sheet.calc_iterations()
        if tmp is ttmp:
            self.fail("Tried to set calc_iterations to a different value")
        try:
            sheet.calc_iterations(1)
            self.fail("Expected error setting an integer for calc_iterations")
        except ValueError:
            pass
        sheet.close()

    def test_max_iterations(self):
        """ Verify that max iterations can be set """
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        if not sheet.can_calculate():
            self.skipTest("Calculation not supported")
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        tmp = sheet.max_iterations()
        sheet.max_iterations(max(tmp+1,0))
        ttmp = sheet.calc_iterations()
        if tmp is ttmp:
            self.fail("Tried to set max_iterations to a different value")
        try:
            sheet.max_iterations(-1)
            self.fail("Expected error setting a negative integer for max_iterations")
        except ValueError:
            pass
        sheet.close()

    def Xtest_get_column(self):
        """ Verify that we can get a column"""
        sheet = pyutilib.excel.ExcelSpreadsheet(ctype=self.ctype)
        sheet.open(join(pkgdir,"test_data"+self.suffix))
        val = sheet.get_column("E")
        self.assertEqual(val,(1.0,2.0,None,4.0,5.0))
        val = sheet.get_column("F",contiguous=True)
        self.assertEqual(val,(1.0,2.0,3.0))
        val = sheet.get_column("G")
        self.assertEqual(val,(1.0,2.0,3.0,4.0,None,6.0))
        val = sheet.get_column("G",contiguous=True)
        self.assertEqual(val,(1.0,2.0,3.0,4.0))
        sheet.close()

    def Xtest_range1(self):
        """ Verify that getting range will fail if the worksheets are not setup """
        sheet = pyutilib.excel.ExcelSpreadsheet(join(pkgdir,"test_data"+self.suffix), ctype=self.ctype)
        try:
            tmp = sheet.get_range("sInfo")
            self.fail("Expected IOError because the range does not exist on the first sheet.")
        except IOError:
            pass
        del sheet

    def Xtest_range2(self):
        """ Verify that ranges can be found on 'other' sheets """
        sheet = pyutilib.excel.ExcelSpreadsheet(join(pkgdir,"test_data"+self.suffix), ctype=self.ctype)
        try:
            tmp = sheet.get_range("sInfo")
            self.fail("Expected IOError because the range does not exist on the first sheet.", (1,2))
        except IOError:
            pass
        del sheet


@unittest.skipIf(not _win32com_available, "Cannot import win32com")
class Test_win32com(BaseTests, unittest.TestCase):

    ctype = 'win32com'
    suffix = '.xls'


@unittest.skipIf(not _openpyxl_available, "Cannot import openpyxl")
class Test_openpyxl(BaseTests, unittest.TestCase):

    ctype = 'openpyxl'
    suffix = '.xlsx'


@unittest.skipIf(not _xlrd_available, "Cannot import xlrd")
class Test_xlrd(BaseTests, unittest.TestCase):

    ctype = 'xlrd'
    suffix = '.xls'


if __name__ == "__main__":
    unittest.main()