summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/unit/test_recipes_content.js
blob: 673bb508511a4490d3ec780ff09983c1a5ecd98a (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * Test filtering recipes in LoginRecipesContent.
 */

"use strict";

add_task(async function test_getFieldOverrides() {
  let recipes = new Set([
    {
      // path doesn't match but otherwise good
      hosts: ["example.com:8080"],
      passwordSelector: "#password",
      pathRegex: /^\/$/,
      usernameSelector: ".username",
    },
    {
      // match with no field overrides
      hosts: ["example.com:8080"],
    },
    {
      // best match (field selectors + path match)
      description: "best match",
      hosts: ["a.invalid", "example.com:8080", "other.invalid"],
      passwordSelector: "#password",
      pathRegex: /^\/first\/second\/$/,
      usernameSelector: ".username",
    },
  ]);

  let form = MockDocument.createTestDocument(
    "http://localhost:8080/first/second/",
    "<form>"
  ).forms[0];
  let override = LoginRecipesContent.getFieldOverrides(recipes, form);
  Assert.strictEqual(
    override.description,
    "best match",
    "Check the best field override recipe was returned"
  );
  Assert.strictEqual(
    override.usernameSelector,
    ".username",
    "Check usernameSelector"
  );
  Assert.strictEqual(
    override.passwordSelector,
    "#password",
    "Check passwordSelector"
  );
});