-
Notifications
You must be signed in to change notification settings - Fork 801
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assert.Equivalent
stack overflows when comparing FileInfo
objects
#2767
Comments
After a bit a debugging, it seems like this is because public DirectoryInfo Root => new DirectoryInfo(Path.GetPathRoot(FullPath)!); And since DirectoryInfo has reference equality, Is this even fixable? Or would this require changing the property's definition in dotnet/runtime ? |
So a quick though on using I added Here's an example asserting a complex value using just anonymous types to describe the expected structure: xunit/src/xunit.v3.assert.tests/Asserts/EquivalenceAssertsTests.cs Lines 488 to 495 in 966a5b7
Your example looks more like you're after equality than equivalence. (More about the problems with that in a second, because I'm guessing you already tried One way to continue to use [Fact]
public void Xunit2767()
{
var expected = new { Name = "README.md", DirectoryName = @"C:\Dev\xunit\xunit.v2", Exists = true };
var actual = new FileInfo(@"C:\Dev\xunit\xunit.v2\README.md");
Assert.Equivalent(expected, actual);
} The difference here is that we use the expected value to decide what to look at in the actual value. When the expected value is a
The answer is that I think there are two separate issues here, and both of them are fixable:
Neither of my proposals above require any changes to .NET itself. Any attempts to fix it there would likely incur extra expense (in terms of computation and/or memory usage) that the team would probably be reluctant to accept, especially since it's really only solving a testing problem, not a runtime problem. That said, I do think it would be worth opening a PR to add |
BTW, here's what the [Fact]
public void Xunit2767()
{
var expected = new FileInfo(@"C:\Dev\xunit\xunit.v2\README.md");
var actual = new FileInfo(@"C:\Dev\xunit\xunit.v2\README.md");
Assert.Equal(
expected, actual,
(e, a) => e.Name == a.Name && e.DirectoryName == a.DirectoryName && e.Exists == a.Exists
);
} |
…max traversal depth of 50
…ng the FullName in Assert.Equivalent
Shipping in v2: |
Sorry for the late reply -- but thank you a lot for the fix! Just to answer this:
In this case I was a few levels deep into an anonymous object and re-using an existing |
…a..46dfaa92 46dfaa92 xunit/xunit#2773: Add Assert.RaisesAny and Assert.RaisesAnyAsync non-generic for EventArgs c0485bdd Add additional NETSTANDARD excludeions for System.AppDomain usage b6cb339c xunit/xunit#2767: Verify types match when comparing FileSystemInfo values 03b07513 Use AppDomain.CurrentDomain.GetAssemblies() to find System.IO.FileSystemInfo type 482be8e0 xunit/xunit#2767: Special case FileSystemInfo objects by just comparing the FullName in Assert.Equivalent 78d70dec xunit/xunit#2767: Prevent stack overflow in Assert.Equivalent with a max traversal depth of 50 d0a234a5 Delay calling Dispose() on CollectionTracker's inner enumerator, for xunit/xunit#2762 96236a4c Add disable for CS8607 in AssertEqualityComparerAdapter because of nullability inconsistency 6193f9ee Move to explicit DateTime(Offset) handling in Assert.Equivalent (related: xunit/xunit#2758) 20e76223 xunit/xunit#2743: Assert.Equal with HashSet and custom comparer ignores comparer 247c1016 Mark BitArray as safe to multi-enumerate 8926c0fc Wrap AssertEqualityComparer collection logic in !XUNIT_FRAMEWORK for v2 xunit.execution.* 90d59772 xunit/xunit#2755: Assert.Equal regression for dictionaries with collection values 17c7b611 Add nullable annotation to Assert.NotNull<T>(T?) (dotnet#64) 1886f126 xunit/xunit#2741: Ensure all exception factory methods are public git-subtree-dir: src/Microsoft.DotNet.XUnitAssert/src git-subtree-split: 46dfaa9248b7aa4c8c88e5cf6d4a6c84671a93f5
Version: 2.5.0
The following test crashes with a stack overflow, provided that the file exist:
Log dump:
The text was updated successfully, but these errors were encountered: