-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathddmin.py
87 lines (66 loc) · 2.04 KB
/
ddmin.py
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
#!/usr/bin/env python
# $Id: ddmin.py,v 2.2 2005/05/12 22:01:18 zeller Exp $
from split import split
from listsets import listminus
import re
PASS = "PASS"
FAIL = "FAIL"
UNRESOLVED = "UNRESOLVED"
def ddmin(circumstances, test):
"""Return a sublist of CIRCUMSTANCES that is a relevant configuration
with respect to TEST."""
assert test([]) == PASS
assert test(circumstances) == FAIL
n = 2
while len(circumstances) >= 2:
subsets = split(circumstances, n)
assert len(subsets) == n
some_complement_is_failing = 0
for subset in subsets:
complement = listminus(circumstances, subset)
if test(complement) == FAIL:
circumstances = complement
n = max(n - 1, 2)
some_complement_is_failing = 1
break
if not some_complement_is_failing:
if n == len(circumstances):
break
n = min(n * 2, len(circumstances))
return circumstances
if __name__ == "__main__":
tests = {}
circumstances = []
def string_to_list(s):
c = []
for i in range(len(s)):
c.append((i, s[i]))
return c
def mytest(c):
global tests
global circumstances
s = ""
for (index, char) in c:
s += char
if s in tests.keys():
return tests[s]
map = {}
for (index, char) in c:
map[index] = char
x = ""
for i in range(len(circumstances)):
if map.has_key(i):
x += map[i]
else:
x += "."
print "%02i" % (len(tests.keys()) + 1), "Testing", `x`,
if s != "" and re.match("<SELECT.*>", s):
print FAIL
tests[s] = FAIL
return FAIL
print PASS
tests[s] = PASS
return PASS
circumstances = string_to_list('<SELECT NAME="priority" MULTIPLE SIZE=7>')
mytest(circumstances)
print ddmin(circumstances, mytest)