summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/default_apps_unittest.cc
blob: 316568d0ae154444fdfc3a61daa222d09cef7c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/logging.h"
#include "chrome/browser/extensions/default_apps.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/test/testing_pref_service.h"
#include "testing/gtest/include/gtest/gtest.h"

// TODO(dpolukhin): On Chrome OS all apps are installed via external extensions,
// and the web store promo is never shown.
#if !defined(OS_CHROMEOS)
TEST(ExtensionDefaultApps, HappyPath) {
  TestingPrefService pref_service;
  DefaultApps::RegisterUserPrefs(&pref_service);
  DefaultApps default_apps(&pref_service, "en-US");

  const ExtensionIdSet& default_app_ids = default_apps.default_apps();
  ASSERT_GT(default_app_ids.size(), 0u);
  EXPECT_FALSE(default_apps.GetDefaultAppsInstalled());
  EXPECT_EQ(0, default_apps.GetPromoCounter());

  // If no apps are installed, the default apps should be installed.
  ExtensionIdSet installed_app_ids;
  EXPECT_TRUE(default_apps.ShouldInstallDefaultApps(installed_app_ids));

  // The launcher should not be shown until the default apps have been
  // installed.
  EXPECT_FALSE(default_apps.ShouldShowAppLauncher(installed_app_ids));

  // The promo should not be shown until the default apps have been installed.
  bool promo_just_expired = false;
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_app_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);

  // Simulate installing the apps one by one and notifying default_apps after
  // each intallation. Nothing should change until we have installed all the
  // default apps.
  for (size_t i = 0; i < default_app_ids.size() - 1; ++i) {
    ExtensionIdSet::const_iterator iter = default_app_ids.begin();
    for (size_t j = 0; j <= i; ++j)
      ++iter;
    installed_app_ids.insert(*iter);
    default_apps.DidInstallApp(installed_app_ids);
    EXPECT_FALSE(default_apps.GetDefaultAppsInstalled());
    EXPECT_TRUE(default_apps.ShouldInstallDefaultApps(installed_app_ids));
    EXPECT_FALSE(default_apps.ShouldShowAppLauncher(installed_app_ids));
    EXPECT_FALSE(default_apps.ShouldShowPromo(installed_app_ids,
                                              &promo_just_expired));
    EXPECT_FALSE(promo_just_expired);
  }

  // Simulate all the default apps being installed. Now we should stop getting
  // default apps to install.
  installed_app_ids = default_app_ids;
  default_apps.DidInstallApp(installed_app_ids);
  EXPECT_TRUE(default_apps.GetDefaultAppsInstalled());
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_app_ids));

  // And the promo and launcher should become available.
  EXPECT_TRUE(default_apps.ShouldShowAppLauncher(installed_app_ids));
  EXPECT_TRUE(default_apps.ShouldShowPromo(installed_app_ids,
                                           &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);

  // The promo should be available up to the max allowed times, then stop.
  // We start counting at 1 because of the call to ShouldShowPromo() above.
  for (int i = 1; i < DefaultApps::kAppsPromoCounterMax; ++i) {
    EXPECT_TRUE(default_apps.ShouldShowPromo(installed_app_ids,
                                             &promo_just_expired));
    EXPECT_FALSE(promo_just_expired);
    EXPECT_EQ(i + 1, default_apps.GetPromoCounter());
  }

  // The first time, should_show_promo should flip to true, then back to false.
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_app_ids,
                                            &promo_just_expired));
  EXPECT_TRUE(promo_just_expired);
  EXPECT_EQ(DefaultApps::kAppsPromoCounterMax + 1,
            default_apps.GetPromoCounter());

  // Even if all the apps are subsequently removed, the apps section should
  // remain.
  installed_app_ids.clear();
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_app_ids));
  EXPECT_TRUE(default_apps.ShouldShowAppLauncher(installed_app_ids));
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_app_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
  EXPECT_EQ(DefaultApps::kAppsPromoCounterMax + 1,
            default_apps.GetPromoCounter());
}

