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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file reflection_test.cpp
  3.  * @date   May 2006
  4.  * @brief Reflection unit tests.
  5.  *
  6.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2006-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 "../linden_common.h"
  34. #include "../reflective.h"
  35. #include "../metaclasst.h"
  36. #include "../metapropertyt.h"
  37. #include "../stdtypes.h"
  38. #include "../test/lltut.h"
  39. namespace tut
  40. {
  41.   class TestAggregatedData : public LLReflective
  42.   {
  43.   public:
  44. TestAggregatedData() {;}
  45. virtual const LLMetaClass& getMetaClass() const;
  46.   
  47.   private:
  48.   };
  49.   
  50.   class TestReflectionData : public LLReflective
  51.   {
  52.   public:
  53. TestReflectionData() : mInt(42), mString("foo"), mNullPtr(NULL), mPtr(new TestAggregatedData()), mRef(*(new TestAggregatedData)) {;}
  54. virtual ~TestReflectionData() {delete mPtr;}
  55. virtual const LLMetaClass& getMetaClass() const;
  56. static U32 getPropertyCount() {return 5;}
  57.   private:
  58.   
  59. friend class LLMetaClassT<TestReflectionData>;
  60.     S32 mInt;
  61. std::string mString;
  62. TestAggregatedData* mNullPtr;
  63. TestAggregatedData* mPtr;
  64. TestAggregatedData mObj;
  65. TestAggregatedData& mRef;
  66.   };
  67. }
  68. template <>
  69. void LLMetaClassT<tut::TestReflectionData>::reflectProperties(LLMetaClass& meta_class)
  70. {
  71. reflectProperty(meta_class, "mInt", &tut::TestReflectionData::mInt);
  72. reflectProperty(meta_class, "mString", &tut::TestReflectionData::mString);
  73. reflectPtrProperty(meta_class, "mNullPtr", &tut::TestReflectionData::mNullPtr);
  74. reflectPtrProperty(meta_class, "mPtr", &tut::TestReflectionData::mPtr);
  75. reflectProperty(meta_class, "mObj", &tut::TestReflectionData::mObj);
  76. //reflectProperty(meta_class, "mRef", &tut::TestReflectionData::mRef); // AARGH!
  77. }
  78. namespace tut
  79. {
  80. // virtual
  81. const LLMetaClass& TestReflectionData::getMetaClass() const
  82. {
  83.    return LLMetaClassT<TestReflectionData>::instance();
  84.     }
  85. const LLMetaClass& TestAggregatedData::getMetaClass() const
  86. {
  87.    return LLMetaClassT<TestAggregatedData>::instance();
  88.     }
  89. }
  90. namespace tut
  91. {
  92.   typedef tut::test_group<TestReflectionData> TestReflectionGroup;
  93.   typedef TestReflectionGroup::object TestReflectionObject;
  94.   TestReflectionGroup gTestReflectionGroup("reflection");
  95.   template<> template<>
  96.   void TestReflectionObject::test<1>()
  97.   {
  98. // Check properties can be found.
  99.     const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  100. const LLMetaProperty* null = NULL;
  101. ensure_not_equals(meta_class.findProperty("mInt"), null);
  102. ensure_not_equals(meta_class.findProperty("mString"), null);
  103.   }
  104.   
  105.   template<> template<>
  106.   void TestReflectionObject::test<2>()
  107.   {
  108. // Check non-existent property cannot be found.
  109.     const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  110. const LLMetaProperty* null = NULL;
  111. ensure_equals(meta_class.findProperty("foo"), null);
  112.   }
  113.   
  114.   template<> template<>
  115.   void TestReflectionObject::test<3>()
  116.   {
  117. // Check integer property has correct value.
  118.     const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  119. ensure_equals(meta_class.findProperty("mInt")->getLLSD(this).asInteger(), 42);
  120.   }
  121.   
  122.   template<> template<>
  123.   void TestReflectionObject::test<4>()
  124.   {
  125. // Check string property has correct value.
  126.     const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  127. ensure_equals(meta_class.findProperty("mString")->getLLSD(this).asString(), std::string("foo"));
  128.   }
  129.   
  130.   template<> template<>
  131.   void TestReflectionObject::test<5>()
  132.   {
  133. // Check NULL reference property has correct value.
  134. const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  135. const LLReflective* null = NULL;
  136. ensure_equals(meta_class.findProperty("mNullPtr")->get(this), null);
  137.   }
  138.   
  139.   template<> template<>
  140.   void TestReflectionObject::test<6>()
  141.   {
  142. // Check reference property has correct value.
  143. const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  144. const LLReflective* null = NULL;
  145. const LLReflective* ref = meta_class.findProperty("mPtr")->get(this);
  146. ensure_not_equals(ref, null);
  147.   }
  148.   
  149.   template<> template<>
  150.   void TestReflectionObject::test<7>()
  151.   {
  152. // Check reflective property has correct value.
  153. const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  154. const LLReflective* null = NULL;
  155. const LLReflective* ref = meta_class.findProperty("mObj")->get(this);
  156. ensure_not_equals(ref, null);
  157.   }
  158.   template<> template<>
  159.   void TestReflectionObject::test<8>()
  160.   {
  161. // Check property count.
  162.     const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  163. ensure_equals(meta_class.getPropertyCount(), TestReflectionData::getPropertyCount());
  164.   }
  165.   
  166.   template<> template<>
  167.   void TestReflectionObject::test<9>()
  168.   {
  169. // Check property iteration.
  170.     const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  171. U32 count = 0;
  172. LLMetaClass::PropertyIterator iter;
  173. for(iter = meta_class.beginProperties(); iter != meta_class.endProperties(); ++iter)
  174. {
  175. ++count;
  176. }
  177. ensure_equals(count, TestReflectionData::getPropertyCount());
  178.   }
  179.   
  180.   template<> template<>
  181.   void TestReflectionObject::test<10>()
  182.   {
  183. // Check meta classes of different types do not compare equal.
  184. const LLMetaClass* reflection_data_meta_class = &(LLMetaClassT<TestReflectionData>::instance());
  185. const LLMetaClass* aggregated_data_meta_class = &(LLMetaClassT<TestAggregatedData>::instance());
  186. ensure_not_equals(reflection_data_meta_class, aggregated_data_meta_class);
  187.   }
  188.   
  189.   template<> template<>
  190.   void TestReflectionObject::test<11>()
  191.   {
  192. // Check class cast checks.
  193. const LLMetaClass& meta_class = LLMetaClassT<TestReflectionData>::instance();
  194. TestAggregatedData* aggregated_data = new TestAggregatedData();
  195. LLMetaClass::PropertyIterator iter;
  196. U32 exception_count = 0;
  197. for(iter = meta_class.beginProperties(); iter != meta_class.endProperties(); ++iter)
  198. {
  199. try
  200. {
  201. const LLMetaProperty* property = (*iter).second;
  202. const LLReflective* reflective = property->get(aggregated_data); // Wrong reflective type, should throw exception.
  203. // useless op to get rid of compiler warning.
  204. reflective = NULL;
  205. }
  206. catch(...)
  207. {
  208. ++exception_count;
  209. }
  210. }
  211. ensure_equals(exception_count, getPropertyCount());
  212.   }
  213. }