summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/browser/browser_types.js
blob: 8abb0ff73db62c8744c09cc1dee2fd305138be4d (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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

// Tests that registering new types works

var gManagerWindow;
var gCategoryUtilities;

var gProvider = {
};

var gTypes = [
  new AddonManagerPrivate.AddonType("type1", null, "Type 1",
                                    AddonManager.VIEW_TYPE_LIST, 4500),
  new AddonManagerPrivate.AddonType("missing1", null, "Missing 1"),
  new AddonManagerPrivate.AddonType("type2", null, "Type 1",
                                    AddonManager.VIEW_TYPE_LIST, 5100,
                                    AddonManager.TYPE_UI_HIDE_EMPTY),
  {
    id: "type3",
    name: "Type 3",
    uiPriority: 5200,
    viewType: AddonManager.VIEW_TYPE_LIST
  }
];

function go_back(aManager) {
  if (gUseInContentUI) {
    gBrowser.goBack();
  } else {
    EventUtils.synthesizeMouseAtCenter(aManager.document.getElementById("back-btn"),
                                       { }, aManager);
  }
}

function go_forward(aManager) {
  if (gUseInContentUI) {
    gBrowser.goForward();
  } else {
    EventUtils.synthesizeMouseAtCenter(aManager.document.getElementById("forward-btn"),
                                       { }, aManager);
  }
}

function check_state(aManager, canGoBack, canGoForward) {
  var doc = aManager.document;

  if (gUseInContentUI) {
    is(gBrowser.canGoBack, canGoBack, "canGoBack should be correct");
    is(gBrowser.canGoForward, canGoForward, "canGoForward should be correct");
  }

  if (!is_hidden(doc.getElementById("back-btn"))) {
    is(!doc.getElementById("back-btn").disabled, canGoBack, "Back button should have the right state");
    is(!doc.getElementById("forward-btn").disabled, canGoForward, "Forward button should have the right state");
  }
}

function test() {
  waitForExplicitFinish();

  run_next_test();
}

function end_test() {
  finish();
}

// Add a new type, open the manager and make sure it is in the right place
add_test(function() {
  AddonManagerPrivate.registerProvider(gProvider, gTypes);

  open_manager(null, function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.get("type2"), "Type 2 should be present");
    ok(!gCategoryUtilities.get("missing1", true), "Missing 1 should be absent");

    is(gCategoryUtilities.get("type1").previousSibling.getAttribute("value"),
       "addons://list/extension", "Type 1 should be in the right place");
    is(gCategoryUtilities.get("type2").previousSibling.getAttribute("value"),
       "addons://list/theme", "Type 2 should be in the right place");

    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");
    ok(!gCategoryUtilities.isTypeVisible("type2"), "Type 2 should be hidden");

    run_next_test();
  });
});

// Select the type, close the manager and remove it then open the manager and
// check we're back to the default view
add_test(function() {
  gCategoryUtilities.openType("type1", function() {
    close_manager(gManagerWindow, function() {
      AddonManagerPrivate.unregisterProvider(gProvider);

      open_manager(null, function(aWindow) {
        gManagerWindow = aWindow;
        gCategoryUtilities = new CategoryUtilities(gManagerWindow);

        ok(!gCategoryUtilities.get("type1", true), "Type 1 should be absent");
        ok(!gCategoryUtilities.get("type2", true), "Type 2 should be absent");
        ok(!gCategoryUtilities.get("missing1", true), "Missing 1 should be absent");

        is(gCategoryUtilities.selectedCategory, "discover", "Should be back to the default view");

        close_manager(gManagerWindow, run_next_test);
      });
    });
  });
});

// Add a type while the manager is still open and check it appears
add_test(function() {
  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    ok(!gCategoryUtilities.get("type1", true), "Type 1 should be absent");
    ok(!gCategoryUtilities.get("type2", true), "Type 2 should be absent");
    ok(!gCategoryUtilities.get("missing1", true), "Missing 1 should be absent");

    AddonManagerPrivate.registerProvider(gProvider, gTypes);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.get("type2"), "Type 2 should be present");
    ok(!gCategoryUtilities.get("missing1", true), "Missing 1 should be absent");

    is(gCategoryUtilities.get("type1").previousSibling.getAttribute("value"),
       "addons://list/extension", "Type 1 should be in the right place");
    is(gCategoryUtilities.get("type2").previousSibling.getAttribute("value"),
       "addons://list/theme", "Type 2 should be in the right place");

    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");
    ok(!gCategoryUtilities.isTypeVisible("type2"), "Type 2 should be hidden");

    run_next_test();
  });
});

