aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/dashboard/transfer.spec.ts
blob: e40fca270b5ac696b8bc41aa418b7b4c6c6e444a (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
import { test } from '@japa/runner';
import { readFileSync } from 'node:fs';
import UserFactory from 'Database/factories/UserFactory';

test.group('Dashboard / Transfer page', () => {
  test('redirects to /user/login when accessing /user/transfer as guest', async ({
    client,
  }) => {
    const response = await client.get('/user/transfer');

    response.assertRedirectsTo('/user/login'); // Check if it redirects to the expected URL
  });

  test('returns a 200 opening the transfer route while being logged in', async ({
    client,
  }) => {
    const user = await UserFactory.create();
    const response = await client.get('/user/transfer').loginAs(user);

    response.assertStatus(200);
  });

  test('returns a validation error when not uploading a file', async ({
    client,
  }) => {
    const user = await UserFactory.create();
    const response = await client.post('/user/transfer').loginAs(user);

    response.assertTextIncludes('Invalid Ferdium account file');
  });

  test('returns a validation error when trying to use anything but json', async ({
    client,
  }) => {
    const user = await UserFactory.create();
    const response = await client
      .post('/user/transfer')
      .loginAs(user)
      .field(
        'file',
        readFileSync('tests/functional/dashboard/import-stubs/random-file.txt'),
      );

    response.assertTextIncludes('Invalid Ferdium account file');
  });

  test('returns a validation error when trying to use anything valid json', async ({
    client,
  }) => {
    const user = await UserFactory.create();
    const response = await client
      .post('/user/transfer')
      .loginAs(user)
      .field(
        'file',
        readFileSync('tests/functional/dashboard/import-stubs/invalid.json'),
      );

    response.assertTextIncludes('Invalid Ferdium account file');
  });

  test('returns a validation error when trying to use a json file with no ferdium structure', async ({
    client,
  }) => {
    const user = await UserFactory.create();
    const response = await client
      .post('/user/transfer')
      .loginAs(user)
      .field(
        'file',
        readFileSync(
          'tests/functional/dashboard/import-stubs/valid-no-data.json',
        ),
      );

    response.assertTextIncludes('Invalid Ferdium account file');
  });

  test('correctly transfers data from json/ferdi-data and ferdium-data file with only workspaces', async ({
    client,
    assert,
  }) => {
    // Repeat for all 3 file extension
    const files = [
      'workspaces-only.json',
      'workspaces-only.ferdi-data',
      'workspaces-only.ferdium-data',
    ];

    for (const file of files) {
      // eslint-disable-next-line no-await-in-loop
      const user = await UserFactory.create();
      // eslint-disable-next-line no-await-in-loop
      const response = await client
        .post('/user/transfer')
        .loginAs(user)
        .field(
          'file',
          readFileSync(`tests/functional/dashboard/import-stubs/${file}`),
        );

      response.assertTextIncludes(
        'Your account has been imported, you can now login as usual!',
      );
      // eslint-disable-next-line no-await-in-loop
      await user.refresh();

      // eslint-disable-next-line no-await-in-loop
      const workspacesForUser = await user.related('workspaces').query();
      assert.equal(workspacesForUser.length, 3, file);

      // ensure not JSON encoded twice
      for (const workspace of workspacesForUser) {
        assert.isNull(workspace.data.match(/\\"/), file);
      }
    }
  });

  test('correctly transfers data from json/ferdi-data and ferdium-data file with only services', async ({
    client,
    assert,
  }) => {
    // Repeat for all 3 file extension
    const files = [
      'services-only.json',
      'services-only.ferdi-data',
      'services-only.ferdium-data',
    ];

    for (const file of files) {
      // eslint-disable-next-line no-await-in-loop
      const user = await UserFactory.create();
      // eslint-disable-next-line no-await-in-loop
      const response = await client
        .post('/user/transfer')
        .loginAs(user)
        .field(
          'file',
          readFileSync(`tests/functional/dashboard/import-stubs/${file}`),
        );

      response.assertTextIncludes(
        'Your account has been imported, you can now login as usual!',
      );
      // eslint-disable-next-line no-await-in-loop
      await user.refresh();

      // eslint-disable-next-line no-await-in-loop
      const servicesForUser = await user.related('services').query();
      assert.equal(servicesForUser.length, 3, file);

      // ensure not JSON encoded twice
      for (const service of servicesForUser) {
        assert.isNull(service.settings.match(/\\"/), file);
      }
    }
  });

  test('correctly transfers data from json/ferdi-data and ferdium-data file with workspaces and services', async ({
    client,
    assert,
  }) => {
    // Repeat for all 3 file extension
    const files = [
      'services-workspaces.json',
      'services-workspaces.ferdi-data',
      'services-workspaces.ferdium-data',
    ];

    for (const file of files) {
      // eslint-disable-next-line no-await-in-loop
      const user = await UserFactory.create();
      // eslint-disable-next-line no-await-in-loop
      const response = await client
        .post('/user/transfer')
        .loginAs(user)
        .field(
          'file',
          readFileSync(`tests/functional/dashboard/import-stubs/${file}`),
        );

      response.assertTextIncludes(
        'Your account has been imported, you can now login as usual!',
      );
      // eslint-disable-next-line no-await-in-loop
      await user.refresh();

      // eslint-disable-next-line no-await-in-loop
      const servicesForUser = await user.related('services').query();
      // eslint-disable-next-line no-await-in-loop
      const workspacesForUser = await user.related('workspaces').query();
      assert.equal(servicesForUser.length, 3, file);
      assert.equal(workspacesForUser.length, 3, file);

      const firstServiceUuid = servicesForUser.find(
        s => s.name === 'random-service-1',
      )?.serviceId;
      const secondServiceUuid = servicesForUser.find(
        s => s.name === 'random-service-2',
      )?.serviceId;
      const thirdServiceUUid = servicesForUser.find(
        s => s.name === 'random-service-3',
      )?.serviceId;

      // Assert the first workspace to not have any services
      const firstWorkspace = workspacesForUser.find(
        w => w.name === 'workspace1',
      );
      if (firstWorkspace?.services) {
        assert.empty(JSON.parse(firstWorkspace.services), file);
      }

      const secondWorkspace = workspacesForUser.find(
        w => w.name === 'workspace2',
      );
      if (secondWorkspace?.services) {
        assert.deepEqual(
          JSON.parse(secondWorkspace.services),
          [firstServiceUuid, secondServiceUuid],
          file,
        );
      }

      const thirdWorkspace = workspacesForUser.find(
        w => w.name === 'workspace3',
      );
      if (thirdWorkspace?.services) {
        assert.deepEqual(
          JSON.parse(thirdWorkspace.services),
          [firstServiceUuid, secondServiceUuid, thirdServiceUUid],
          file,
        );
      }
    }
  });
});