Esempio n. 1
0
        public void ArgumentHandler_works()
        {
            var x = new ArgumentHandler(
                new Argument("px").Required().RequiredValueCount(1).LongId("profileXml"),
                new Argument("p").Optional().RequiredValueCount(1));
            var result = x.SetInputParam("-px", @"c:\abc.xml");

            Assert.True(result);
        }
Esempio n. 2
0
        public void Deployer_can_be_constructed(ConsoleAppTestInput consoleAppTestInput, ExpectedData expectedData)
        {
            // ---------- setup -----------
            _testTools.SetupTFiles(consoleAppTestInput.Files);
            var args = _testTools.ReplacePlaceholders2(consoleAppTestInput.Args).Split(' ');

            if (!_argumentHandler.SetInputParam(args))
            {
                Assert.Fail(_argumentHandler.ExceptionThrown.Message);
            }

            // ----------- test ------------
            var deployer = new Deployer(_argumentHandler);

            Assert.NotNull(deployer);

            Assert.That(deployer.ProjectRoot, Is.EqualTo(_testTools.ReplacePlaceholders(expectedData.ProjectRoot)));
            Assert.That(deployer.ProjectName, Is.EqualTo(_testTools.ReplacePlaceholders(expectedData.ProjectName)));
        }
Esempio n. 3
0
        public void Argument_property_stop_causes_execution_to_stop()
        {
            var x = new ArgumentHandler(
                new Argument("p").RequiredValueCount(1).Required(),
                new Argument("?").Optional().IgnoreOthers()
                );

            x.SetInputParam("-?", "-p", "abc");
            Assert.True(x.Contains("?"));
            Assert.False(x.Contains("p"));
        }
Esempio n. 4
0
        public void ArgumentHandler_can_be_initialized_with_array_of_Arguments()
        {
            var x = new ArgumentHandler(
                new Argument("px").Required().RequiredValueCount(1).LongId("profileXml"),
                new Argument("p").Optional().RequiredValueCount(1));

            Assert.NotNull(x);

            var result = x.SetInputParam("-px", @"c:\abc.xml");

            Assert.True(result);
        }
Esempio n. 5
0
        public void ArgumentHandler_throws_exception_when_syntax_has_error()
        {
            var x      = new ArgumentHandler(new Argument("a").RequiredValueCount(1));
            var result = x.SetInputParam("-");

            Assert.False(result);
            Assert.NotNull(x.ExceptionThrown);
            Assert.IsInstanceOf <UnknownArgumentIdException>(x.ExceptionThrown);
            Assert.That(((UnknownArgumentIdException)x.ExceptionThrown).Code,
                        Is.EqualTo(UnknownArgumentIdException.ErrCode));
            Assert.That(x.ExceptionThrown.Message, Is.EqualTo(string.Format(UnknownArgumentIdException.MsgMask, "-")));
        }
Esempio n. 6
0
        public void ArgumentHandler_throws_exception_when_required_argument_is_missing()
        {
            const string requiredArgument = "a";
            const string optionalArgument = "b";

            var x = new ArgumentHandler(
                new Argument(requiredArgument),
                new Argument(optionalArgument).Optional());

            var result = x.SetInputParam("-" + optionalArgument);

            Assert.False(result);

            Assert.NotNull(x.ExceptionThrown);

            Assert.IsInstanceOf <MissingRequiredArgumentException>(x.ExceptionThrown);

            Assert.That(((MissingRequiredArgumentException)x.ExceptionThrown).Code(),
                        Is.EqualTo(MissingRequiredArgumentException.Code));

            Assert.That(x.ExceptionThrown.Message,
                        Is.EqualTo(string.Format(MissingRequiredArgumentException.MsgMask, requiredArgument)));
        }
Esempio n. 7
0
        public void ArgumentHandler_throws_exception_when_value_is_missing(int requiredCount, string[] givenValueStrings,
                                                                           string expectedValueCountMsg)
        {
            const string argumentName = "a";

            var x = new ArgumentHandler(new Argument(argumentName).RequiredValueCount(requiredCount));

            var a = new string[givenValueStrings.Length + 1];

            a[0] = "-" + argumentName;
            var index = 1;

            foreach (var aGivenValueGivenString in givenValueStrings)
            {
                a[index++] = aGivenValueGivenString;
            }

            var result = x.SetInputParam(a);

            Assert.False(result);

            Assert.NotNull(x.ExceptionThrown);

            Assert.IsInstanceOf <MissingValuesException>(x.ExceptionThrown);

            Assert.That(((MissingValuesException)x.ExceptionThrown).Code(), Is.EqualTo(MissingValuesException.Code));

            var expectedMessage = string.Format(
                MissingValuesException.MsgMask,
                "-" + argumentName,
                expectedValueCountMsg,
                string.Join(" ", givenValueStrings)
                );

            Assert.That(x.ExceptionThrown.Message, Is.EqualTo(expectedMessage));
        }