Exemple #1
0
        public void returns_failed_report_when_generating_report_throws_exception()
        {
            using (var consoleOutput = CapturedConsoleOutput.StartCapturing())
            {
                PrtgExeScriptAdvanced.Run(() =>
                {
                    throw new Exception("welp!");
                });

                consoleOutput.ReadAll().Should().Be(
                    "<prtg>" +
                    "<error>1</error>" +
                    "<text>Sensor has failed - an exception was thrown: welp!</text>" +
                    "</prtg>"
                    );
            }
        }
Exemple #2
0
        public void can_print_inner_exceptions_for_AggregateException()
        {
            using (var consoleOutput = CapturedConsoleOutput.StartCapturing())
            {
                PrtgExeScriptAdvanced.Run(() =>
                {
                    throw new AggregateException(new Exception("Exception1"), new Exception("Exception2"));
                });

                consoleOutput.ReadAll().Should().Be(
                    "<prtg>" +
                    "<error>1</error>" +
                    "<text>Sensor has failed - an aggregate exception 'One or more errors occurred.' with following inner exceptions was thrown: Exception1; Exception2</text>" +
                    "</prtg>"
                    );
            }
        }
        public void can_print_inner_exceptions_for_AggregateException()
        {
            using (var consoleOutput = CapturedConsoleOutput.StartCapturing())
            {
                PrtgExeScriptAdvanced.Run(() =>
                {
                    throw new AggregateException(new Exception("Exception1"), new Exception("Exception2"));
                });

                var output = consoleOutput.ReadAll();

                output.Should().Match(
                    "<prtg>" +
                    "<error>1</error>" +
                    "<text>Sensor has failed - *</text>" +
                    "</prtg>"
                    );

                output.Should().Contain("Exception1");
                output.Should().Contain("Exception2");
            }
        }
Exemple #4
0
        public void can_print_prtg_report_to_the_console()
        {
            using (var consoleOutput = CapturedConsoleOutput.StartCapturing())
            {
                PrtgExeScriptAdvanced.Run(() => PrtgReport.Successful(new[]
                {
                    new PrtgResult("First channel", 10),
                    new PrtgResult("Second channel", 20)
                }));

                consoleOutput.ReadAll().Should().Be(
                    "<prtg>" +
                    "<result>" +
                    "<channel>First channel</channel>" +
                    "<value>10</value>" +
                    "</result>" +
                    "<result>" +
                    "<channel>Second channel</channel>" +
                    "<value>20</value>" +
                    "</result>" +
                    "</prtg>"
                    );
            }
        }