This repository was archived by the owner on Jul 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExceptionUtilTests.cs
114 lines (104 loc) · 4.6 KB
/
ExceptionUtilTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* ====================
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of the Common Development
* and Distribution License("CDDL") (the "License"). You may not use this file
* except in compliance with the License.
*
* You can obtain a copy of the License at
* http://opensource.org/licenses/cddl1.php
* See the License for the specific language governing permissions and limitations
* under the License.
*
* When distributing the Covered Code, include this CDDL Header Notice in each file
* and include the License file at http://opensource.org/licenses/cddl1.php.
* If applicable, add the following below this CDDL Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
* ====================
* Portions Copyrighted 2014 ForgeRock AS.
*/
using System;
using NUnit.Framework;
using System.Diagnostics;
using Org.IdentityConnectors.Framework.Impl;
namespace FrameworkTests
{
/// <summary>
/// Contains helper function to verify the output of <see cref="ExceptionUtil"/>.
/// </summary>
internal class ExceptionUtilTestHelpers
{
/// <summary>
/// Tests whether the <paramref name="exception"/> is originated from the same function as in which the
/// <paramref name="stackTrace"/> was captured.
/// </summary>
/// <param name="exception">The exception to test.</param>
/// <param name="stackTrace">The captured stack trace to test against.</param>
public static void AssertStackTrace(Exception exception, StackTrace stackTrace)
{
Trace.TraceInformation("Stack trace from the failing method: {0}", stackTrace.ToString());
Trace.TraceInformation("Exception stack trace: {0}", exception.StackTrace);
string fullST = stackTrace.ToString();
int newLinePos = fullST.IndexOf(Environment.NewLine);
string failingMethodExpected = fullST.Substring(0, (newLinePos == -1) ? fullST.Length : newLinePos);
newLinePos = exception.StackTrace.IndexOf(Environment.NewLine);
string failingMethodActual = exception.StackTrace.Substring(0, (newLinePos == -1) ? fullST.Length : newLinePos);
//check if the first line of the stack trace fetched from the failing method is contained in the
//first line of the exception's stack trace, i.e. the method which threw the exception is in the
//stack trace of the exception
Assert.That(failingMethodActual.Contains(failingMethodExpected));
}
}
[TestFixture]
public class ExceptionUtilTests
{
[Test]
public void TestPreserveStackTrace()
{
StackTrace stackTrace = null;
try
{
try
{
Action bar = () =>
{
try
{
//delegate to the failing method
Action foo = () =>
{
stackTrace = new StackTrace(false);
throw new InvalidOperationException();
};
foo();
Assert.Fail("Exception was not thrown - 1");
}
catch (InvalidOperationException iopex)
{
//wrap the exception to make sure that there is an
//inner exception that can be re-thrown later on
throw new ArgumentException(string.Empty, iopex);
};
};
bar();
Assert.Fail("Exception was not thrown - 2");
}
catch (ArgumentException aex)
{
//preserve the stack trace of the nested exception and re-throw it
ExceptionUtil.PreserveStackTrace(aex.InnerException);
throw aex.InnerException;
}
Assert.Fail("Exception was not thrown - 3");
}
catch (InvalidOperationException iopex)
{
ExceptionUtilTestHelpers.AssertStackTrace(iopex, stackTrace);
}
}
}
}