This file is indexed.

/usr/share/pyshared/simpleparse/tests/test_objectgenerator.py is in python-simpleparse 2.1.0a1-6build1.

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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
import unittest, pprint, traceback
from simpleparse.objectgenerator import *
from simpleparse.stt.TextTools import TextTools
from genericvalues import NullResult, AnyInt

class ElementTokenTests(unittest.TestCase):
	def doBasicTest(self, instance, testvalue, expected, startPosition=0 ):
		table = tuple(instance.toParser())
		result = tag( testvalue, table , startPosition)
		assert result == expected, '''\n\texpected:%s\n\tgot:%s\n'''%( expected, result )
	def testString1( self ):
		self.doBasicTest(
			Literal( value = 'test' ),
			'test',
			(1, [],4),
		)
	def testString2( self ):
		self.doBasicTest(
			Literal( value = 'test', optional =1 ),
			'test',
			(1, [],4),
		)
	def testString3( self ):
		self.doBasicTest(
			Literal( value = 'test', optional =1, negative=1 ),
			'test',
			(1, [],0),
		)
	def testString4( self ):
		self.doBasicTest(
			Literal( value = 'test', negative=1 ),
			'test',
			(0, [],AnyInt),
		)
	def testString5( self ):
		self.doBasicTest(
			Literal( value = 'test', repeating=1),
			'testtest',
			(1, [],8),
		)
	def testString6( self ):
		self.doBasicTest(
			Literal( value = 'test', repeating=1, optional = 1),
			'testtest',
			(1, [],8),
		)
	def testString7( self ):
		self.doBasicTest(
			Literal( value = 'test', repeating=1, optional = 1, negative = 1),
			'testtest',
			(1, [],0),
		)
	def testString8( self ):
		"""Test repeating negative string"""
		self.doBasicTest(
			Literal( value = 'test', repeating=1, negative = 1),
			'testtest',
			(0, [],AnyInt),
		)
	def testString9( self ):
		self.doBasicTest(
			Literal( value = '\\',),
			'\\',
			(1, [],1),
		)
	def testRange1( self ):
		self.doBasicTest(
			Range( value = 'abc'),
			'aabbcc',
			(1, [],1),
		)
	def testRange2( self ):
		self.doBasicTest(
			Range( value = 'abc', optional=1),
			'aabbcc',
			(1, [],1),
		)
	def testRange3( self ):
		self.doBasicTest(
			Range( value = 'abc', optional=1, repeating=1),
			'aabbcc',
			(1, [],6),
		)
	def testRange4( self ):
		self.doBasicTest(
			Range( value = 'abc', optional=1, repeating=1, negative=1),
			'aabbcc',
			(1, [],0),
		)
	def testRange5( self ):
		self.doBasicTest(
			Range( value = 'abc', optional=1, negative=1),
			'aabbcc',
			(1, [],0),
		)
	def testRange6( self ):
		self.doBasicTest(
			Range( value = 'abc', negative=1),
			'aabbcc',
			(0, [],AnyInt),
		)
	def testRange7( self ):
		self.doBasicTest(
			Range( value = 'abc', negative=1, repeating=1),
			'aabbcc',
			(0, [],AnyInt),
		)
	def testRange8( self ):
		self.doBasicTest(
			Range( value = 'abc', negative=1, repeating=1),
			'defc',
			(1, [],3),
		)
	def testRange9( self ):
		self.doBasicTest(
			Range( value = 'abc', negative=1),
			'defc',
			(1, [],1),
		)
	def testSequential1( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=0,
			),
			'atest',
			(1, [],5),
		)
	def testSequential2( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=1,
			),
			'atest',
			(0, [],AnyInt),
		)
	def testSequential3( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=1, optional=1,
			),
			'atest',
			(1, [],0),
		)
	def testSequential4( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=1, optional=1, repeating=1,
			),
			'sdatest',
			(1, [],2),
		)
	def testSequential5( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				optional=1, repeating=1,
			),
			'atestbtestctest',
			(1, [],15),
		)
	def testSequential6( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				optional=1, 
			),
			'atestbtestctest',
			(1, [],5),
		)
		
	def testSequential7( self ):
		self.doBasicTest(
			SequentialGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				optional=1, 
			),
			'satestbtestctest',
			(1, [],0),
		)


	def testFirstOf1( self ):
		self.doBasicTest(
			FirstOfGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=0,
			),
			'atest',
			(1, [],1),
		)
	def testFirstOf2( self ):
		self.doBasicTest(
			FirstOfGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=0,
			),
			'testa',
			(1, [],4),
		)
	def testFirstOf3( self ):
		self.doBasicTest(
			FirstOfGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=1,
			),
			'testa',
			(0, [],AnyInt),
		)
	def testFirstOf4( self ):
		self.doBasicTest(
			FirstOfGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				negative=1, optional=1,
			),
			'testa',
			(1, [],0),
		)
	def testFirstOf5( self ):
		self.doBasicTest(
			FirstOfGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				repeating=1,
			),
			'testabtest',
			(1, [],10),
		)
	def testFirstOf6( self ):
		self.doBasicTest(
			FirstOfGroup(
				children = [
					Range( value = 'abc',),
					Literal( value = 'test', ),
				],
				repeating=1, negative = 1,
			),
			'hellotheretestabtest',
			(1, [],10),
		)

	def testCIString1( self ):
		self.doBasicTest(
			CILiteral( value = 'test'),
			'test',
			(1, [],4),
		)
	def testCIString2( self ):
		self.doBasicTest(
			CILiteral( value = 'test'),
			'Test',
			(1, [],4),
		)
	def testCIString3( self ):
		self.doBasicTest(
			CILiteral( value = 'test'),
			'TEST',
			(1, [],4),
		)
	def testCIString4( self ):
		self.doBasicTest(
			CILiteral( value = 'test'),
			'tes',
			(0, [],AnyInt),
		)
	def testCIString5( self ):
		self.doBasicTest(
			CILiteral( value = 'test', optional=1),
			'tes',
			(1, [], 0),
		)

