Welcome to mirror list, hosted at ThFree Co, Russian Federation.

account_and_limits_spec.js « application_settings « admin « pages « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d422f5dade3d532ef6870ac305fe32500bc4801e (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
import { loadHTMLFixture, resetHTMLFixture } from 'helpers/fixtures';
import initAccountAndLimitsSection, {
  PLACEHOLDER_USER_EXTERNAL_DEFAULT_FALSE,
  PLACEHOLDER_USER_EXTERNAL_DEFAULT_TRUE,
} from '~/pages/admin/application_settings/account_and_limits';

describe('AccountAndLimits', () => {
  const FIXTURE = 'application_settings/accounts_and_limit.html';

  beforeEach(() => {
    loadHTMLFixture(FIXTURE);
    initAccountAndLimitsSection();
  });

  afterEach(() => {
    resetHTMLFixture();
  });

  describe('Changing of userInternalRegex when userDefaultExternal', () => {
    /** @type {HTMLInputElement} */
    let userDefaultExternalCheckbox;
    /** @type {HTMLInputElement} */
    let userInternalRegexInput;

    beforeEach(() => {
      userDefaultExternalCheckbox = document.getElementById(
        'application_setting_user_default_external',
      );
      userInternalRegexInput = document.getElementById(
        'application_setting_user_default_internal_regex',
      );
    });

    it('is unchecked', () => {
      expect(userDefaultExternalCheckbox.checked).toBe(false);
      expect(userInternalRegexInput.placeholder).toEqual(PLACEHOLDER_USER_EXTERNAL_DEFAULT_FALSE);
      expect(userInternalRegexInput.readOnly).toBe(true);
    });

    it('is checked', () => {
      if (!userDefaultExternalCheckbox.checked) userDefaultExternalCheckbox.click();

      expect(userDefaultExternalCheckbox.checked).toBe(true);
      expect(userInternalRegexInput.placeholder).toEqual(PLACEHOLDER_USER_EXTERNAL_DEFAULT_TRUE);
      expect(userInternalRegexInput.readOnly).toBe(false);
    });
  });

  describe('Dormant users period input logic', () => {
    /** @type {HTMLInputElement} */
    let checkbox;
    /** @type {HTMLInputElement} */
    let input;

    const updateCheckbox = (checked) => {
      checkbox.checked = checked;
      checkbox.dispatchEvent(new Event('change'));
    };

    beforeEach(() => {
      checkbox = document.getElementById('application_setting_deactivate_dormant_users');
      input = document.getElementById('application_setting_deactivate_dormant_users_period');
    });

    it('initial state', () => {
      expect(checkbox.checked).toBe(false);
      expect(input.disabled).toBe(true);
    });

    it('changes field enabled flag on checkbox change', () => {
      updateCheckbox(true);
      expect(input.disabled).toBe(false);

      updateCheckbox(false);
      expect(input.disabled).toBe(true);
    });
  });
});