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
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
import os, sys, re, shutil
for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
toplevel = os.path.normpath(toplevel)
if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")):
break
else:
raise "can't find toplevel directory!"
sys.path.append(os.path.join(toplevel, "config"))
import TestUtil
directory = os.path.join(toplevel, "test", "FreezeScript", "dbmap")
transformdb = os.path.join(toplevel, "bin", "transformdb")
dbdir = os.path.join(directory, "db")
TestUtil.cleanDbDir(dbdir)
init_dbdir = os.path.join(directory, "db_init")
if os.path.exists(init_dbdir):
shutil.rmtree(init_dbdir)
os.mkdir(init_dbdir)
check_dbdir = os.path.join(directory, "db_check")
if os.path.exists(check_dbdir):
shutil.rmtree(check_dbdir)
os.mkdir(check_dbdir)
tmp_dbdir = os.path.join(directory, "db_tmp")
if os.path.exists(tmp_dbdir):
shutil.rmtree(tmp_dbdir)
os.mkdir(tmp_dbdir)
regex1 = re.compile(r"_old\.ice$", re.IGNORECASE)
files = []
for file in os.listdir(os.path.join(directory, "fail")):
if(regex1.search(file)):
files.append(file)
regex2 = re.compile(r"^.*transf(ormdb|~1)(\.exe)?", re.IGNORECASE)
print "testing error detection...",
sys.stdout.flush()
files.sort()
for oldfile in files:
newfile = oldfile.replace("old", "new")
if oldfile.find("19") == 0:
value = "::Test::C"
else:
value = "int"
command = transformdb + " --old " + os.path.join(directory, "fail", oldfile) + " --new " + os.path.join(directory, "fail", newfile) + " -o tmp.xml --key string --value " + value
stdin, stdout, stderr = os.popen3(command)
lines1 = stderr.readlines()
lines2 = open(os.path.join(directory, "fail", oldfile.replace("_old.ice", ".err")), "r").readlines()
if len(lines1) != len(lines2):
print "failed! (1)"
sys.exit(1)
i = 0
while i < len(lines1):
line1 = regex2.sub("", lines1[i]).strip()
line2 = regex2.sub("", lines2[i]).strip()
if line1 != line2:
print "failed! (2)"
print "line1 = " + line1
print "line2 = " + line2
# sys.exit(1)
i = i + 1
print "ok"
print "creating test database...",
sys.stdout.flush()
makedb = os.path.join(directory, "makedb") + " " + directory
if os.system(makedb) != 0:
sys.exit(1)
print "ok"
testold = os.path.join(directory, "TestOld.ice")
testnew = os.path.join(directory, "TestNew.ice")
initxml = os.path.join(directory, "init.xml")
checkxml = os.path.join(directory, "check.xml")
print "initializing test database...",
sys.stdout.flush()
command = transformdb + " --old " + testold + " --new " + testold + " -f " + initxml + " " + dbdir + " default.db " + init_dbdir
if os.system(command) != 0:
sys.exit(1)
print "ok"
print "executing default transformations...",
sys.stdout.flush()
command = transformdb + " --old " + testold + " --new " + testnew + " --key int --value ::Test::S " + init_dbdir + " default.db " + check_dbdir
stdin, stdout, stderr = os.popen3(command)
stderr.readlines()
print "ok"
print "validating database...",
sys.stdout.flush()
command = transformdb + " --old " + testnew + " --new " + testnew + " -f " + checkxml + " " + check_dbdir + " default.db " + tmp_dbdir
if os.system(command) != 0:
sys.exit(1)
print "ok"
sys.exit(0)
|