@@ -44,7 +44,6 @@ private static CookieContainer CreateSingleCookieContainer(Uri uri, string cooki
4444 private static string GetCookieHeaderValue ( string cookieName , string cookieValue ) => $ "{ cookieName } ={ cookieValue } ";
4545
4646 [ Fact ]
47- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
4847 public async Task GetAsync_DefaultCoookieContainer_NoCookieSent ( )
4948 {
5049 await LoopbackServerFactory . CreateClientAndServerAsync (
@@ -65,7 +64,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(
6564 [ Theory ]
6665 [ MemberData ( nameof ( CookieNamesValuesAndUseCookies ) ) ]
6766 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
68- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
6967 public async Task GetAsync_SetCookieContainer_CookieSent ( string cookieName , string cookieValue , bool useCookies )
7068 {
7169 await LoopbackServerFactory . CreateClientAndServerAsync (
@@ -96,7 +94,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(
9694
9795 [ Fact ]
9896 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
99- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
10097 public async Task GetAsync_SetCookieContainerMultipleCookies_CookiesSent ( )
10198 {
10299 var cookies = new Cookie [ ]
@@ -131,7 +128,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(
131128 }
132129
133130 [ Fact ]
134- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
135131 public async Task GetAsync_AddCookieHeader_CookieHeaderSent ( )
136132 {
137133 await LoopbackServerFactory . CreateClientAndServerAsync (
@@ -153,7 +149,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(
153149 }
154150
155151 [ Fact ]
156- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
157152 public async Task GetAsync_AddMultipleCookieHeaders_CookiesSent ( )
158153 {
159154 await LoopbackServerFactory . CreateClientAndServerAsync (
@@ -223,7 +218,6 @@ private string GetCookieValue(HttpRequestData request)
223218
224219 [ Fact ]
225220 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
226- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
227221 public async Task GetAsync_SetCookieContainerAndCookieHeader_BothCookiesSent ( )
228222 {
229223 await LoopbackServerFactory . CreateServerAsync ( async ( server , url ) =>
@@ -252,7 +246,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
252246
253247 [ Fact ]
254248 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
255- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
256249 public async Task GetAsync_SetCookieContainerAndMultipleCookieHeaders_BothCookiesSent ( )
257250 {
258251 await LoopbackServerFactory . CreateServerAsync ( async ( server , url ) =>
@@ -293,7 +286,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
293286
294287 [ Fact ]
295288 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
296- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
297289 public async Task GetAsyncWithRedirect_SetCookieContainer_CorrectCookiesSent ( )
298290 {
299291 if ( UseVersion == HttpVersion30 )
@@ -341,7 +333,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async url =>
341333 [ Theory ]
342334 [ MemberData ( nameof ( CookieNamesValuesAndUseCookies ) ) ]
343335 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
344- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
345336 public async Task GetAsync_ReceiveSetCookieHeader_CookieAdded ( string cookieName , string cookieValue , bool useCookies )
346337 {
347338 await LoopbackServerFactory . CreateServerAsync ( async ( server , url ) =>
@@ -374,7 +365,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
374365
375366 [ Fact ]
376367 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
377- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
378368 public async Task GetAsync_ReceiveMultipleSetCookieHeaders_CookieAdded ( )
379369 {
380370 await LoopbackServerFactory . CreateServerAsync ( async ( server , url ) =>
@@ -415,7 +405,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
415405 // ConditionalFact: CookieContainer does not follow RFC6265 on .NET Framework, therefore the (WinHttpHandler) test is expected to fail
416406 [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotNetFramework ) ) ]
417407 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
418- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
419408 public async Task GetAsync_NoPathDefined_CookieAddedWithDefaultPath ( )
420409 {
421410 await LoopbackServerFactory . CreateServerAsync ( async ( server , serverUrl ) =>
@@ -446,7 +435,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, serverUrl) =>
446435 // ConditionalFact: CookieContainer does not follow RFC6265 on .NET Framework, therefore the (WinHttpHandler) test is expected to fail
447436 [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotNetFramework ) ) ]
448437 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
449- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
450438 public async Task GetAsync_CookiePathDoesNotMatchRequestPath_CookieAccepted ( )
451439 {
452440 await LoopbackServerFactory . CreateServerAsync ( async ( server , serverUrl ) =>
@@ -479,7 +467,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, serverUrl) =>
479467 // ConditionalFact: CookieContainer does not follow RFC6265 on .NET Framework, therefore the (WinHttpHandler) test is expected to fail
480468 [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotNetFramework ) ) ]
481469 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
482- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
483470 public async Task GetAsync_Redirect_CookiesArePreserved ( )
484471 {
485472 if ( UseVersion == HttpVersion30 )
@@ -529,7 +516,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async serverUrl =>
529516
530517 [ Fact ]
531518 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
532- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
533519 public async Task GetAsync_ReceiveSetCookieHeader_CookieUpdated ( )
534520 {
535521 const string newCookieValue = "789" ;
@@ -558,7 +544,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
558544
559545 [ Fact ]
560546 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
561- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
562547 public async Task GetAsync_ReceiveSetCookieHeader_CookieRemoved ( )
563548 {
564549 await LoopbackServerFactory . CreateServerAsync ( async ( server , url ) =>
@@ -583,7 +568,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
583568
584569 [ Fact ]
585570 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
586- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
587571 public async Task GetAsync_ReceiveInvalidSetCookieHeader_ValidCookiesAdded ( )
588572 {
589573 await LoopbackServerFactory . CreateServerAsync ( async ( server , url ) =>
@@ -619,7 +603,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
619603
620604 [ Fact ]
621605 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
622- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
623606 public async Task GetAsyncWithRedirect_ReceiveSetCookie_CookieSent ( )
624607 {
625608 if ( UseVersion == HttpVersion30 )
@@ -680,7 +663,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async url =>
680663
681664 [ Fact ]
682665 [ SkipOnPlatform ( TestPlatforms . Browser , "CookieContainer is not supported on Browser" ) ]
683- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/69870" , TestPlatforms . Android ) ]
684666 public async Task GetAsyncWithBasicAuth_ReceiveSetCookie_CookieSent ( )
685667 {
686668 if ( UseVersion == HttpVersion30 )
0 commit comments