Title: [279935] trunk/Tools
Revision
279935
Author
[email protected]
Date
2021-07-14 17:53:47 -0700 (Wed, 14 Jul 2021)

Log Message

[iOS & Mac Big Sur Release] Two SOAuthorizationSubFrame API tests are failing
https://bugs.webkit.org/show_bug.cgi?id=227925
<rdar://problem/80543830>

Reviewed by Kate Cheney.

In Bug 227729 I added a number of extra tests that an Extensible SSO delegate method
was called. I did a search/paste and added them to all SSO flows without much detailed
analysis. Testing shows that on Simulator, these delegate are not always called, perhaps
because the test case involves loads to live websites that might take longer than the
hard-coded timeout used to move to the next step of the test.

Because these failures are slowing down our EWS, I'm removing these two checks. We
can consider adding them back if we need such checks in the future.

* TestWebKitAPI/Tests/WebKitCocoa/TestSOAuthorization.mm:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (279934 => 279935)


--- trunk/Tools/ChangeLog	2021-07-15 00:09:53 UTC (rev 279934)
+++ trunk/Tools/ChangeLog	2021-07-15 00:53:47 UTC (rev 279935)
@@ -1,3 +1,23 @@
+2021-07-14  Brent Fulgham  <[email protected]>
+
+        [iOS & Mac Big Sur Release] Two SOAuthorizationSubFrame API tests are failing
+        https://bugs.webkit.org/show_bug.cgi?id=227925
+        <rdar://problem/80543830>
+
+        Reviewed by Kate Cheney.
+
+        In Bug 227729 I added a number of extra tests that an Extensible SSO delegate method
+        was called. I did a search/paste and added them to all SSO flows without much detailed
+        analysis. Testing shows that on Simulator, these delegate are not always called, perhaps
+        because the test case involves loads to live websites that might take longer than the
+        hard-coded timeout used to move to the next step of the test.
+
+        Because these failures are slowing down our EWS, I'm removing these two checks. We
+        can consider adding them back if we need such checks in the future.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/TestSOAuthorization.mm:
+        (TestWebKitAPI::TEST):
+
 2021-07-14  Kevin Neal  <[email protected]>
 
         [Tools] linkify first line of commit message in tooltip

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TestSOAuthorization.mm (279934 => 279935)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TestSOAuthorization.mm	2021-07-15 00:09:53 UTC (rev 279934)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TestSOAuthorization.mm	2021-07-15 00:53:47 UTC (rev 279935)
@@ -2580,11 +2580,6 @@
     Util::sleep(0.5);
     // Make sure we don't intercept the iframe.
     EXPECT_FALSE(authorizationPerformed);
-#if PLATFORM(MAC)
-    EXPECT_TRUE(policyForAppSSOPerformed);
-#else
-    EXPECT_FALSE(policyForAppSSOPerformed);
-#endif
 }
 
 TEST(SOAuthorizationSubFrame, SOAuthorizationLoadPolicyAllowAsync)
@@ -2637,11 +2632,6 @@
     Util::sleep(0.5);
     // Make sure we don't intercept the iframe.
     EXPECT_FALSE(authorizationPerformed);
-#if PLATFORM(MAC)
-    EXPECT_TRUE(policyForAppSSOPerformed);
-#else
-    EXPECT_FALSE(policyForAppSSOPerformed);
-#endif
 }
 
 TEST(SOAuthorizationSubFrame, InterceptionErrorWithReferrer)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to