aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/__tests__/SharedStoreBase.test.ts
blob: 64f5c6b30075839401c9a169cd319dd10bf00fbb (plain) (blame)
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
/*
 * Copyright (C)  2022 Kristóf Marussy <kristof@marussy.com>
 *
 * This file is part of Sophie.
 *
 * Sophie is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { unprotect } from 'mobx-state-tree';

import SharedStoreBase from '../SharedStoreBase.js';

import { testProfile, testService } from './__fixtures__/serviceFixtures.js';

describe.each([true, false])(
  'when showLocationBar is %j',
  (showLocationBar) => {
    test('hides the location bar if there is no selected service', () => {
      const sharedStore = SharedStoreBase.create({
        settings: { showLocationBar },
      });

      expect(sharedStore.alwaysHideLocationBar).toBe(true);
      expect(sharedStore.alwaysShowLocationBar).toBe(false);
      expect(sharedStore.locationBarVisible).toBe(false);
      expect(sharedStore.canToggleLocationBar).toBe(false);
    });

    describe('and there is a selected service', () => {
      let sharedStore: SharedStoreBase;

      beforeEach(() => {
        sharedStore = SharedStoreBase.create({
          settings: {
            selectedService: testService.id,
            showLocationBar,
          },
          profilesById: { testProfile },
          servicesById: { testService },
        });
      });

      test('shows the location bar if requested by the user', () => {
        expect(sharedStore.alwaysHideLocationBar).toBe(false);
        expect(sharedStore.alwaysShowLocationBar).toBe(false);
        expect(sharedStore.locationBarVisible).toBe(showLocationBar);
        expect(sharedStore.canToggleLocationBar).toBe(true);
      });

      test('show the location bar if forced by the service', () => {
        unprotect(sharedStore);
        const service = sharedStore.settings.selectedService!;
        Object.defineProperty(service, 'alwaysShowLocationBar', {
          value: true,
        });

        expect(sharedStore.alwaysHideLocationBar).toBe(false);
        expect(sharedStore.alwaysShowLocationBar).toBe(true);
        expect(sharedStore.locationBarVisible).toBe(true);
        expect(sharedStore.canToggleLocationBar).toBe(false);
      });
    });
  },
);