aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/infrastructure/resources/impl/__tests__/getDistResources.spec.ts
blob: 635a6b4b98f3d85dab0be312584bed0595179eb8 (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
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
/*
 * 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 os from 'node:os';

import { each } from '@sophie/test-utils';

import Resources from '../../Resources';
import getDistResources from '../getDistResources';

const defaultDevServerURL = 'http://localhost:3000/';

const [
  thisDir,
  preloadIndexPath,
  preloadIndexFileURL,
  rendererIndexFileURL,
  rendererRootFileURL,
] =
  os.platform() === 'win32'
    ? [
        'C:\\Program Files\\sophie\\resources\\app.asar\\packages\\main\\dist',
        'C:\\Program Files\\sophie\\resources\\app.asar\\packages\\preload\\dist\\index.cjs',
        'file:///C:/Program Files/sophie/resources/app.asar/packages/preload/dist/index.cjs',
        'file:///C:/Program Files/sophie/resources/app.asar/packages/renderer/dist/index.html',
        'file:///C:/Program Files/sophie/resources/app.asar/packages/renderer/dist/',
      ]
    : [
        '/opt/sophie/resources/app.asar/packages/main/dist',
        '/opt/sophie/resources/app.asar/packages/preload/dist/index.cjs',
        'file:///opt/sophie/resources/app.asar/packages/preload/dist/index.cjs',
        'file:///opt/sophie/resources/app.asar/packages/renderer/dist/index.html',
        'file:///opt/sophie/resources/app.asar/packages/renderer/dist/',
      ];

const fileURLs: [string, string] = [rendererIndexFileURL, rendererRootFileURL];

each([
  ['not in dev mode', false, undefined, ...fileURLs],
  [
    'not in dev mode with VITE_DEV_SERVER_URL set',
    false,
    defaultDevServerURL,
    ...fileURLs,
  ],
  ['in dev mode with no VITE_DEV_SERVER_URL', true, undefined, ...fileURLs],
  [
    'in dev mode with VITE_DEV_SERVER_URL set',
    true,
    defaultDevServerURL,
    `${defaultDevServerURL}index.html`,
    defaultDevServerURL,
  ],
]).describe(
  'when %s',
  (
    _description: string,
    devMode: boolean,
    devServerURL: string,
    rendererIndexURL: string,
    rendererRootURL: string,
  ) => {
    let resources: Resources;

    beforeEach(() => {
      resources = getDistResources(devMode, thisDir, devServerURL);
    });

    it('getPath should return the path to the requested resource', () => {
      const path = resources.getPath('preload', 'index.cjs');
      expect(path).toBe(preloadIndexPath);
    });

    it('getFileURL should return the file URL to the requested resource', () => {
      const url = resources.getFileURL('preload', 'index.cjs');
      expect(url).toBe(preloadIndexFileURL);
    });

    describe('getRendererURL', () => {
      it('should return the URL to the requested resource', () => {
        const url = resources.getRendererURL('index.html');
        expect(url).toBe(rendererIndexURL);
      });

      it('should return the root URL', () => {
        const url = resources.getRendererURL('/');
        expect(url).toBe(rendererRootURL);
      });
    });
  },
);