// Remove the type while it is beng viewed and check it is replaced with the
// default view
add_test(function() {
  gCategoryUtilities.openType("type1", function() {
    gCategoryUtilities.openType("plugin", function() {
      go_back(gManagerWindow);
      wait_for_view_load(gManagerWindow, function() {
        is(gCategoryUtilities.selectedCategory, "type1", "Should be showing the custom view");
        check_state(gManagerWindow, true, true);

        AddonManagerPrivate.unregisterProvider(gProvider);

        ok(!gCategoryUtilities.get("type1", true), "Type 1 should be absent");
        ok(!gCategoryUtilities.get("type2", true), "Type 2 should be absent");
        ok(!gCategoryUtilities.get("missing1", true), "Missing 1 should be absent");

        is(gCategoryUtilities.selectedCategory, "discover", "Should be back to the default view");
        check_state(gManagerWindow, true, true);

        go_back(gManagerWindow);
        wait_for_view_load(gManagerWindow, function() {
          is(gCategoryUtilities.selectedCategory, "extension", "Should be showing the extension view");
          check_state(gManagerWindow, false, true);

          go_forward(gManagerWindow);
          wait_for_view_load(gManagerWindow, function() {
            is(gCategoryUtilities.selectedCategory, "discover", "Should be back to the default view");
            check_state(gManagerWindow, true, true);

            go_forward(gManagerWindow);
            wait_for_view_load(gManagerWindow, function() {
              is(gCategoryUtilities.selectedCategory, "plugin", "Should be back to the plugins view");
              check_state(gManagerWindow, true, false);

              go_back(gManagerWindow);
              wait_for_view_load(gManagerWindow, function() {
                is(gCategoryUtilities.selectedCategory, "discover", "Should be back to the default view");
                check_state(gManagerWindow, true, true);

                close_manager(gManagerWindow, run_next_test);
              });
            });
          });
        });
      });
    });
  });
});

// Test that when going back to a now missing category we skip it
add_test(function() {
  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    AddonManagerPrivate.registerProvider(gProvider, gTypes);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type1", function() {
      gCategoryUtilities.openType("plugin", function() {
        AddonManagerPrivate.unregisterProvider(gProvider);

        ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

        go_back(gManagerWindow);

        wait_for_view_load(gManagerWindow, function() {
          is(gCategoryUtilities.selectedCategory, "extension", "Should be back to the first view");
          check_state(gManagerWindow, false, true);

          close_manager(gManagerWindow, run_next_test);
        });
      });
    });
  });
});

// Test that when going forward to a now missing category we skip it
add_test(function() {
  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    AddonManagerPrivate.registerProvider(gProvider, gTypes);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type1", function() {
      gCategoryUtilities.openType("plugin", function() {
        go_back(gManagerWindow);
        wait_for_view_load(gManagerWindow, function() {
          go_back(gManagerWindow);
          wait_for_view_load(gManagerWindow, function() {
            is(gCategoryUtilities.selectedCategory, "extension", "Should be back to the extension view");

            AddonManagerPrivate.unregisterProvider(gProvider);

            ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

            go_forward(gManagerWindow);

            wait_for_view_load(gManagerWindow, function() {
              is(gCategoryUtilities.selectedCategory, "plugin", "Should be back to the plugin view");
              check_state(gManagerWindow, true, false);

              close_manager(gManagerWindow, run_next_test);
            });
          });
        });
      });
    });
  });
});

// Test that when going back to a now missing category and we can't go back any
// any further then we just display the default view
add_test(function() {
  AddonManagerPrivate.registerProvider(gProvider, gTypes);

  open_manager("addons://list/type1", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);
    is(gCategoryUtilities.selectedCategory, "type1", "Should be at the custom view");

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("extension", function() {
      AddonManagerPrivate.unregisterProvider(gProvider);

      ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

      go_back(gManagerWindow);

      wait_for_view_load(gManagerWindow, function() {
        is(gCategoryUtilities.selectedCategory, "discover", "Should be at the default view");
        check_state(gManagerWindow, false, true);

        close_manager(gManagerWindow, run_next_test);
      });
    });
  });
});