TEST(ExtensionDefaultApps, UnsupportedLocale) {
  TestingPrefService pref_service;
  DefaultApps::RegisterUserPrefs(&pref_service);
  DefaultApps default_apps(&pref_service, "fr");

  const ExtensionIdSet& default_app_ids = default_apps.default_apps();
  EXPECT_GT(default_app_ids.size(), 0u);

  // Since the store only supports en-US at the moment, we don't install default
  // apps or promote the store.
  ExtensionIdSet installed_ids;
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_ids));
  EXPECT_FALSE(default_apps.ShouldShowAppLauncher(installed_ids));

  bool promo_just_expired = false;
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);

  // If the user installs an app manually, then we show the apps section, but
  // no promotion or default apps.
  installed_ids.insert(*(default_app_ids.begin()));
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_ids));
  EXPECT_TRUE(default_apps.ShouldShowAppLauncher(installed_ids));
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);

  // Even if the user installs the exact set of default apps, we don't show the
  // promo.
  installed_ids = default_app_ids;
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_ids));
  EXPECT_TRUE(default_apps.ShouldShowAppLauncher(installed_ids));
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);

  // If the user uninstalls the apps again, we go back to not showing the
  // apps section.
  installed_ids.clear();
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_ids));
  EXPECT_FALSE(default_apps.ShouldShowAppLauncher(installed_ids));
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
}

TEST(ExtensionDefaultApps, HidePromo) {
  TestingPrefService pref_service;
  DefaultApps::RegisterUserPrefs(&pref_service);
  DefaultApps default_apps(&pref_service, "en-US");

  const ExtensionIdSet& default_app_ids = default_apps.default_apps();
  default_apps.DidInstallApp(default_app_ids);

  bool promo_just_expired = false;
  EXPECT_TRUE(default_apps.ShouldShowPromo(default_app_ids,
                                           &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
  EXPECT_EQ(1, default_apps.GetPromoCounter());

  default_apps.SetPromoHidden();
  EXPECT_FALSE(default_apps.ShouldShowPromo(default_app_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
  EXPECT_EQ(DefaultApps::kAppsPromoCounterMax + 1,
            default_apps.GetPromoCounter());
}

TEST(ExtensionDefaultApps, InstallingAnAppHidesPromo) {
  TestingPrefService pref_service;
  DefaultApps::RegisterUserPrefs(&pref_service);
  DefaultApps default_apps(&pref_service, "en-US");

  const ExtensionIdSet& default_app_ids = default_apps.default_apps();
  ExtensionIdSet installed_app_ids = default_app_ids;
  default_apps.DidInstallApp(installed_app_ids);

  bool promo_just_expired = false;
  EXPECT_TRUE(default_apps.ShouldShowPromo(installed_app_ids,
                                           &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
  EXPECT_EQ(1, default_apps.GetPromoCounter());

  // Now simulate a new extension being installed. This should cause the promo
  // to be hidden.
  installed_app_ids.insert("foo");
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_app_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
  EXPECT_EQ(DefaultApps::kAppsPromoCounterMax + 1,
            default_apps.GetPromoCounter());
}

TEST(ExtensionDefaultApps, ManualAppInstalledWhileInstallingDefaultApps) {
  // It is possible to have apps manually installed while the default apps are
  // being installed. The network or server might be down, causing the default
  // app installation to fail. The updater might take awhile to get around to
  // updating, giving the user a chance to manually intall.
  //
  // In these cases, we should keep trying to install default apps until we have
  // them all, and then stop, even if at that point, we have more apps than just
  // the default ones.
  TestingPrefService pref_service;
  DefaultApps::RegisterUserPrefs(&pref_service);
  DefaultApps default_apps(&pref_service, "en-US");

  // Simulate an app getting installed before the complete set of default apps.
  // This should stop the default apps from trying to be installed. The launcher
  // should also immediately show up.
  ExtensionIdSet installed_ids;
  installed_ids.insert("foo");
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_ids));
  EXPECT_TRUE(default_apps.GetDefaultAppsInstalled());
  EXPECT_TRUE(default_apps.ShouldShowAppLauncher(installed_ids));

  // The promo shouldn't turn on though, because it would look weird with the
  // user's extra, manually installed extensions.
  bool promo_just_expired = false;
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
  EXPECT_EQ(DefaultApps::kAppsPromoCounterMax + 1,
            default_apps.GetPromoCounter());

  // Going back to a subset of the default apps shouldn't allow the default app
  // install to continue.
  installed_ids.clear();
  EXPECT_FALSE(default_apps.ShouldInstallDefaultApps(installed_ids));
  EXPECT_TRUE(default_apps.GetDefaultAppsInstalled());
  EXPECT_TRUE(default_apps.ShouldShowAppLauncher(installed_ids));
  EXPECT_FALSE(default_apps.ShouldShowPromo(installed_ids,
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);

  // Going to the exact set of default apps shouldn't show the promo.
  EXPECT_FALSE(default_apps.ShouldShowPromo(default_apps.default_apps(),
                                            &promo_just_expired));
  EXPECT_FALSE(promo_just_expired);
}
#endif  // OS_CHROMEOS