diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-11-25 13:13:22 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-11-25 13:13:22 +0100 |
commit | dcdc32af1fced49d80a8ccd93230e15d91ab45d8 (patch) | |
tree | eb69e2555fbd54496fce8a33f4dd610e1473ff51 /scripts/tests/IceGrid/simple.py | |
parent | C# IceSSL/configuration log expired certificate exceptions. (diff) | |
download | ice-dcdc32af1fced49d80a8ccd93230e15d91ab45d8.tar.bz2 ice-dcdc32af1fced49d80a8ccd93230e15d91ab45d8.tar.xz ice-dcdc32af1fced49d80a8ccd93230e15d91ab45d8.zip |
Refactored test scripts
Diffstat (limited to 'scripts/tests/IceGrid/simple.py')
-rw-r--r-- | scripts/tests/IceGrid/simple.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/tests/IceGrid/simple.py b/scripts/tests/IceGrid/simple.py new file mode 100644 index 00000000000..379ebe790d9 --- /dev/null +++ b/scripts/tests/IceGrid/simple.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# ********************************************************************** +# +# Copyright (c) 2003-2016 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. +# +# ********************************************************************** + +serverProps = { + "TestAdapter.Endpoints" : "default", + "TestAdapter.AdapterId" : "TestAdapter" +} + +registryProps = { + "IceGrid.Registry.DynamicRegistration" : 1 +} + +TestSuite(__name__, [ + IceGridTestCase("without deployment", application=None, + icegridregistry=[IceGridRegistryMaster(props=registryProps), + IceGridRegistrySlave(1, props=registryProps), + IceGridRegistrySlave(2, props=registryProps)], + client=ClientServerTestCase(client=IceGridClient(), server=IceGridServer(props=serverProps))), + IceGridTestCase("with deployment", client=IceGridClient(args=["--with-deploy"])) +], multihost=False) |