summaryrefslogtreecommitdiffstats
path: root/browser/components/customizableui/test/browser_remote_tabs_button.js
blob: 094335d4b1ab86a806054e8d6f92ba48291b41e1 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
"use strict";

let { Service } = ChromeUtils.importESModule(
  "resource://services-sync/service.sys.mjs"
);
const { UIState } = ChromeUtils.importESModule(
  "resource://services-sync/UIState.sys.mjs"
);

let getState;
let originalSync;
let syncWasCalled = false;

// TODO: This test should probably be re-written, we don't really test much here.
add_task(async function testSyncRemoteTabsButtonFunctionality() {
  info("Test the Sync Remote Tabs button in the panel");
  storeInitialValues();
  mockFunctions();

  // Force UI update.
  Services.obs.notifyObservers(null, UIState.ON_UPDATE);

  // add the sync remote tabs button to the panel
  CustomizableUI.addWidgetToArea(
    "sync-button",
    CustomizableUI.AREA_FIXED_OVERFLOW_PANEL
  );

  await waitForOverflowButtonShown();

  // check the button's functionality
  await document.getElementById("nav-bar").overflowable.show();
  info("The panel menu was opened");

  let syncRemoteTabsBtn = document.getElementById("sync-button");
  ok(
    syncRemoteTabsBtn,
    "The sync remote tabs button was added to the Panel Menu"
  );
  // click the button - the panel should open.
  syncRemoteTabsBtn.click();
  let remoteTabsPanel = document.getElementById("PanelUI-remotetabs");
  let viewShown = BrowserTestUtils.waitForEvent(remoteTabsPanel, "ViewShown");
  await viewShown;
  ok(remoteTabsPanel.getAttribute("visible"), "Sync Panel is in view");

  // Find and click the "setup" button.
  let syncNowButton = document.getElementById("PanelUI-remotetabs-syncnow");
  syncNowButton.click();
  info("The sync now button was clicked");

  await TestUtils.waitForCondition(() => syncWasCalled);

  // We need to stop the Syncing animation manually otherwise the button
  // will be disabled at the beginning of a next test.
  gSync._onActivityStop();
});

add_task(async function asyncCleanup() {
  // reset the panel UI to the default state
  await resetCustomization();
  ok(CustomizableUI.inDefaultState, "The panel UI is in default state again.");

  if (isOverflowOpen()) {
    let panelHidePromise = promiseOverflowHidden(window);
    PanelUI.overflowPanel.hidePopup();
    await panelHidePromise;
  }

  restoreValues();
});

function mockFunctions() {
  // mock UIState.get()
  UIState.get = () => ({
    status: UIState.STATUS_SIGNED_IN,
    lastSync: new Date(),
    email: "user@mozilla.com",
  });

  Service.sync = mocked_sync;
}

function mocked_sync() {
  syncWasCalled = true;
}

function restoreValues() {
  UIState.get = getState;
  Service.sync = originalSync;
}

function storeInitialValues() {
  getState = UIState.get;
  originalSync = Service.sync;
}