Esempio n. 1
0
        public void DefaultDoubleValue_Add_NonMapCollection(double value)
        {
            DefaultValueProvider <G> valueProvider = new DefaultValueProvider <G>();
            Dictionary <IValuable <G>, ValuePointer <G> > collectionValues = new Dictionary <IValuable <G>, ValuePointer <G> >()
            {
                { new DefaultIntValue <G>(0), new ValuePointer <G> {
                      Value = Mock.Of <IValuable <G> >()
                  } },
                { new DefaultIntValue <G>(1), new ValuePointer <G> {
                      Value = Mock.Of <IValuable <G> >()
                  } },
                { new DefaultIntValue <G>(2), new ValuePointer <G> {
                      Value = Mock.Of <IValuable <G> >()
                  } }
            };
            DefaultArrayMapValue <G> collectionValue = new DefaultArrayMapValue <G>(collectionValues, valueProvider);

            DefaultDoubleValue <G>     sut    = new DefaultDoubleValue <G>(value);
            DefaultCollectionValue <G> result = (DefaultCollectionValue <G>)sut.Add(collectionValue, valueProvider);

            List <KeyValuePair <IValuable <G>, ValuePointer <G> > > entries = result.GetEntries();

            Assert.Equal(Enumerable.Range(0, 4), entries.Select(kv => kv.Key).Cast <IValue>().Select(v => Convert.ToInt32(v.GetData())));
            Assert.Equal(new IValuable <G>[] { sut }.Concat(collectionValues.Values.Select(v => v.Value)), entries.Select(kv => kv.Value).Select(vp => vp.Value));
            Assert.False(result.IsMap);
            Assert.Equal(Enumerable.Range(0, 4), entries.Select(e => e.Value).Cast <EntryValuePointer <G> >().Select(v => v.Index));
        }
Esempio n. 2
0
        public void DefaultDoubleValue_Add(double value, object otherVal, Type resultType, bool throwsException)
        {
            DefaultValueProvider <G> valueProvider = new DefaultValueProvider <G>();

            DefaultDoubleValue <G> sut      = new DefaultDoubleValue <G>(value);
            IValue <G>             newValue = null;
            Action action = () =>
            {
                newValue = (IValue <G>)sut.Add(otherVal.GetAsValue(), valueProvider);
            };

            if (throwsException)
            {
                Assert.Throws <EngineRuntimeException>(action);
            }
            else
            {
                action();
            }

            if (!throwsException)
            {
                switch (otherVal)
                {
                case double doubleVal:
                    Assert.Equal(Convert.ChangeType(value + doubleVal, resultType), newValue.GetData());
                    break;

                case int intVal:
                    Assert.Equal(Convert.ChangeType(value + intVal, resultType), newValue.GetData());
                    break;

                case long longVal:
                    Assert.Equal(Convert.ChangeType(value + longVal, resultType), newValue.GetData());
                    break;

                case string strVal:
                    Assert.Equal(Convert.ChangeType(value + strVal, resultType), newValue.GetData());
                    break;

                case null:
                    Assert.Equal(sut, newValue);
                    break;
                }
            }
        }
Esempio n. 3
0
        public void DefaultDoubleValue_IsNotEqualTo(double value, object otherVal, bool throwsException)
        {
            DefaultValueProvider <G> valueProvider = new DefaultValueProvider <G>();

            DefaultDoubleValue <G> sut      = new DefaultDoubleValue <G>(value);
            IValue <G>             newValue = null;
            Action action = () =>
            {
                newValue = (IValue <G>)sut.IsNotEqualTo(otherVal.GetAsValue(), valueProvider);
            };

            if (throwsException)
            {
                Assert.Throws <EngineRuntimeException>(action);
            }
            else
            {
                action();
            }


            if (!throwsException)
            {
                switch (otherVal)
                {
                case double doubleVal:
                    Assert.Equal(value != doubleVal, newValue.GetData());
                    break;

                case int intVal:
                    Assert.Equal(value != intVal, newValue.GetData());
                    break;

                case long longVal:
                    Assert.Equal(value != longVal, newValue.GetData());
                    break;

                default:
                    Assert.True((bool)newValue.GetData());
                    break;
                }
            }
        }
Esempio n. 4
0
        public void DefaultDoubleValue_Add_MapCollection(double value)
        {
            DefaultValueProvider <G> valueProvider = new DefaultValueProvider <G>();
            Dictionary <IValuable <G>, ValuePointer <G> > collectionValues = new Dictionary <IValuable <G>, ValuePointer <G> >()
            {
                { new DefaultIntValue <G>(3), new ValuePointer <G> {
                      Value = Mock.Of <IValuable <G> >()
                  } },
                { new DefaultIntValue <G>(4), new ValuePointer <G> {
                      Value = Mock.Of <IValuable <G> >()
                  } },
                { new DefaultIntValue <G>(5), new ValuePointer <G> {
                      Value = Mock.Of <IValuable <G> >()
                  } },
            };
            DefaultArrayMapValue <G> collectionValue = new DefaultArrayMapValue <G>(collectionValues, valueProvider);

            DefaultDoubleValue <G> sut = new DefaultDoubleValue <G>(value);

            Assert.Throws <EngineRuntimeException>(() =>
            {
                sut.Add(collectionValue, valueProvider);
            });
        }