summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/browser/browser_isProbablyASignUpForm.js
blob: cc8bc63e7a5cee9f2eac6961d3889af73d10c207 (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
"use strict";

const TEST_URL = `https://example.com${DIRECTORY_PATH}form_signup_detection.html`;

add_task(async () => {
  await BrowserTestUtils.withNewTab(
    {
      gBrowser,
      url: TEST_URL,
    },
    async browser => {
      await SpecialPowers.spawn(browser, [], async () => {
        const doc = content.document;
        const { FormScenarios } = ChromeUtils.importESModule(
          "resource://gre/modules/FormScenarios.sys.mjs"
        );

        function assertSignUpForm(
          message,
          formId,
          inputId,
          expectedToBeSignUp
        ) {
          const isSignUpForm = !!FormScenarios.detect({
            form: doc.getElementById(formId),
            input: doc.getElementById(inputId),
          }).signUpForm;
          Assert.equal(isSignUpForm, expectedToBeSignUp, message);
        }

        assertSignUpForm(
          "Obvious signup form is detected as sign up form",
          "obvious-signup-form",
          "obvious-signup-email",
          true
        );
        assertSignUpForm(
          "Obvious non signup form is detected as non sign up form",
          "obvious-login-form",
          "obvious-login-username",
          false
        );
        assertSignUpForm(
          "An <input> HTML element is detected as non sign up form",
          "",
          "standalone-username",
          false
        );
      });
    }
  );
});