Ejemplo n.º 1
0
        public void SetMessageValue(EventInfo eventInfo, string value, string messageValue, string messageValueType, string identifier)
        {
            MessageValueHandler handler             = new MessageValueHandler();
            MessageValue        rawMessageValue     = (MessageValue)GetStringAsEnum <MessageValue>(messageValue);
            MessageValueType    rawMessageValueType = (MessageValueType)GetStringAsEnum <MessageValueType>(messageValueType);
            VariableString      rawIdentifier       = (identifier == null) ? null : VariableString.GetAsVariableString(identifier, false);

            handler.SetValue(eventInfo, rawMessageValue, rawMessageValueType, rawIdentifier, value);
        }
Ejemplo n.º 2
0
        public string Connect(string destinationHost, int?destinationPort)
        {
            ThenConnect then = new ThenConnect()
            {
                DestinationHost = (destinationHost == null) ? null : VariableString.GetAsVariableString(destinationHost.ToString(), false),
                DestinationPort = (destinationPort == null) ? null : VariableString.GetAsVariableString(destinationPort.ToString(), false)
            };

            return(then.Perform(eventInfo).ToString());
        }
Ejemplo n.º 3
0
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            VariableString varStr = null;

            if (value != null)
            {
                varStr = VariableString.GetAsVariableString(value.ToString());
            }
            return(varStr);
        }
Ejemplo n.º 4
0
        public string AddMessage(string direction, string messageText, bool insertAtBeginning)
        {
            ThenAddMessage then = new ThenAddMessage()
            {
                Direction         = (DataDirection)GetStringAsEnum <DataDirection>(direction),
                MessageText       = VariableString.GetAsVariableString(messageText, false),
                InsertAtBeginning = insertAtBeginning
            };

            return(then.Perform(eventInfo).ToString());
        }
Ejemplo n.º 5
0
        public void VariableString_GetTextTest()
        {
            Mock <Self> selfMock = new Mock <Self>()
            {
                CallBase = true
            };
            Self mockedSelf = selfMock.Object;

            Singleton <ISelf> .Instance = mockedSelf;

            Variables connectionVariables = new Variables();

            mockedSelf.Variables.Add <string>("var1").Value = "Hello,";
            mockedSelf.Variables.Add <string>("var2").Value = " how";
            connectionVariables.Add <string>("var1").Value  = " are";
            connectionVariables.Add <string>("var2").Value  = " you";

            VariableString varString1 = VariableString.GetAsVariableString("{global:var1}{global:var2}{channel:var1}{channel:var2}{global:var3}{channel:var3}?");
            VariableString varString2 = VariableString.GetAsVariableString("Hello, how are you?");

            Assert.AreEqual("Hello, how are you?", varString1.GetText(connectionVariables));
            Assert.AreEqual("Hello, how are you?", varString2.GetText(connectionVariables));
        }
Ejemplo n.º 6
0
        public void VariableString_GetFormattedStringTest()
        {
            var testCases = new[]
            {
                new
                {
                    FormattedString = "{global:var1}{global:var2}{channel:var1}{channel:var2}{global:var3}{channel:var3}?",
                    ExpectedString  = "{global:var1}{global:var2}{channel:var1}{channel:var2}{global:var3}{channel:var3}?",
                    ExpectException = false
                },
                new
                {
                    FormattedString = "{var1}{var2}{channel:var1}{channel:var2}{var3}{channel:var3}?",
                    ExpectedString  = "{global:var1}{global:var2}{channel:var1}{channel:var2}{global:var3}{channel:var3}?",
                    ExpectException = false
                },
                new
                {
                    FormattedString = "{{var1}}{{{{var1}}}}{{channel:var1}}{{channel:var1}}{{var1}}{{channel:var1}}?",
                    ExpectedString  = "{var1}{{var1}}{channel:var1}{channel:var1}{var1}{channel:var1}?",
                    ExpectException = false
                },
                new
                {
                    FormattedString = "{global:var1}{global:var1}{channel:var1}{local:var1}{global:var1}{channel:var1}?",
                    ExpectedString  = (string)null,
                    ExpectException = true
                },
                new
                {
                    FormattedString = "{global:var1?",
                    ExpectedString  = (string)null,
                    ExpectException = true
                },
                new
                {
                    FormattedString = "global}:var1?",
                    ExpectedString  = (string)null,
                    ExpectException = true
                },
                new
                {
                    FormattedString = "glo{bal{:var1?",
                    ExpectedString  = (string)null,
                    ExpectException = true
                }
            };

            foreach (var testCase in testCases)
            {
                if (testCase.ExpectException)
                {
                    try
                    {
                        VariableString varString = VariableString.GetAsVariableString(testCase.FormattedString);
                        Assert.Fail("Expected an exception. No exception thrown");
                    }
                    catch (FormatException)
                    {
                    }
                }
                else
                {
                    VariableString varString = VariableString.GetAsVariableString(testCase.FormattedString);
                    Assert.AreEqual(testCase.ExpectedString, varString.GetFormattedString());
                }
            }
        }