This source file includes following definitions.
- TestUnloadEventPage
- IN_PROC_BROWSER_TEST_F
- IN_PROC_BROWSER_TEST_F
#include "chrome/browser/apps/app_browsertest_util.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/extension_test_message_listener.h"
#include "content/public/browser/notification_service.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/test_utils.h"
using extensions::Extension;
using extensions::PlatformAppBrowserTest;
namespace {
class AppEventPageTest : public PlatformAppBrowserTest {
protected:
void TestUnloadEventPage(const char* app_path) {
ExtensionTestMessageListener launched_listener("launched", false);
const Extension* extension = LoadAndLaunchPlatformApp(app_path);
ASSERT_TRUE(extension);
ASSERT_TRUE(launched_listener.WaitUntilSatisfied());
content::WindowedNotificationObserver event_page_suspended(
chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED,
content::NotificationService::AllSources());
EXPECT_EQ(1U, GetAppWindowCount());
apps::AppWindow* app_window = GetFirstAppWindow();
ASSERT_TRUE(app_window);
CloseAppWindow(app_window);
event_page_suspended.Wait();
}
};
}
IN_PROC_BROWSER_TEST_F(AppEventPageTest, OnSuspendNoApiUse) {
TestUnloadEventPage("event_page/suspend_simple");
}
IN_PROC_BROWSER_TEST_F(AppEventPageTest, OnSuspendUseStorageApi) {
TestUnloadEventPage("event_page/suspend_storage_api");
}