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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file lldatapacker_tut.cpp
  3.  * @date 2007-04
  4.  * @brief LLDataPacker test cases.
  5.  *
  6.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2007-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  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.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #include <tut/tut.hpp>
  34. #include "linden_common.h"
  35. #include "lltut.h"
  36. #include "llapr.h"
  37. #include "llmessageconfig.h"
  38. #include "llsdserialize.h"
  39. #include "llversionserver.h"
  40. #include "message.h"
  41. #include "message_prehash.h"
  42. namespace
  43. {
  44. struct Response : public LLHTTPNode::Response
  45. {
  46. virtual void result(const LLSD&) {}
  47. virtual void status(S32 code, const std::string& message) 
  48. {
  49. mStatus = code;
  50. }
  51. virtual void extendedResult(S32 code, const std::string& message, const LLSD& headers) { }
  52. S32 mStatus;
  53. };
  54. }
  55. namespace tut
  56. {
  57. struct LLMessageSystemTestData 
  58. {
  59. std::string mTestConfigDir;
  60. std::string mSep;
  61. LLMessageSystemTestData()
  62. {
  63. static bool init = false;
  64. if(!init)
  65. {
  66. ll_init_apr();
  67. //init_prehash_data();
  68. init = true;
  69. }
  70. const F32 circuit_heartbeat_interval=5;
  71. const F32 circuit_timeout=100;
  72. // currently test disconnected message system
  73. start_messaging_system("notafile", 13035,
  74.    LL_VERSION_MAJOR,
  75.    LL_VERSION_MINOR,        
  76.    LL_VERSION_PATCH,        
  77.    FALSE,        
  78.    "notasharedsecret",
  79.    NULL,
  80.    false,
  81.    circuit_heartbeat_interval,
  82.    circuit_timeout
  83.    );
  84. // generate temp dir
  85. std::ostringstream ostr;
  86. #if LL_WINDOWS
  87. mSep = "\";
  88. ostr << "C:" << mSep;
  89. #else
  90. mSep = "/";
  91. ostr << mSep << "tmp" << mSep;
  92. #endif
  93. LLUUID random;
  94. random.generate();
  95. ostr << "message-test-" << random;
  96. mTestConfigDir = ostr.str();
  97. LLFile::mkdir(mTestConfigDir);
  98. writeConfigFile(LLSD());
  99. LLMessageConfig::initClass("simulator", ostr.str());
  100. }
  101. ~LLMessageSystemTestData()
  102. {
  103. // not end_messaging_system()
  104. delete gMessageSystem;
  105. gMessageSystem = NULL;
  106. // rm contents of temp dir
  107. std::ostringstream ostr;
  108. ostr << mTestConfigDir << mSep << "message.xml";
  109. int rmfile = LLFile::remove(ostr.str());
  110. ensure_equals("rmfile value", rmfile, 0);
  111. // rm temp dir
  112. int rmdir = LLFile::rmdir(mTestConfigDir);
  113. ensure_equals("rmdir value", rmdir, 0);
  114. }
  115. void writeConfigFile(const LLSD& config)
  116. {
  117. std::ostringstream ostr;
  118. ostr << mTestConfigDir << mSep << "message.xml";
  119. llofstream file(ostr.str());
  120. if (file.is_open())
  121. {
  122. LLSDSerialize::toPrettyXML(config, file);
  123. }
  124. file.close();
  125. }
  126. };
  127. typedef test_group<LLMessageSystemTestData> LLMessageSystemTestGroup;
  128. typedef LLMessageSystemTestGroup::object LLMessageSystemTestObject;
  129. LLMessageSystemTestGroup messageTestGroup("LLMessageSystem");
  130. template<> template<>
  131. void LLMessageSystemTestObject::test<1>()
  132. // dispatch unknown message
  133. {
  134. const char* name = "notamessasge";
  135. const LLSD message;
  136. const LLPointer<Response> response = new Response();
  137. gMessageSystem->dispatch(name, message, response);
  138. ensure_equals(response->mStatus, 404);
  139. }
  140. }