blob: c3bac8f70f8f298dd4e90b54bad62dc2b63a3f16 [file] [log] [blame]
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001// Copyright (c) 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "apps/app_restore_service.h"
6#include "apps/app_restore_service_factory.h"
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01007#include "apps/saved_files_service.h"
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01008#include "chrome/browser/chrome_notification_types.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00009#include "chrome/browser/extensions/api/file_system/file_system_api.h"
10#include "chrome/browser/extensions/extension_prefs.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000011#include "chrome/browser/extensions/extension_test_message_listener.h"
12#include "chrome/browser/extensions/platform_app_browsertest_util.h"
13#include "chrome/common/extensions/extension.h"
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010014#include "content/public/browser/notification_service.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000015#include "content/public/test/test_utils.h"
16
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000017using extensions::Extension;
18using extensions::ExtensionPrefs;
19using extensions::ExtensionSystem;
20using extensions::FileSystemChooseEntryFunction;
21
22// TODO(benwells): Move PlatformAppBrowserTest to apps namespace in apps
23// component.
24using extensions::PlatformAppBrowserTest;
25
26namespace apps {
27
28// Tests that a running app is recorded in the preferences as such.
29IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, RunningAppsAreRecorded) {
30 content::WindowedNotificationObserver extension_suspended(
31 chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED,
32 content::NotificationService::AllSources());
33
34 const Extension* extension = LoadExtension(
35 test_data_dir_.AppendASCII("platform_apps/restart_test"));
36 ASSERT_TRUE(extension);
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010037 ExtensionPrefs* extension_prefs = ExtensionPrefs::Get(browser()->profile());
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000038
39 // App is running.
40 ASSERT_TRUE(extension_prefs->IsExtensionRunning(extension->id()));
41
42 // Wait for the extension to get suspended.
43 extension_suspended.Wait();
44
45 // App isn't running because it got suspended.
46 ASSERT_FALSE(extension_prefs->IsExtensionRunning(extension->id()));
47
48 // Pretend that the app is supposed to be running.
49 extension_prefs->SetExtensionRunning(extension->id(), true);
50
51 ExtensionTestMessageListener restart_listener("onRestarted", false);
52 apps::AppRestoreServiceFactory::GetForProfile(browser()->profile())->
53 HandleStartup(true);
54 restart_listener.WaitUntilSatisfied();
55}
56
57IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, FileAccessIsSavedToPrefs) {
58 content::WindowedNotificationObserver extension_suspended(
59 chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED,
60 content::NotificationService::AllSources());
61
62 base::ScopedTempDir temp_directory;
63 ASSERT_TRUE(temp_directory.CreateUniqueTempDir());
64 base::FilePath temp_file;
65 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(temp_directory.path(),
66 &temp_file));
67
68 FileSystemChooseEntryFunction::SkipPickerAndAlwaysSelectPathForTest(
69 &temp_file);
70 FileSystemChooseEntryFunction::RegisterTempExternalFileSystemForTest(
71 "temp", temp_directory.path());
72
73 ExtensionTestMessageListener file_written_listener("fileWritten", false);
74 ExtensionTestMessageListener access_ok_listener(
75 "restartedFileAccessOK", false);
76
77 const Extension* extension =
78 LoadAndLaunchPlatformApp("file_access_saved_to_prefs_test");
79 ASSERT_TRUE(extension);
80 file_written_listener.WaitUntilSatisfied();
81
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010082 SavedFilesService* saved_files_service = SavedFilesService::Get(profile());
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000083
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010084 std::vector<SavedFileEntry> file_entries =
85 saved_files_service->GetAllFileEntries(extension->id());
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000086 // One for the read-only file entry and one for the writable file entry.
87 ASSERT_EQ(2u, file_entries.size());
88
89 extension_suspended.Wait();
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010090 file_entries = saved_files_service->GetAllFileEntries(extension->id());
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000091 // File entries should be cleared when the extension is suspended.
92 ASSERT_TRUE(file_entries.empty());
93}
94
Ben Murdochbb1529c2013-08-08 10:24:53 +010095// Flaky: crbug.com/269613
96#if defined(OS_LINUX)
97#define MAYBE_FileAccessIsRestored DISABLED_FileAccessIsRestored
98#else
99#define MAYBE_FileAccessIsRestored FileAccessIsRestored
100#endif
101
102IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_FileAccessIsRestored) {
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000103 content::WindowedNotificationObserver extension_suspended(
104 chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED,
105 content::NotificationService::AllSources());
106
107 base::ScopedTempDir temp_directory;
108 ASSERT_TRUE(temp_directory.CreateUniqueTempDir());
109 base::FilePath temp_file;
110 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(temp_directory.path(),
111 &temp_file));
112
113 FileSystemChooseEntryFunction::SkipPickerAndAlwaysSelectPathForTest(
114 &temp_file);
115 FileSystemChooseEntryFunction::RegisterTempExternalFileSystemForTest(
116 "temp", temp_directory.path());
117
118 ExtensionTestMessageListener file_written_listener("fileWritten", false);
119 ExtensionTestMessageListener access_ok_listener(
120 "restartedFileAccessOK", false);
121
122 const Extension* extension =
123 LoadAndLaunchPlatformApp("file_access_restored_test");
124 ASSERT_TRUE(extension);
125 file_written_listener.WaitUntilSatisfied();
126
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +0100127 ExtensionPrefs* extension_prefs =
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100128 ExtensionPrefs::Get(browser()->profile());
129 SavedFilesService* saved_files_service = SavedFilesService::Get(profile());
130 std::vector<SavedFileEntry> file_entries =
131 saved_files_service->GetAllFileEntries(extension->id());
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000132 extension_suspended.Wait();
133
134 // Simulate a restart by populating the preferences as if the browser didn't
135 // get time to clean itself up.
136 extension_prefs->SetExtensionRunning(extension->id(), true);
137 for (std::vector<SavedFileEntry>::const_iterator it = file_entries.begin();
138 it != file_entries.end(); ++it) {
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +0100139 saved_files_service->RegisterFileEntry(
140 extension->id(), it->id, it->path, it->writable);
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000141 }
142
143 apps::AppRestoreServiceFactory::GetForProfile(browser()->profile())->
144 HandleStartup(true);
145
146 access_ok_listener.WaitUntilSatisfied();
147}
148
149} // namespace apps