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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llviewerhelputil_test.cpp
  3.  * @brief LLViewerHelpUtil tests
  4.  * @author Tofu Linden
  5.  *
  6.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2001-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. // Precompiled header
  34. #include "../llviewerprecompiledheaders.h"
  35. #include "../test/lltut.h"
  36. #include "../llviewerhelputil.h"
  37. #include "../llweb.h"
  38. #include "llcontrol.h"
  39. #include <iostream>
  40. // values for all of the supported substitutions parameters
  41. static std::string gHelpURL;
  42. static std::string gVersion;
  43. static std::string gChannel;
  44. static std::string gLanguage;
  45. static std::string gGrid;
  46. static std::string gOS;
  47. //----------------------------------------------------------------------------
  48. // Mock objects for the dependencies of the code we're testing
  49. LLControlGroup::LLControlGroup(const std::string& name)
  50. : LLInstanceTracker<LLControlGroup, std::string>(name) {}
  51. LLControlGroup::~LLControlGroup() {}
  52. BOOL LLControlGroup::declareString(const std::string& name,
  53.    const std::string& initial_val,
  54.    const std::string& comment,
  55.    BOOL persist) {return TRUE;}
  56. void LLControlGroup::setString(const std::string& name, const std::string& val){}
  57. std::string LLControlGroup::getString(const std::string& name)
  58. {
  59. if (name == "HelpURLFormat")
  60. return gHelpURL;
  61. return "";
  62. }
  63. LLControlGroup gSavedSettings("test");
  64. static void substitute_string(std::string &input, const std::string &search, const std::string &replace)
  65. {
  66. size_t pos = input.find(search);
  67. while (pos != std::string::npos)
  68. {
  69. input = input.replace(pos, search.size(), replace);
  70. pos = input.find(search);
  71. }
  72. }
  73. class LLAgent
  74. {
  75. public:
  76. LLAgent() {}
  77. ~LLAgent() {}
  78. #ifdef __GNUC__
  79. __attribute__ ((noinline))
  80. #endif
  81. BOOL isGodlike() const { return FALSE; }
  82. };
  83. LLAgent gAgent;
  84. std::string LLWeb::expandURLSubstitutions(const std::string &url,
  85.   const LLSD &default_subs)
  86. {
  87. (void)gAgent.isGodlike(); // ref symbol to stop compiler from stripping it
  88. std::string new_url = url;
  89. substitute_string(new_url, "[TOPIC]", default_subs["TOPIC"].asString());
  90. substitute_string(new_url, "[VERSION]", gVersion);
  91. substitute_string(new_url, "[CHANNEL]", gChannel);
  92. substitute_string(new_url, "[LANGUAGE]", gLanguage);
  93. substitute_string(new_url, "[GRID]", gGrid);
  94. substitute_string(new_url, "[OS]", gOS);
  95. return new_url;
  96. }
  97. //----------------------------------------------------------------------------
  98. namespace tut
  99. {
  100.     struct viewerhelputil
  101.     {
  102.     };
  103.     
  104. typedef test_group<viewerhelputil> viewerhelputil_t;
  105. typedef viewerhelputil_t::object viewerhelputil_object_t;
  106. tut::viewerhelputil_t tut_viewerhelputil("viewerhelputil");
  107. template<> template<>
  108. void viewerhelputil_object_t::test<1>()
  109. {
  110. std::string topic("test_topic");
  111. std::string subresult;
  112. gHelpURL = "fooformat";
  113. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  114. ensure_equals("no substitution tags", subresult, "fooformat");
  115. gHelpURL = "";
  116. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  117. ensure_equals("blank substitution format", subresult, "");
  118. gHelpURL = "[TOPIC]";
  119. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  120. ensure_equals("topic name", subresult, "test_topic");
  121. gHelpURL = "[LANGUAGE]";
  122. gLanguage = "";
  123. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  124. ensure_equals("simple substitution with blank", subresult, "");
  125. gHelpURL = "[LANGUAGE]";
  126. gLanguage = "Esperanto";
  127. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  128. ensure_equals("simple substitution", subresult, "Esperanto");
  129. gHelpURL = "http://secondlife.com/[LANGUAGE]";
  130. gLanguage = "Gaelic";
  131. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  132. ensure_equals("simple substitution with url", subresult, "http://secondlife.com/Gaelic");
  133. gHelpURL = "[XXX]";
  134. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  135. ensure_equals("unknown substitution", subresult, "[XXX]");
  136. gHelpURL = "[LANGUAGE]/[LANGUAGE]";
  137. gLanguage = "Esperanto";
  138. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  139. ensure_equals("multiple substitution", subresult, "Esperanto/Esperanto");
  140. gHelpURL = "http://[CHANNEL]/[VERSION]/[LANGUAGE]/[OS]/[GRID]/[XXX]";
  141. gChannel = "Second Life Test";
  142. gVersion = "2.0";
  143. gLanguage = "gaelic";
  144. gOS = "AmigaOS 2.1";
  145. gGrid = "mysim";
  146. subresult = LLViewerHelpUtil::buildHelpURL(topic);
  147. ensure_equals("complex substitution", subresult, "http://Second Life Test/2.0/gaelic/AmigaOS 2.1/mysim/[XXX]");
  148. }
  149. }