Example #1
0
        public void PrintUsageNoVerb()
        {
            string usage;

            using (StringWriter strWtr = new(new StringBuilder(1000))) {
                ReflectionKit.InvokeStaticMethod(typeof(Parser), "PrintUsageWithError",
                                                 new[] {
                    typeof(TextWriter),
                    typeof(string),
                    typeof(Type[]),
                    typeof(VerbInfo)
                },
                                                 new object[] {
                    strWtr,
                    "No verb selected.",
                    new[] { typeof(UnpackOptions), typeof(CopyOptions) },
                    null
                });
                usage = strWtr.ToString();
            }

            Assert.IsNotNull(usage);
            Assert.IsNotEmpty(usage);

            // Assert.IsTrue(usage.Contains("xcite.clip.tests 1.0.0.0"));
            Assert.IsTrue(usage.Contains("ReSharperTestRunner 2.6.2.69"));
            // Assert.IsTrue(usage.Contains("Copyright ©  2019"));
            Assert.IsTrue(usage.Contains("ERROR(S)"));
            Assert.IsTrue(usage.Contains("No verb selected."));
            Assert.IsTrue(usage.Contains("ARGUMENT(S)"));
            Assert.IsTrue(usage.Contains("  unpack     bla bla bla"));
            Assert.IsTrue(usage.Contains("    copy     uhuhu"));
            Assert.IsTrue(usage.Contains("Unknown action. Check help!"));
        }
Example #2
0
        public void PrintUsageWithVerb()
        {
            string usage;

            using (StringWriter strWtr = new(new StringBuilder(1000))) {
                VerbInfo verbNfo = (VerbInfo)ReflectionKit.InvokeStaticMethod(typeof(Parser), "GetVerb",
                                                                              new[] { typeof(string), typeof(Type[]) },
                                                                              new object[] {
                    "unpack",
                    new[] { typeof(UnpackOptions), typeof(CopyOptions) }
                });

                ReflectionKit.InvokeStaticMethod(typeof(Parser), "PrintUsageWithError",
                                                 new[] {
                    typeof(TextWriter),
                    typeof(string),
                    typeof(Type[]),
                    typeof(VerbInfo)
                },
                                                 new object[] {
                    strWtr,
                    "Missing required argument.",
                    new[] { typeof(UnpackOptions), typeof(CopyOptions) },
                    verbNfo,
                });
                usage = strWtr.ToString();
            }

            Assert.IsNotNull(usage);
            Assert.IsNotEmpty(usage);

            // Assert.IsTrue(usage.Contains("xcite.clip.tests 1.0.0.0"));
            Assert.IsTrue(usage.Contains("ReSharperTestRunner 2.6.2.69"));
            // Assert.IsTrue(usage.Contains("Copyright ©  2019"));
            Assert.IsTrue(usage.Contains("ERROR(S)"));
            Assert.IsTrue(usage.Contains("Missing required argument."));
            Assert.IsTrue(usage.Contains("ARGUMENT(S)"));
            Assert.IsTrue(usage.Contains("      -f, --file     (Required) Source path"));
            Assert.IsTrue(usage.Contains("      -d, --dest     (Required) Destination path"));
            Assert.IsTrue(usage.Contains("  -o, --override     Override flag"));
            Assert.IsTrue(usage.Contains("      -m, --Mode     (Default Normal) Unpack mode"));
            Assert.IsTrue(usage.Contains("      -n, --name     (Required) Name of the machine to address"));
            Assert.IsTrue(usage.Contains("      -p, --port     (Default 9898) Port of the machine to address"));
            Assert.IsTrue(usage.Contains("Missing arguments. Check help!"));
        }
Example #3
0
        public void PrintUsageWithVerbAndLongDescription()
        {
            string usage;

            using (StringWriter strWtr = new(new StringBuilder(1000))) {
                VerbInfo verbNfo = (VerbInfo)ReflectionKit.InvokeStaticMethod(typeof(Parser), "GetVerb",
                                                                              new[] { typeof(string), typeof(Type[]) },
                                                                              new object[] {
                    "detail",
                    new[] { typeof(DetailOptions), typeof(UnpackOptions) }
                });

                ReflectionKit.InvokeStaticMethod(typeof(Parser), "PrintUsageWithError",
                                                 new[] {
                    typeof(TextWriter),
                    typeof(string),
                    typeof(Type[]),
                    typeof(VerbInfo)
                },
                                                 new object[] {
                    strWtr,
                    "Missing required argument.",
                    new[] { typeof(UnpackOptions), typeof(CopyOptions) },
                    verbNfo,
                });
                usage = strWtr.ToString();
            }

            Assert.IsNotNull(usage);
            Assert.IsNotEmpty(usage);

            // Assert.IsTrue(usage.Contains("xcite.clip.tests 1.0.0.0"));
            Assert.IsTrue(usage.Contains("ReSharperTestRunner 2.6.2.69"));
            // Assert.IsTrue(usage.Contains("Copyright ©  2019"));
            Assert.IsTrue(usage.Contains("ERROR(S)"));
            Assert.IsTrue(usage.Contains("Missing required argument."));
            Assert.IsTrue(usage.Contains("ARGUMENT(S)"));
            Assert.IsTrue(usage.Contains("       -x, --ex     Might do something. Don't known."));
            Assert.IsTrue(usage.Contains("  -y, --ypsilon     (Required) This really does something. So it's heavily recommended to activate this option,"));
            Assert.IsTrue(usage.Contains("                    so that you can see some awesome features that you would have never expected. If you have"));
            Assert.IsTrue(usage.Contains("                    some further questions, please ask the programmer."));
            Assert.IsTrue(usage.Contains("Missing arguments. Check help!"));
        }