diff options
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) |