Esempio n. 1
0
        public static IEnumerable <object[]> GetContextKnowledgeData()
        {
            yield return(new object[]
            {
                "command0",
                new []
                {
                    CommandLineItem.Command("command0"),
                },
            });

            yield return(new object[]
            {
                "command0 /opt1 opt1_val /flag2 --flag3 -4 argument5 \"arg ument 6\" arg_7",
                new []
                {
                    CommandLineItem.Command("command0"),
                    CommandLineItem.Option("opt1", "opt1_val"),
                    CommandLineItem.Flag("flag2"),
                    CommandLineItem.Flag("flag3"),
                    CommandLineItem.Flag("4"),
                    CommandLineItem.Argument("argument5"),
                    CommandLineItem.Argument("arg ument 6"),
                    CommandLineItem.Argument("arg_7"),
                },
            });
        }
Esempio n. 2
0
        public void ItCanDoSomethingWithContextKnowledge(string line, CommandLineItem[] expectedItems)
        {
            var _parser = CustomCommandLineParser.Create(_context =>
            {
                string _optionKey   = null;
                var _optionKeyIndex = -1;
                return(_part =>
                {
                    if (_context.Items.Count == 0)
                    {
                        return CommandLineItem.Command(_part);
                    }

                    if (_part.Value.StartsWith("/opt"))
                    {
                        _optionKey = _part.Value.Substring(1);
                        _optionKeyIndex = _part.Index;
                        return null;
                    }

                    if (_part.Value.StartsWith("--opt"))
                    {
                        _optionKey = _part.Value.Substring(2);
                        _optionKeyIndex = _part.Index;
                        return null;
                    }

                    if (_part.Value.StartsWith("--"))
                    {
                        return CommandLineItem.Flag(_part.Value.Substring(2));
                    }

                    if (_part.Value.StartsWith("/") || _part.Value.StartsWith("-"))
                    {
                        return CommandLineItem.Flag(_part.Value.Substring(1));
                    }

                    if (_optionKey != null && _optionKeyIndex == _part.Index - 1)
                    {
                        return CommandLineItem.Option(_optionKey, _part.Value);
                    }

                    return CommandLineItem.Argument(_part);
                });
            });
            var _splitter = CommandLineSplitter.Default;

            TestHelper.TestCommandLineParser(_parser, _splitter, line, expectedItems);
        }
        public static IEnumerable <object[]> GetData()
        {
            yield return(new object[]
            {
                "command0",
                new []
                {
                    CommandLineItem.Command("command0"),
                },
            });

            yield return(new object[]
            {
                string.Empty,
                new CommandLineItem[]
                {
                },
            });

            yield return(new object[]
            {
                " ",
                new CommandLineItem[]
                {
                },
            });

            yield return(new object[]
            {
                "command0 /opt1=opt1_val /flag2 --flag3 -4 argument5 \"--arg ument 6\" arg_7 -abcd=\"efgh i'h\"",
                new []
                {
                    CommandLineItem.Command("command0"),
                    CommandLineItem.Option("opt1", "opt1_val"),
                    CommandLineItem.Flag("flag2"),
                    CommandLineItem.Flag("flag3"),
                    CommandLineItem.Flag("4"),
                    CommandLineItem.Argument("argument5"),
                    CommandLineItem.Argument("--arg ument 6"),
                    CommandLineItem.Argument("arg_7"),
                    CommandLineItem.Flag("a"),
                    CommandLineItem.Flag("b"),
                    CommandLineItem.Flag("c"),
                    CommandLineItem.Option("d", "efgh i'h"),
                },
            });

            yield return(new object[]
            {
                "\"co\"mman\"d0\" /\"opt1\"=\"opt1_val\" \"/flag2\" --flag3 -\"4\" arg\"ume\"nt5 \"--arg um\"ent 6\"\" arg_7 -\"abcd=\"\"efgh i'h\"",
                new []
                {
                    CommandLineItem.Command("command0"),
                    CommandLineItem.Option("opt1", "opt1_val"),
                    CommandLineItem.Argument("/flag2"),
                    CommandLineItem.Flag("flag3"),
                    CommandLineItem.Flag("4"),
                    CommandLineItem.Argument("argument5"),
                    CommandLineItem.Argument("--arg ument"),
                    CommandLineItem.Argument("6"),
                    CommandLineItem.Argument("arg_7"),
                    CommandLineItem.Flag("a"),
                    CommandLineItem.Flag("b"),
                    CommandLineItem.Flag("c"),
                    CommandLineItem.Option("d", "efgh i'h"),
                },
            });

            yield return(new object[]
            {
                "--a asd",
                new []
                {
                    CommandLineItem.Flag("a"),
                    CommandLineItem.Command("asd"),
                },
            });

            yield return(new object[]
            {
                "cmd -=a - = /",
                new []
                {
                    CommandLineItem.Command("cmd"),
                    CommandLineItem.Option(string.Empty, "a"),
                    CommandLineItem.Flag(string.Empty),
                    CommandLineItem.Argument("="),
                    CommandLineItem.Flag(string.Empty),
                },
            });

            yield return(new object[]
            {
                "-=a - = /",
                new []
                {
                    CommandLineItem.Option(string.Empty, "a"),
                    CommandLineItem.Flag(string.Empty),
                    CommandLineItem.Command("="),
                    CommandLineItem.Flag(string.Empty),
                },
            });
        }