Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / webstore_private / localized.js
blob2e93e47589f03e908ebca5144965c81f040489a9
1 // Copyright (c) 2011 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.
5 // The id of the extension in localized_extension.crx.
6 var localizedId = "oolblhbomdbcpmafphaodhjfcgbihcdg";
8 var tests = [
10   // This tests an install passing a localized name.
11   function localizeName() {
12     // See things through all the way to a successful install.
13     listenOnce(chrome.management.onInstalled, function(info) {
14       assertEq(info.id, localizedId);
15     });
17     var manifest = getManifest('localized_extension/manifest.json');
18     var messages = getManifest('localized_extension/_locales/fr/messages.json');
19     getIconData(function(icon) {
20       // Begin installing.
21       chrome.webstorePrivate.beginInstallWithManifest3(
22         { 'id':localizedId, 'iconData': icon, 'manifest': manifest,
23           'localizedName': 'Le Title', 'locale': 'fr' },
24         callbackPass(function(result) {
25           assertEq(result, "");
26           chrome.webstorePrivate.completeInstall(localizedId, callbackPass());
27       }));
28     });
29   }
33 runTests(tests);