Imported Upstream version 5.8.0.22

Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2017-10-19 20:04:20 +00:00
parent 5f4a27cc8a
commit 7d05485754
5020 changed files with 114082 additions and 186061 deletions

View File

@ -8,9 +8,6 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard-Release|AnyCPU'" />
<ItemGroup>
<Compile Include="WebClientTest.cs" />
<Compile Include="$(CommonTestPath)\System\AssertExtensions.cs">
<Link>Common\System\AssertExtensions.cs</Link>
</Compile>
<Compile Include="$(CommonTestPath)\System\PlatformDetection.cs">
<Link>Common\System\PlatformDetection.cs</Link>
</Compile>

View File

@ -364,7 +364,6 @@ namespace System.Net.Tests
}
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public static async Task ResponseHeaders_ContainsHeadersAfterOperation()
{
@ -388,8 +387,6 @@ namespace System.Net.Tests
Assert.Equal("ArbitraryValue", wc.ResponseHeaders["ArbitraryHeader"]);
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[ActiveIssue(18680)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[InlineData("Connection", "close")]
@ -401,7 +398,6 @@ namespace System.Net.Tests
await Assert.ThrowsAsync<WebException>(() => wc.DownloadStringTaskAsync(System.Net.Test.Common.Configuration.Http.RemoteEchoServer));
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[InlineData("http://localhost", true)]
@ -420,7 +416,6 @@ namespace System.Net.Tests
}
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public static async Task RequestHeaders_SpecialHeaders_RequestSucceeds()
{
@ -444,7 +439,6 @@ namespace System.Net.Tests
});
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public static async Task ConcurrentOperations_Throw()
{
@ -511,7 +505,6 @@ namespace System.Net.Tests
protected abstract Task<Stream> OpenReadAsync(WebClient wc, string address);
protected abstract Task<Stream> OpenWriteAsync(WebClient wc, string address);
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Theory]
[InlineData(null)]
[InlineData("text/html; charset=utf-8")]
@ -537,7 +530,6 @@ namespace System.Net.Tests
});
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public async Task DownloadData_Success()
{
@ -560,7 +552,6 @@ namespace System.Net.Tests
});
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public async Task DownloadData_LargeData_Success()
{
@ -580,7 +571,6 @@ namespace System.Net.Tests
});
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public async Task DownloadFile_Success()
{
@ -608,7 +598,6 @@ namespace System.Net.Tests
});
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[Fact]
public async Task OpenRead_Success()
{
@ -630,7 +619,6 @@ namespace System.Net.Tests
});
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[MemberData(nameof(EchoServers))]
@ -644,7 +632,6 @@ namespace System.Net.Tests
}
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[MemberData(nameof(EchoServers))]
@ -660,7 +647,6 @@ namespace System.Net.Tests
Assert.True(!IsAsync || await uploadProgressInvoked.Task, "Expected upload progress callback to be invoked");
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[MemberData(nameof(EchoServers))]
@ -678,7 +664,6 @@ namespace System.Net.Tests
return new string(Enumerable.Range(0, 512 * 1024).Select(_ => (char)('a' + rand.Next(0, 26))).ToArray());
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[MemberData(nameof(EchoServers))]
@ -698,7 +683,6 @@ namespace System.Net.Tests
}
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[MemberData(nameof(EchoServers))]
@ -709,7 +693,6 @@ namespace System.Net.Tests
Assert.Contains(ExpectedText, result);
}
[ActiveIssue(20141, TargetFrameworkMonikers.UapAot)]
[OuterLoop("Networking test talking to remote server: issue #11345")]
[Theory]
[MemberData(nameof(EchoServers))]