This file is indexed.

/usr/share/pyshared/paste/webkit/FakeWebware/TaskKit/Tests/BasicTest.py is in python-pastewebkit 1.0-7build1.

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
import os, sys
sys.path.insert(1, os.path.abspath('../..'))
import TaskKit

from TaskKit.Scheduler import Scheduler
from TaskKit.Task import Task
from time import time, sleep


class SimpleTask(Task):

	def run(self):
		if self.proceed():
			print self.name(), time()
##			print "Increasing period"
##			self.handle().setPeriod(self.handle().period()+2)
		else:
			print "Should not proceed", self.name()
			print "proceed for %s=%s, isRunning=%s" % (self.name(), self.proceed(), self._handle._isRunning)


class LongTask(Task):
	def run(self):
		while 1:			
			sleep(2)
			print "proceed for %s=%s, isRunning=%s" % (self.name(), self.proceed(), self._handle._isRunning)
			if self.proceed():
				print ">>",self.name(), time()
			else:
				print "Should not proceed:", self.name()
				return

def main():
	from time import localtime
	scheduler = Scheduler()
	scheduler.start()
	scheduler.addPeriodicAction(time(), 1, SimpleTask(), 'SimpleTask1')
	scheduler.addTimedAction(time()+3, SimpleTask(), 'SimpleTask2')
	scheduler.addActionOnDemand(LongTask(), 'LongTask')
	scheduler.addDailyAction(localtime(time())[3], localtime(time())[4]+1, SimpleTask(), "DailyTask")
	sleep(5)
	print "Demanding LongTask"
	scheduler.runTaskNow('LongTask')
	sleep(1)
#	print "Stopping LongTask"
#	scheduler.stopTask("LongTask")
	sleep(2)
#	print "Deleting 'SimpleTask1'"
#	scheduler.unregisterTask("SimpleTask1")
	sleep(4)
	print "Calling stop"
	scheduler.stop()
##	sleep(2)
	print "Test Complete"


if __name__=='__main__':
	main()