Exemplo n.º 1
0
        public void SetUp()
        {
            ConfigurationCommonEventTypeBean config = new ConfigurationCommonEventTypeBean();

            config.AddFieldProperty("f_legVal", "fieldLegacyVal");
            config.AddFieldProperty("f_strArr", "fieldStringArray");
            config.AddFieldProperty("f_strMap", "fieldMapped");
            config.AddFieldProperty("f_legNested", "fieldNested");

            config.AddMethodProperty("m_legVal", "ReadLegacyBeanVal");
            config.AddMethodProperty("m_strArr", "ReadStringArray");
            config.AddMethodProperty("m_strInd", "ReadStringIndexed");
            config.AddMethodProperty("m_strMapKeyed", "ReadMapByKey");
            config.AddMethodProperty("m_strMap", "ReadMap");
            config.AddMethodProperty("m_legNested", "ReadLegacyNested");

            builder = new PropertyListBuilderExplicit(config);
        }
        public void SetUp()
        {
            var config = new ConfigurationCommonEventTypeBean();

            // add 2 explicit properties, also supported
            config.AddFieldProperty("x", "fieldNested");
            config.AddMethodProperty("y", "ReadLegacyBeanVal");

            builder = new PropertyListBuilderNative(config);
        }
Exemplo n.º 3
0
        public void TestEventBeanPublicFields()
        {
            RegressionSession session = RegressionRunner.Session();

            ConfigurationCommonEventTypeBean legacyDef = new ConfigurationCommonEventTypeBean();
            legacyDef.AccessorStyle = AccessorStyle.PUBLIC;
            session.Configuration.Common.AddEventType("MyLegacyNestedEvent", typeof(SupportLegacyBean.LegacyNested), legacyDef);

            ConfigurationCommonEventTypeBean anotherLegacyEvent = new ConfigurationCommonEventTypeBean();
            anotherLegacyEvent.AccessorStyle = AccessorStyle.PUBLIC;
            anotherLegacyEvent.AddFieldProperty("explicitFSimple", "fieldLegacyVal");
            anotherLegacyEvent.AddFieldProperty("explicitFIndexed", "fieldStringArray");
            anotherLegacyEvent.AddFieldProperty("explicitFNested", "fieldNested");
            anotherLegacyEvent.AddMethodProperty("explicitMSimple", "ReadLegacyBeanVal");
            anotherLegacyEvent.AddMethodProperty("explicitMArray", "ReadStringArray");
            anotherLegacyEvent.AddMethodProperty("explicitMIndexed", "ReadStringIndexed");
            anotherLegacyEvent.AddMethodProperty("explicitMMapped", "ReadMapByKey");
            session.Configuration.Common.AddEventType("AnotherLegacyEvent", typeof(SupportLegacyBean), anotherLegacyEvent);

            RegressionRunner.Run(session, new EventBeanPublicAccessors());
            session.Dispose();
        }
Exemplo n.º 4
0
        private void TryInvalidField(string fieldName, Type clazz)
        {
            ConfigurationCommonEventTypeBean config = new ConfigurationCommonEventTypeBean();

            config.AddFieldProperty("name", fieldName);
            builder = new PropertyListBuilderExplicit(config);

            try
            {
                builder.AssessProperties(clazz);
            }
            catch (ConfigurationException ex)
            {
                // expected
                log.Debug(ex.Message);
            }
        }
Exemplo n.º 5
0
        public void TestEventBeanExplicitOnly()
        {
            RegressionSession session = RegressionRunner.Session();

            ConfigurationCommonEventTypeBean legacyDef = new ConfigurationCommonEventTypeBean();
            legacyDef.AccessorStyle = AccessorStyle.EXPLICIT;
            legacyDef.AddFieldProperty("explicitFNested", "fieldNested");
            legacyDef.AddMethodProperty("explicitMNested", "ReadLegacyNested");
            session.Configuration.Common.AddEventType("MyLegacyEvent", typeof(SupportLegacyBean), legacyDef);

            legacyDef = new ConfigurationCommonEventTypeBean();
            legacyDef.AccessorStyle = AccessorStyle.EXPLICIT;
            legacyDef.AddFieldProperty("fieldNestedClassValue", "fieldNestedValue");
            legacyDef.AddMethodProperty("readNestedClassValue", "ReadNestedValue");
            session.Configuration.Common.AddEventType("MyLegacyNestedEvent", typeof(SupportLegacyBean.LegacyNested), legacyDef);

            ConfigurationCommonEventTypeBean mySupportBean = new ConfigurationCommonEventTypeBean();
            mySupportBean.AccessorStyle = AccessorStyle.EXPLICIT;
            session.Configuration.Common.AddEventType("MySupportBean", typeof(SupportBean), mySupportBean);

            RegressionRunner.Run(session, new EventBeanExplicitOnly());
            session.Dispose();
        }
