ResponsivenessTimerDoesntFireEarly.cpp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright (C) 2011 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
  14. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
  17. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  23. * THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #include "config.h"
  26. #include "PlatformUtilities.h"
  27. #include "PlatformWebView.h"
  28. namespace TestWebKitAPI {
  29. static bool didFinishLoad;
  30. static bool didBecomeUnresponsive;
  31. static bool didBrieflyPause;
  32. static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef, const void*)
  33. {
  34. didBrieflyPause = true;
  35. EXPECT_WK_STREQ("DidBrieflyPause", messageName);
  36. }
  37. static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
  38. {
  39. didFinishLoad = true;
  40. }
  41. static void processDidBecomeUnresponsive(WKPageRef, const void*)
  42. {
  43. didBecomeUnresponsive = true;
  44. }
  45. static void setInjectedBundleClient(WKContextRef context)
  46. {
  47. WKContextInjectedBundleClient injectedBundleClient;
  48. memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
  49. injectedBundleClient.version = 0;
  50. injectedBundleClient.clientInfo = 0;
  51. injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
  52. WKContextSetInjectedBundleClient(context, &injectedBundleClient);
  53. }
  54. static void setPageLoaderClient(WKPageRef page)
  55. {
  56. WKPageLoaderClient loaderClient;
  57. memset(&loaderClient, 0, sizeof(loaderClient));
  58. loaderClient.version = 0;
  59. loaderClient.clientInfo = 0;
  60. loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
  61. loaderClient.processDidBecomeUnresponsive = processDidBecomeUnresponsive;
  62. WKPageSetPageLoaderClient(page, &loaderClient);
  63. }
  64. TEST(WebKit2, ResponsivenessTimerDoesntFireEarly)
  65. {
  66. WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ResponsivenessTimerDoesntFireEarlyTest"));
  67. setInjectedBundleClient(context.get());
  68. PlatformWebView webView(context.get());
  69. setPageLoaderClient(webView.page());
  70. WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
  71. Util::run(&didFinishLoad);
  72. WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("BrieflyPause").get(), 0);
  73. // Pressing a key on the keyboard should start the responsiveness timer. Since the web process
  74. // is going to pause before it receives this keypress, it should take a little while to respond
  75. // (but not so long that the responsiveness timer fires).
  76. webView.simulateSpacebarKeyPress();
  77. Util::run(&didBrieflyPause);
  78. EXPECT_FALSE(didBecomeUnresponsive);
  79. }
  80. } // namespace TestWebKitAPI