Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public static void TestResolveInvalidPaths()
[InlineData("http://notfound.invalid.corp.microsoft.com")]
[InlineData("ftp://host.invalid")]
[InlineData("notsupported://host.invalid")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/75129", TestPlatforms.Browser)]
public static void TestResolveInvalidPath(string invalidUri)
{
Assert.ThrowsAny<Exception>(() => XmlReader.Create(invalidUri));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public void v3()

//-----------------------------------------------------------------------------------
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/75123", TestPlatforms.Browser)]
//[Variation(Desc = "v4 - ns = valid, URL = invalid")]
public void v4()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public void v3()

//[Variation(Desc = "v4 - schema(Local)->schema(Local)", Priority = 1)]
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/75183", TestPlatforms.Browser)]
public void v4()
{
AppContext.SetSwitch("Switch.System.Xml.AllowDefaultResolver", true);
Expand All @@ -104,6 +105,7 @@ public void v4()

//[Variation(Desc = "v5 - schema(Local)->schema(Local)->schema(Local)", Priority = 1)]
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/75183", TestPlatforms.Browser)]
public void v5()
{
AppContext.SetSwitch("Switch.System.Xml.AllowDefaultResolver", true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ public TCValidateAfterAddInvalidSchema(ITestOutputHelper output) : base(output)
[InlineData("SCHEMA", "schB1_a.xsd", 1, 3, 3)]
[InlineData("SCHEMA", "schM2_a.xsd", 1, 3, 3)]
[InlineData("SCHEMA", "schH2_a.xsd", 1, 3, 3)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/75132", TestPlatforms.Browser)]
public void AddValid_Import_Include_Redefine(string testDir, string testFile, int expCount, int expCountGT, int expCountGE)
{
string xsd = Path.Combine(path, testDir, testFile);
Expand Down