-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathFSXAProxyApiRemoteProjects.test.ts
More file actions
276 lines (238 loc) · 8.54 KB
/
Copy pathFSXAProxyApiRemoteProjects.test.ts
File metadata and controls
276 lines (238 loc) · 8.54 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import dotenv from 'dotenv'
import express, { Express } from 'express'
import cors from 'cors'
import {
CaaSApi_Dataset,
CaaSApi_Media_Picture,
CaaSApi_PageRef,
FSXAContentMode,
FSXAProxyApi,
LogLevel,
Page,
} from '../src'
import { default as expressIntegration } from '../src/integrations/express'
import { FSXARemoteApi } from '../src/modules/FSXARemoteApi'
import { CaasTestingClient, closeServer, retryAsync, waitUntilPreconditionMet, TEST_TIMEOUTS } from './utils'
import { Server } from 'http'
import { faker } from '@faker-js/faker'
import {
createDataset,
createDatasetReference,
createMediaPicture,
createMediaPictureReference,
createPageRef,
createPageRefBody,
} from '../src/testutils'
dotenv.config({ path: './integrationtests/.env' })
const { INTEGRATION_TEST_API_KEY, INTEGRATION_TEST_CAAS, INTEGRATION_TEST_TENANT_ID } = process.env
// promisify server start so we can await it in jest
const startSever = (app: Express) =>
new Promise<Server>((resolve) => {
const server = app.listen(3002, async () => {
resolve(server)
})
})
describe('FSXAProxyAPIRemoteProjects should resolve references', () => {
const randomId1 = faker.string.uuid()
const projectLocale = {
identifier: 'de_DE',
country: 'DE',
language: 'de',
}
const tenantID = INTEGRATION_TEST_TENANT_ID || 'fsxa-api-integration-test'
const randomId2 = faker.string.uuid()
let proxyAPI: FSXAProxyApi
let server: Server
let caasClient: CaasTestingClient
let localMedia: CaaSApi_Media_Picture
let remoteMedia: CaaSApi_Media_Picture
let pageRef: CaaSApi_PageRef
let dataset: CaaSApi_Dataset
async function init(
remoteProjectId: string,
remoteProjectLocale: string,
differentMediaIds: boolean = false
) {
let remoteApi = new FSXARemoteApi({
apikey: INTEGRATION_TEST_API_KEY!,
caasURL: INTEGRATION_TEST_CAAS!,
contentMode: FSXAContentMode.PREVIEW,
navigationServiceURL:
'https://your-navigationservice.e-spirit.cloud/navigation'!,
projectID: randomId1,
tenantID: tenantID,
remotes: {
media: { id: remoteProjectId, locale: remoteProjectLocale },
},
logLevel: LogLevel.INFO,
enableEventStream: false,
maxReferenceDepth: 10,
})
const app = express()
app.use(cors())
app.use('/api', expressIntegration({ api: remoteApi }))
server = await startSever(app)
proxyAPI = new FSXAProxyApi('http://localhost:3002/api', LogLevel.INFO)
caasClient = await CaasTestingClient.init({
apikey: INTEGRATION_TEST_API_KEY!,
caasURL: INTEGRATION_TEST_CAAS!,
projectID: randomId1,
tenantID: tenantID,
contentMode: FSXAContentMode.PREVIEW,
remoteProjectId,
})
await prepareDataInCaas(
remoteProjectId,
remoteProjectLocale,
differentMediaIds
)
}
async function prepareDataInCaas(
remoteProjectId: string,
remoteProjectLocale: string,
differentMediaIds: boolean
) {
const mediaId = faker.string.uuid()
const remoteMediaId = differentMediaIds ? faker.string.uuid() : mediaId
localMedia = createMediaPicture(mediaId, 'de_DE')
localMedia.description = 'local media'
remoteMedia = createMediaPicture(remoteMediaId, remoteProjectLocale)
remoteMedia.description = 'remote media'
pageRef = createPageRef([createPageRefBody()])
const pictureLocal = createMediaPictureReference(mediaId)
const pictureRemote = createMediaPictureReference(
remoteMediaId,
remoteProjectId
)
// create dataset
const datasetId = faker.string.uuid()
dataset = createDataset(datasetId)
const datasetReference = createDatasetReference(datasetId)
remoteMedia.metaFormData = {
md_dataset: datasetReference,
}
await caasClient.addItemsToCollection([localMedia], projectLocale)
const [language, country] = remoteProjectLocale.split('_')
// add items to remote project collection
await caasClient.addItemsToRemoteCollection([remoteMedia, dataset], {
language,
country,
identifier: remoteProjectLocale,
})
pageRef.page.formData = {
pt_pictureLocal: pictureLocal,
pt_pictureRemote: pictureRemote,
}
await caasClient.addItemsToCollection([pageRef], projectLocale)
// Wait for CaaS to propagate all data before tests run
await waitUntilPreconditionMet(
async () => {
const res = await caasClient.getItem(pageRef.identifier, 'de_DE')
return res.status === 200
},
{
timeoutMs: 20000,
pollIntervalMs: 500,
errorMessage: 'PageRef not available in CaaS after creation',
}
)
}
afterEach(async () => {
try {
const res = await caasClient.getCollection()
const parsedRes = await res.json()
await caasClient.removeCollection(parsedRes._etag.$oid)
const res2 = await caasClient.getRemoteCollection()
if (res2.status != 404) {
const parsedRes2 = await res2.json()
await caasClient.removeRemoteCollection(parsedRes2._etag.$oid)
}
} finally {
await closeServer(server)
}
})
it('local project id != remote project id, local locale != remote locale', async () => {
await init(randomId2, 'en_GB')
await retryAsync(async () => {
const res: Page = await proxyAPI.fetchElement({
id: pageRef.identifier,
locale: 'de_DE',
})
expect(res.data.pt_pictureLocal.id).toEqual(res.data.pt_pictureRemote.id)
expect(localMedia.description).toEqual(res.data.pt_pictureLocal.description)
expect(remoteMedia.description).toEqual(
res.data.pt_pictureRemote.description
)
}, { maxRetries: 5, delayMs: 1000 })
}, TEST_TIMEOUTS.LONG)
it('local project id != remote project id, local locale == remote locale', async () => {
await init(randomId2, 'de_DE')
await retryAsync(async () => {
const res: Page = await proxyAPI.fetchElement({
id: pageRef.identifier,
locale: 'de_DE',
})
expect(res.data.pt_pictureLocal.id).toEqual(res.data.pt_pictureRemote.id)
expect(localMedia.description).toEqual(res.data.pt_pictureLocal.description)
expect(remoteMedia.description).toEqual(
res.data.pt_pictureRemote.description
)
}, { maxRetries: 5, delayMs: 1000 })
}, TEST_TIMEOUTS.LONG)
it('local project id == remote project id, local locale != remote locale', async () => {
await init(randomId1, 'en_GB')
await retryAsync(async () => {
const res: Page = await proxyAPI.fetchElement({
id: pageRef.identifier,
locale: 'de_DE',
})
expect(res.data.pt_pictureLocal.id).toEqual(res.data.pt_pictureRemote.id)
expect(localMedia.description).toEqual(res.data.pt_pictureLocal.description)
expect(remoteMedia.description).toEqual(
res.data.pt_pictureRemote.description
)
}, { maxRetries: 5, delayMs: 1000 })
}, TEST_TIMEOUTS.LONG)
it('local project id == remote project id, local locale == remote locale', async () => {
await init(randomId1, 'de_DE')
await retryAsync(async () => {
const res: Page = await proxyAPI.fetchElement({
id: pageRef.identifier,
locale: 'de_DE',
})
expect(res.data.pt_pictureLocal.id).toEqual(res.data.pt_pictureRemote.id)
// Since projectId same and Ids the same, we expect the same media
expect(res.data.pt_pictureRemote.description).toEqual(
res.data.pt_pictureLocal.description
)
}, { maxRetries: 5, delayMs: 1000 })
}, TEST_TIMEOUTS.LONG)
it('local project id == remote project id, local locale == remote locale, different media Ids', async () => {
await init(randomId1, 'de_DE', true)
await retryAsync(async () => {
const res: Page = await proxyAPI.fetchElement({
id: pageRef.identifier,
locale: 'de_DE',
})
expect(res.data.pt_pictureLocal.id).not.toEqual(
res.data.pt_pictureRemote.id
)
expect(localMedia.description).toEqual(res.data.pt_pictureLocal.description)
expect(remoteMedia.description).toEqual(
res.data.pt_pictureRemote.description
)
}, { maxRetries: 5, delayMs: 1000 })
}, TEST_TIMEOUTS.LONG)
it('Dataset references on metadata of remote media should be fetchable', async () => {
await init(randomId2, 'en_GB')
await retryAsync(async () => {
const res: Page = await proxyAPI.fetchElement({
id: pageRef.identifier,
locale: 'de_DE',
})
expect(res.data.pt_pictureRemote.meta.md_dataset.id).toEqual(
dataset.identifier
)
}, { maxRetries: 5, delayMs: 1000 })
}, TEST_TIMEOUTS.LONG)
})