blob: 09ab19666bc2c52722c6a5e55c8743c66cac9068 (
plain)
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
|
# **********************************************************************
#
# Copyright (c) 2003-present 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.
#
# **********************************************************************
class SliceGenerationTestCase(ClientTestCase):
def runClientSide(self, current):
current.write("testing list-generated... ")
slice2java = SliceTranslator("slice2java")
current.mkdirs("classes")
slice2java.run(current,
args=["--list-generated", "--output-dir", "classes", "File1.ice", "File2.ice"] +
(["--compat"] if current.testsuite.getPath().find("java-compat") >= 0 else []))
lines1 = slice2java.getOutput(current).strip().split("\n")
lines2 = open(os.path.join(current.testsuite.getPath(), "list-generated.out"), "r").readlines()
if len(lines1) != len(lines2):
raise RuntimeError("failed!")
i = 0
while i < len(lines1):
line1 = lines1[i].strip()
line2 = lines2[i].strip()
if line1 != line2:
raise RuntimeError("failed!")
i = i + 1
else:
current.writeln("ok")
TestSuite(__name__, [ SliceGenerationTestCase() ])
|