### Simpleparse 2.0.0b4 introduced an explicit check that
##  rejects FOGroups with optional children to prevent
##  infinite recursions

##	def testFirstOf7( self ):
##		'''([abc]?/"test"?)*
##
##		Demonstrates a recently fixed error, namely a fix to the repeating
##		code which explicitly checks for EOF condition during repeating
##		loops.  Result is that this condition should be handled correctly.
##
##		Old Note:
##			This test exposes a problem with both the original generator
##			and the sub-class here.  FOGroups with optional children are
##			in danger of never returning as the children always "succeed"
##			even if they consume nothing.
##			Failure in this case is likely to be an endless loop, so we
##			can expect that if this is broken there will be heck to pay ;)
##		'''
##		generator =	FirstOfGroup(
##				children = [
##					Range( value = 'abc', optional=1),
##					Literal( value = 'test', optional=1),
##				],
##				repeating=1, optional=1,
##			)
##		self.doBasicTest(
##			generator,
##			'testabtest',
##			(1, [],10),
##		)
##		generator =	FirstOfGroup(
##				children = [
##					Range( value = 'abc', optional=1),
##					Literal( value = 'test', optional=1),
##					SequentialGroup(
##						children = [
##							Literal( value = 'm', optional=1),
##							Literal( value = 'n', optional=1),
##						],
##					),
##				],
##				repeating=1, optional=1,
##			)
##		self.doBasicTest(
##			generator,
##			'testmnabtest',
##			(1, [],12),
##		)
		
	def testNegative1( self ):
		self.doBasicTest(
			Literal( value = 's', negative=1),
			's\\',
			(0, [],AnyInt),
		)
	def testNegative2( self ):
		self.doBasicTest(
			Literal( value = 's', negative=1),
			'asa\\',
			(1, [],1),
		)
	def testNegative3( self ):
		self.doBasicTest(
			Literal( value = 's', negative=1, repeating=1),
			'aasa\\',
			(1, [],2),
		)
	def testNegative4( self ):
		self.doBasicTest(
			Literal( value = 's', negative=1, repeating=1, optional=1),
			'a',
			(1, [],1),
		)
	def testNegative4a( self ):
		self.doBasicTest(
			Literal( value = 's', negative=1, repeating=1, optional=1),
			'as',
			(1, [],1),
		)
	def testNegative4b( self ):
		self.doBasicTest(
			Literal( value = 's', negative=1, repeating=1, optional=1),
			'sas',
			(1, [],0),
		)
	def testNegative5( self ):
		self.doBasicTest(
			Range( value = 'sat', negative=1),
			'aasat\\',
			(0, [],AnyInt), 
		)
	def testNegative6( self ):
		self.doBasicTest(
			Range( value = 'sat', negative=1, repeating=1),
			'aasat\\',
			(0, [],AnyInt), 
		)
	def testNegative7( self ):
		self.doBasicTest(
			Range( value = 'sat', negative=1, repeating=1, optional=1),
			'aasat\\',
			(1, [],0), 
		)
		
def getSuite():
	return unittest.makeSuite(ElementTokenTests,'test')

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