This file is indexed.

/usr/lib/python2.7/dist-packages/woo/tests/__init__.py is in python-woo 1.0+dfsg1-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
# encoding: utf-8
# 2009 © Václav Šmilauer <eudoxos@arcig.cz>
"""All defined functionality tests for woo."""
import unittest, types

# import all test suites so that they can be picked up by testAll
# explicit imports here so that suites are packed by pyInstaller
from . import core
from . import pbc
from . import clump
from . import psd
from . import io
from . import energy
from . import grid
from . import labels
from . import hertz
from . import ellipsoid
from . import batch
from . import shapepack
from . import tetra
from . import volumetric
# this is ugly, but automatic
allTests=[m for m in dir() if type(eval(m))==types.ModuleType and eval(m).__name__.startswith('woo.tests')]
# should the above break, do it manually (but keep the imports above):
## allTests=['core','pbc','clump','psd','io']


# all woo modules (ugly...)
import woo.linterpolation,woo.log,woo.pack,woo.plot,woo.post2d,woo.timing,woo.utils,woo.batch,woo.comp,woo.triangulated
allModules=(woo.linterpolation,woo.log,woo.pack,woo.plot,woo.post2d,woo.timing,woo.utils,woo.batch,woo.comp,woo.triangulated)
try:
	import woo.qt
	allModules+=(woo.qt,)
except ImportError: pass

# fully qualified module names
allTestsFQ=['woo.tests.'+test for test in allTests]

try:
	import colour_runner.runner
	MyTestRunner=colour_runner.runner.ColourTextTestRunner
except ImportError:
	print '(colour-runner not installed, using uncolored output for tests; see https://github.com/meshy/colour-runner/)'
	MyTestRunner=unittest.TextTestRunner

def testModule(module):
	"""Run all tests defined in the module specified, return TestResult object 
	(http://docs.python.org/library/unittest.html#unittest.TextTestResult)
	for further processing.

	@param module: fully-qualified module name, e.g. woo.tests.core
	"""
	suite=unittest.defaultTestLoader().loadTestsFromName(module)
	return MyTestRunner(verbosity=2).run(suite)

def testAll(sysExit=False):
	"""Run all tests defined in all woo.tests.* modules. Return
	TestResult object for further examination. If *sysExit* is true, call sys.exit
	with status 0 (all tests passed), 1 (some tests failed),
	2 (an exception was raised).
	"""
	suite=unittest.defaultTestLoader.loadTestsFromNames(allTestsFQ)
	import doctest, sys
	for mod in allModules:
		suite.addTest(doctest.DocTestSuite(mod))
	try:
		result=MyTestRunner(verbosity=2).run(suite)
		if not sysExit: return result
		if result.wasSuccessful():
			print '*** ALL TESTS PASSED ***'
			sys.exit(0)
		else:
			print 20*'*'+' SOME TESTS FAILED '+20*'*'
			sys.exit(1)
	except SystemExit: raise # re-raise
	except:
		print 20*'*'+' UNEXPECTED EXCEPTION WHILE RUNNING TESTS '+20*'*'
		print 20*'*'+' '+str(sys.exc_info()[0])
		print 20*'*'+" Please report bug to bugs@woodem.eu providing the following traceback:"
		import traceback; traceback.print_exc()
		print 20*'*'+' Thank you '+20*'*'
		if sysExit: sys.exit(2)
		raise