Exemplo n.º 6
0
        private static void Configure(Configuration configuration)
        {
            var myLegacyNestedEvent = new ConfigurationCommonEventTypeBean();
            myLegacyNestedEvent.AccessorStyle = AccessorStyle.EXPLICIT;
            myLegacyNestedEvent.AddFieldProperty("fieldNestedClassValue", "fieldNestedValue");
            myLegacyNestedEvent.AddMethodProperty("readNestedClassValue", "ReadNestedValue");
            configuration.Common.AddEventType(
                "MyLegacyNestedEvent",
                typeof(SupportLegacyBean.LegacyNested),
                myLegacyNestedEvent);

            foreach (var clazz in new[] {
                typeof(SupportBean),
                typeof(SupportOverrideOne),
                typeof(SupportOverrideOneA),
                typeof(SupportOverrideBase),
                typeof(SupportOverrideOneB),
                typeof(ISupportBaseAB),
                typeof(ISupportA),
                typeof(ISupportB),
                typeof(ISupportC),
                typeof(ISupportAImplSuperG),
                typeof(ISupportAImplSuperGImplPlus),
                typeof(SupportBeanComplexProps),
                typeof(SupportBeanWriteOnly),
                typeof(SupportBeanDupProperty),
                typeof(SupportBeanCombinedProps)
            }) {
                configuration.Common.AddEventType(clazz.Name, clazz);
            }

            configuration.Common.AddEventType("SomeKeywords", typeof(SupportBeanReservedKeyword));
            configuration.Common.AddEventType("Order", typeof(SupportBeanReservedKeyword));

            var myFinalEvent = new ConfigurationCommonEventTypeBean();
            myFinalEvent.AccessorStyle = AccessorStyle.NATIVE;
            configuration.Common.AddEventType("MyFinalEvent", typeof(SupportBeanFinal), myFinalEvent);

            var myLegacyTwo = new ConfigurationCommonEventTypeBean();
            myLegacyTwo.AccessorStyle = AccessorStyle.NATIVE;
            myLegacyTwo.AddFieldProperty("explicitFInt", "fieldIntPrimitive");
            myLegacyTwo.AddMethodProperty("explicitMGetInt", "GetIntPrimitive");
            myLegacyTwo.AddMethodProperty("explicitMReadInt", "ReadIntPrimitive");
            configuration.Common.AddEventType("MyLegacyTwo", typeof(SupportLegacyBeanInt), myLegacyTwo);

            IDictionary<string, object> def = new Dictionary<string, object>();
            def.Put("Mapped", new Dictionary<string, object>());
            def.Put("Indexed", typeof(int[]));
            configuration.Common.AddEventType("MapEvent", def);

            IDictionary<string, object> defType = new Dictionary<string, object>();
            defType.Put("name", typeof(string));
            defType.Put("value", typeof(string));
            defType.Put("properties", typeof(IDictionary<string, object>));
            configuration.Common.AddEventType("InputEvent", defType);

            configuration.Common.AddEventType(
                "ObjectArrayEvent",
                new[] {"Mapped", "Indexed"},
                new object[] {new Dictionary<string, object>(), typeof(int[])});

            var myEventWithField = new ConfigurationCommonEventTypeBean();
            myEventWithField.AccessorStyle = AccessorStyle.PUBLIC;
            configuration.Common.AddEventType(
                typeof(EventBeanPropertyIterableMapList.MyEventWithField).Name,
                typeof(EventBeanPropertyIterableMapList.MyEventWithField),
                myEventWithField);

            var configNoCglib = new ConfigurationCommonEventTypeBean();
            configuration.Common.AddEventType(
                typeof(EventBeanPropertyIterableMapList.MyEventWithMethod).Name,
                typeof(EventBeanPropertyIterableMapList.MyEventWithMethod),
                configNoCglib);

            IDictionary<string, object> mapOuter = new Dictionary<string, object>();
            mapOuter.Put("p0int", typeof(int));
            mapOuter.Put("p0intarray", typeof(int[]));
            mapOuter.Put("p0map", typeof(IDictionary<string, object>));
            configuration.Common.AddEventType("MSTypeOne", mapOuter);

            string[] props = {"p0int", "p0intarray", "p0map"};
            object[] types = {typeof(int), typeof(int[]), typeof(IDictionary<string, object>)};
            configuration.Common.AddEventType("OASimple", props, types);

            IDictionary<string, object> frostyLev0 = new Dictionary<string, object>();
            frostyLev0.Put("p1id", typeof(int));
            configuration.Common.AddEventType("FrostyLev0", frostyLev0);

            IDictionary<string, object> frosty = new Dictionary<string, object>();
            frosty.Put("p0simple", "FrostyLev0");
            frosty.Put("p0bean", typeof(SupportBeanComplexProps));
            configuration.Common.AddEventType("Frosty", frosty);

            configuration.Common.AddEventType(
                "WheatLev0", new[] {"p1id"}, new object[] {typeof(int)});
            configuration.Common.AddEventType(
                "WheatRoot",
                new[] {"p0simple", "p0bean"},
                new object[] {"WheatLev0", typeof(SupportBeanComplexProps)});

            IDictionary<string, object> homerunLev0 = new Dictionary<string, object>();
            homerunLev0.Put("p1id", typeof(int));
            configuration.Common.AddEventType("HomerunLev0", homerunLev0);

            IDictionary<string, object> homerunRoot = new Dictionary<string, object>();
            homerunRoot.Put("p0simple", "HomerunLev0");
            homerunRoot.Put("p0array", "HomerunLev0[]");
            configuration.Common.AddEventType("HomerunRoot", homerunRoot);

            configuration.Common.AddEventType("GoalLev0", new[] {"p1id"}, new object[] {typeof(int)});
            configuration.Common.AddEventType(
                "GoalRoot",
                new[] {"p0simple", "p0array"},
                new object[] {"GoalLev0", "GoalLev0[]"});

            IDictionary<string, object> flywheelTypeLev0 = new Dictionary<string, object>();
            flywheelTypeLev0.Put("p1id", typeof(int));
            IDictionary<string, object> flywheelRoot = new Dictionary<string, object>();
            flywheelRoot.Put("p0simple", flywheelTypeLev0);
            configuration.Common.AddEventType("FlywheelRoot", flywheelRoot);

            IDictionary<string, object> gistInner = new Dictionary<string, object>();
            gistInner.Put("p2id", typeof(int));
            configuration.Common.AddEventType("GistInner", gistInner);

            IDictionary<string, object> typeMap = new Dictionary<string, object>();
            typeMap.Put("id", typeof(int));
            typeMap.Put("bean", typeof(SupportBean));
            typeMap.Put("beanarray", typeof(SupportBean[]));
            typeMap.Put("complex", typeof(SupportBeanComplexProps));
            typeMap.Put("complexarray", typeof(SupportBeanComplexProps[]));
            typeMap.Put("map", "GistInner");
            typeMap.Put("maparray", "GistInner[]");
            configuration.Common.AddEventType("GistMapOne", typeMap);
            configuration.Common.AddEventType("GistMapTwo", typeMap);

            configuration.Common.AddEventType("CashInner", new[] {"p2id"}, new object[] {typeof(int)});

            string[] propsCash = {"id", "bean", "beanarray", "complex", "complexarray", "map", "maparray"};
            object[] typesCash = {
                typeof(int), typeof(SupportBean), typeof(SupportBean[]), typeof(SupportBeanComplexProps),
                typeof(SupportBeanComplexProps[]), "CashInner", "CashInner[]"
            };
            configuration.Common.AddEventType("CashMapOne", propsCash, typesCash);
            configuration.Common.AddEventType("CashMapTwo", propsCash, typesCash);

            IDictionary<string, object> txTypeLev0 = new Dictionary<string, object>();
            txTypeLev0.Put("p1simple", typeof(SupportBean));
            txTypeLev0.Put("p1array", typeof(SupportBean[]));
            txTypeLev0.Put("p1complex", typeof(SupportBeanComplexProps));
            txTypeLev0.Put("p1complexarray", typeof(SupportBeanComplexProps[]));
            configuration.Common.AddEventType("TXTypeLev0", txTypeLev0);

            IDictionary<string, object> txTypeRoot = new Dictionary<string, object>();
            txTypeRoot.Put("p0simple", "TXTypeLev0");
            txTypeRoot.Put("p0array", "TXTypeLev0[]");
            configuration.Common.AddEventType("TXTypeRoot", txTypeRoot);

            string[] localTypeLev0 = {"p1simple", "p1array", "p1complex", "p1complexarray"};
            object[] typesLev0 = {
                typeof(SupportBean), typeof(SupportBean[]), typeof(SupportBeanComplexProps),
                typeof(SupportBeanComplexProps[])
            };
            configuration.Common.AddEventType("LocalTypeLev0", localTypeLev0, typesLev0);

            string[] localTypeRoot = {"p0simple", "p0array"};
            object[] typesOuter = {"LocalTypeLev0", "LocalTypeLev0[]"};
            configuration.Common.AddEventType("LocalTypeRoot", localTypeRoot, typesOuter);

            IDictionary<string, object> jimTypeLev1 = new Dictionary<string, object>();
            jimTypeLev1.Put("p2id", typeof(int));
            configuration.Common.AddEventType("JimTypeLev1", jimTypeLev1);

            IDictionary<string, object> jimTypeLev0 = new Dictionary<string, object>();
            jimTypeLev0.Put("p1simple", "JimTypeLev1");
            jimTypeLev0.Put("p1array", "JimTypeLev1[]");
            configuration.Common.AddEventType("JimTypeLev0", jimTypeLev0);

            IDictionary<string, object> jimTypeRoot = new Dictionary<string, object>();
            jimTypeRoot.Put("p0simple", "JimTypeLev0");
            jimTypeRoot.Put("p0array", "JimTypeLev0[]");
            configuration.Common.AddEventType("JimTypeRoot", jimTypeRoot);

            configuration.Common.AddEventType("JackTypeLev1", new[] {"p2id"}, new object[] {typeof(int)});
            configuration.Common.AddEventType(
                "JackTypeLev0",
                new[] {"p1simple", "p1array"},
                new object[] {"JackTypeLev1", "JackTypeLev1[]"});
            configuration.Common.AddEventType(
                "JackTypeRoot",
                new[] {"p0simple", "p0array"},
                new object[] {"JackTypeLev0", "JackTypeLev0[]"});

            IDictionary<string, object> mmInner = new Dictionary<string, object>();
            mmInner.Put("p2id", typeof(int));

            IDictionary<string, object> mmInnerMap = new Dictionary<string, object>();
            mmInnerMap.Put("p1bean", typeof(SupportBean));
            mmInnerMap.Put("p1beanComplex", typeof(SupportBeanComplexProps));
            mmInnerMap.Put("p1beanArray", typeof(SupportBean[]));
            mmInnerMap.Put("p1innerId", typeof(int));
            mmInnerMap.Put("p1innerMap", mmInner);
            configuration.Common.AddEventType("MMInnerMap", mmInnerMap);

            IDictionary<string, object> mmOuterMap = new Dictionary<string, object>();
            mmOuterMap.Put("p0simple", "MMInnerMap");
            mmOuterMap.Put("p0array", "MMInnerMap[]");
            configuration.Common.AddEventType("MMOuterMap", mmOuterMap);

            IDictionary<string, object> myTypeDef = new Dictionary<string, object>();
            myTypeDef.Put("candidate book", typeof(string));
            myTypeDef.Put("XML Message Type", typeof(string));
            myTypeDef.Put("select", typeof(int));
            myTypeDef.Put("children's books", typeof(int[]));
            myTypeDef.Put("my <> map", typeof(IDictionary<string, object>));
            configuration.Common.AddEventType("MyType", myTypeDef);

            configuration.Common.AddEventType(typeof(EventBeanPropertyResolutionWDefaults.LocalEventWithEnum));
            configuration.Common.AddEventType(typeof(EventBeanPropertyResolutionWDefaults.LocalEventWithGroup));

            var anotherLegacyNestedEvent = new ConfigurationCommonEventTypeBean();
            anotherLegacyNestedEvent.AccessorStyle = AccessorStyle.PUBLIC;
            configuration.Common.AddEventType(
                "AnotherLegacyNestedEvent",
                typeof(SupportLegacyBean.LegacyNested),
                anotherLegacyNestedEvent);

            configuration.Common.AddImportType(typeof(EventBeanPropertyResolutionWDefaults.LocalEventEnum));
            configuration.Common.AddImportType(typeof(EventBeanPropertyResolutionWDefaults.GROUP));
        }