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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llscriptresource_tut.cpp
  3.  * @brief Test LLScriptResource
  4.  *
  5.  * $LicenseInfo:firstyear=2008&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2008-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  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.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. //#include <tut/tut.h>
  33. #include "linden_common.h"
  34. #include "lltut.h"
  35. #include "../newsim/lltranscode.cpp" // include TU to pull in newsim implementation.
  36. static const char test_utf8[] = "Edelweixc3x9f";
  37. static const char test_utf7[] = "Edelwei+AN8-";
  38. static const char test_latin1[] = "Edelweixdf";
  39. static const char test_latin2[] = "Edelweixdf";
  40. namespace tut
  41. {
  42. class LLTranscodeTestData
  43. {
  44. };
  45. typedef test_group<LLTranscodeTestData> LLTranscodeTestGroup;
  46. typedef LLTranscodeTestGroup::object LLTranscodeTestObject;
  47. LLTranscodeTestGroup transcodeTestGroup("transcode");
  48. template<> template<>
  49. void LLTranscodeTestObject::test<1>()
  50. {
  51. #if LL_WINDOWS
  52. skip("Windows APR libs can't transcode.");
  53. #endif
  54. // Test utf8
  55. std::stringstream input;
  56. std::stringstream output;
  57. input.str(test_utf7);
  58. output.clear();
  59. LLTranscode::transcode("charset=UTF-7", input, output);
  60. ensure_equals("UTF-7 to UTF-8 transcoding", output.str(),
  61.   std::string(test_utf8));
  62. input.str(test_latin1);
  63. output.clear();
  64. LLTranscode::transcode("", input, output);
  65. ensure_equals("Default (latin_1) to UTF8 transcoding", output.str(),
  66. std::string(test_utf8));
  67. input.str(test_latin1);
  68. output.clear();
  69. LLTranscode::transcode("charset=iso-8859-1", input, output);
  70. ensure_equals("latin_1 (ISO-8859-1) to UTF8 transcoding", output.str(),
  71. std::string(test_utf8));
  72. input.str(test_latin2);
  73. output.clear();
  74. LLTranscode::transcode("charset=iso-8859-2", input, output);
  75. ensure_equals("latin_2 (ISO-8859-2) to UTF8 transcoding", output.str(),
  76. std::string(test_utf8));
  77. input.str(test_utf8);
  78. output.clear();
  79. LLTranscode::transcode("charset=utf-8", input, output);
  80. ensure_equals("UTF8 to UTF8 transcoding", output.str(),
  81. std::string(test_utf8));
  82. }
  83. }