test_llxmlrpc_peer.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. #!/usr/bin/python
  2. """
  3. @file   test_llxmlrpc_peer.py
  4. @author Nat Goodspeed
  5. @date   2008-10-09
  6. @brief  This script asynchronously runs the executable (with args) specified on
  7.         the command line, returning its result code. While that executable is
  8.         running, we provide dummy local services for use by C++ tests.
  9. $LicenseInfo:firstyear=2008&license=viewergpl$
  10. Copyright (c) 2008-2010, Linden Research, Inc.
  11. Second Life Viewer Source Code
  12. The source code in this file ("Source Code") is provided by Linden Lab
  13. to you under the terms of the GNU General Public License, version 2.0
  14. ("GPL"), unless you have obtained a separate licensing agreement
  15. ("Other License"), formally executed by you and Linden Lab.  Terms of
  16. the GPL can be found in doc/GPL-license.txt in this distribution, or
  17. online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  18. There are special exceptions to the terms and conditions of the GPL as
  19. it is applied to this Source Code. View the full text of the exception
  20. in the file doc/FLOSS-exception.txt in this software distribution, or
  21. online at
  22. http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23. By copying, modifying or distributing this software, you acknowledge
  24. that you have read and understood your obligations described above,
  25. and agree to abide by those obligations.
  26. ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  27. WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  28. COMPLETENESS OR PERFORMANCE.
  29. $/LicenseInfo$
  30. """
  31. import os
  32. import sys
  33. from threading import Thread
  34. from SimpleXMLRPCServer import SimpleXMLRPCServer
  35. mydir = os.path.dirname(__file__)       # expected to be .../indra/newview/tests/
  36. sys.path.insert(0, os.path.join(mydir, os.pardir, os.pardir, "lib", "python"))
  37. sys.path.insert(1, os.path.join(mydir, os.pardir, os.pardir, "llmessage", "tests"))
  38. from testrunner import run, debug
  39. class TestServer(SimpleXMLRPCServer):
  40.     def _dispatch(self, method, params):
  41.         try:
  42.             func = getattr(self, method)
  43.         except AttributeError:
  44.             raise Exception('method "%s" is not supported' % method)
  45.         else:
  46.             # LLXMLRPCListener constructs XMLRPC parameters that arrive as a
  47.             # 1-tuple containing a dict.
  48.             return func(**(params[0]))
  49.     def hello(self, who):
  50.         # LLXMLRPCListener expects a dict return.
  51.         return {"hi_there": "Hello, %s!" % who}
  52.     def getdict(self):
  53.         return dict(nested_dict=dict(a=17, b=5))
  54.     def log_request(self, code, size=None):
  55.         # For present purposes, we don't want the request splattered onto
  56.         # stderr, as it would upset devs watching the test run
  57.         pass
  58.     def log_error(self, format, *args):
  59.         # Suppress error output as well
  60.         pass
  61. class ServerRunner(Thread):
  62.     def run(self):
  63.         server = TestServer(('127.0.0.1', 8000))
  64.         debug("Starting XMLRPC server...n")
  65.         server.serve_forever()
  66. if __name__ == "__main__":
  67.     sys.exit(run(server=ServerRunner(name="xmlrpc"), *sys.argv[1:]))