// Test that when going forward to a now missing category and we can't go
// forward any further then we just display the default view
add_test(function() {
  AddonManagerPrivate.registerProvider(gProvider, gTypes);

  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type1", function() {
      go_back(gManagerWindow);

      wait_for_view_load(gManagerWindow, function() {
        is(gCategoryUtilities.selectedCategory, "extension", "Should be at the extension view");

        AddonManagerPrivate.unregisterProvider(gProvider);

        ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

        go_forward(gManagerWindow);

        wait_for_view_load(gManagerWindow, function() {
          is(gCategoryUtilities.selectedCategory, "discover", "Should be at the default view");
          check_state(gManagerWindow, true, false);

          close_manager(gManagerWindow, run_next_test);
        });
      });
    });
  });
});

// Test that when going back we skip multiple missing categories
add_test(function() {
  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    AddonManagerPrivate.registerProvider(gProvider, gTypes);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type1", function() {
      gCategoryUtilities.openType("type3", function() {
        gCategoryUtilities.openType("plugin", function() {
          AddonManagerPrivate.unregisterProvider(gProvider);

          ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

          go_back(gManagerWindow);

          wait_for_view_load(gManagerWindow, function() {
            is(gCategoryUtilities.selectedCategory, "extension", "Should be back to the first view");
            check_state(gManagerWindow, false, true);

            close_manager(gManagerWindow, run_next_test);
          });
        });
      });
    });
  });
});

// Test that when going forward we skip multiple missing categories
add_test(function() {
  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    AddonManagerPrivate.registerProvider(gProvider, gTypes);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type1", function() {
      gCategoryUtilities.openType("type3", function() {
        gCategoryUtilities.openType("plugin", function() {
          go_back(gManagerWindow);
          wait_for_view_load(gManagerWindow, function() {
            go_back(gManagerWindow);
            wait_for_view_load(gManagerWindow, function() {
              go_back(gManagerWindow);
              wait_for_view_load(gManagerWindow, function() {
                is(gCategoryUtilities.selectedCategory, "extension", "Should be back to the extension view");

                AddonManagerPrivate.unregisterProvider(gProvider);

                ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

                go_forward(gManagerWindow);

                wait_for_view_load(gManagerWindow, function() {
                  is(gCategoryUtilities.selectedCategory, "plugin", "Should be back to the plugin view");
                  check_state(gManagerWindow, true, false);

                  close_manager(gManagerWindow, run_next_test);
                });
              });
            });
          });
        });
      });
    });
  });
});

// Test that when going back we skip all missing categories and when we can't go
// back any any further then we just display the default view
add_test(function() {
  AddonManagerPrivate.registerProvider(gProvider, gTypes);

  open_manager("addons://list/type1", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);
    is(gCategoryUtilities.selectedCategory, "type1", "Should be at the custom view");

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type3", function() {
      gCategoryUtilities.openType("extension", function() {
        AddonManagerPrivate.unregisterProvider(gProvider);

        ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

        go_back(gManagerWindow);

        wait_for_view_load(gManagerWindow, function() {
          is(gCategoryUtilities.selectedCategory, "discover", "Should be at the default view");
          check_state(gManagerWindow, false, true);

          close_manager(gManagerWindow, run_next_test);
        });
      });
    });
  });
});

// Test that when going forward we skip all missing categories and when we can't
// go back any any further then we just display the default view
add_test(function() {
  AddonManagerPrivate.registerProvider(gProvider, gTypes);

  open_manager("addons://list/extension", function(aWindow) {
    gManagerWindow = aWindow;
    gCategoryUtilities = new CategoryUtilities(gManagerWindow);

    ok(gCategoryUtilities.get("type1"), "Type 1 should be present");
    ok(gCategoryUtilities.isTypeVisible("type1"), "Type 1 should be visible");

    gCategoryUtilities.openType("type1", function() {
      gCategoryUtilities.openType("type3", function() {
        go_back(gManagerWindow);

        wait_for_view_load(gManagerWindow, function() {
          go_back(gManagerWindow);

          wait_for_view_load(gManagerWindow, function() {
            is(gCategoryUtilities.selectedCategory, "extension", "Should be at the extension view");

            AddonManagerPrivate.unregisterProvider(gProvider);

            ok(!gCategoryUtilities.get("type1", true), "Type 1 should not be present");

            go_forward(gManagerWindow);

            wait_for_view_load(gManagerWindow, function() {
              is(gCategoryUtilities.selectedCategory, "discover", "Should be at the default view");
              check_state(gManagerWindow, true, false);

              close_manager(gManagerWindow, run_next_test);
            });
          });
        });
      });
    });
  });
});