2022-04-22 09:49:26 -04:00
|
|
|
const MOCK_DELAY = 1000
|
|
|
|
|
|
|
|
const fakeUsersData = [
|
|
|
|
{
|
|
|
|
affiliation: {
|
|
|
|
institution: {
|
|
|
|
confirmed: true,
|
2022-04-29 07:09:53 -04:00
|
|
|
id: 1,
|
2022-04-22 09:49:26 -04:00
|
|
|
name: 'Overleaf',
|
|
|
|
},
|
|
|
|
licence: 'pro_plus',
|
|
|
|
},
|
|
|
|
confirmedAt: '2022-03-09T10:59:44.139Z',
|
|
|
|
email: 'foo@overleaf.com',
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
confirmedAt: '2022-03-10T10:59:44.139Z',
|
|
|
|
email: 'bar@overleaf.com',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
affiliation: {
|
|
|
|
institution: {
|
|
|
|
confirmed: true,
|
2022-04-29 07:09:53 -04:00
|
|
|
id: 2,
|
2022-04-22 09:49:26 -04:00
|
|
|
name: 'Overleaf',
|
|
|
|
},
|
|
|
|
licence: 'pro_plus',
|
|
|
|
department: 'Art & Art History',
|
|
|
|
role: 'Postdoc',
|
|
|
|
},
|
|
|
|
email: 'baz@overleaf.com',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
email: 'qux@overleaf.com',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2022-04-27 04:42:48 -04:00
|
|
|
const fakeInstitutions = [
|
2022-04-29 07:09:53 -04:00
|
|
|
{
|
|
|
|
id: 9326,
|
|
|
|
name: 'Unknown',
|
|
|
|
country_code: 'al',
|
|
|
|
departments: ['New department'],
|
|
|
|
},
|
2022-04-27 04:42:48 -04:00
|
|
|
]
|
2022-04-29 07:09:53 -04:00
|
|
|
const fakeInstitution = {
|
|
|
|
id: 123,
|
|
|
|
name: 'test',
|
|
|
|
country_code: 'de',
|
|
|
|
departments: [],
|
|
|
|
team_id: null,
|
|
|
|
}
|
|
|
|
const bazFakeInstitution = {
|
|
|
|
id: 2,
|
|
|
|
name: 'Baz',
|
|
|
|
country_code: 'de',
|
|
|
|
departments: ['Custom department 1', 'Custom department 2'],
|
|
|
|
team_id: null,
|
|
|
|
}
|
2022-04-27 04:42:48 -04:00
|
|
|
|
2022-05-16 04:03:04 -04:00
|
|
|
const fakeInstitutionDomain1 = [
|
2022-04-27 12:13:17 -04:00
|
|
|
{
|
|
|
|
university: {
|
|
|
|
id: 1234,
|
|
|
|
ssoEnabled: true,
|
|
|
|
name: 'Auto Complete University',
|
|
|
|
},
|
|
|
|
hostname: 'autocomplete.edu',
|
|
|
|
confirmed: true,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2022-05-16 04:03:04 -04:00
|
|
|
const fakeInstitutionDomain2 = [
|
|
|
|
{
|
|
|
|
university: {
|
|
|
|
id: 5678,
|
|
|
|
ssoEnabled: false,
|
|
|
|
name: 'Fake Auto Complete University',
|
|
|
|
},
|
|
|
|
hostname: 'fake-autocomplete.edu',
|
|
|
|
confirmed: true,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2022-04-22 09:49:26 -04:00
|
|
|
export function defaultSetupMocks(fetchMock) {
|
|
|
|
fetchMock
|
|
|
|
.get(/\/user\/emails/, fakeUsersData, { delay: MOCK_DELAY })
|
2022-04-29 07:09:53 -04:00
|
|
|
.get(/\/institutions\/list\/2/, bazFakeInstitution, { delay: MOCK_DELAY })
|
|
|
|
.get(/\/institutions\/list\/\d+/, fakeInstitution, { delay: MOCK_DELAY })
|
|
|
|
.get(/\/institutions\/list\?country_code=.*/, fakeInstitutions, {
|
|
|
|
delay: MOCK_DELAY,
|
|
|
|
})
|
2022-05-16 04:03:04 -04:00
|
|
|
.get(/\/institutions\/domains\?hostname=a/, fakeInstitutionDomain1)
|
|
|
|
.get(/\/institutions\/domains\?hostname=f/, fakeInstitutionDomain2)
|
2022-04-22 09:49:26 -04:00
|
|
|
.post(/\/user\/emails\/*/, 200, {
|
|
|
|
delay: MOCK_DELAY,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export function errorsMocks(fetchMock) {
|
|
|
|
fetchMock
|
|
|
|
.get(/\/user\/emails/, fakeUsersData, { delay: MOCK_DELAY })
|
|
|
|
.post(/\/user\/emails\/*/, 500)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function setDefaultMeta() {
|
|
|
|
window.metaAttributesCache = window.metaAttributesCache || new Map()
|
|
|
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
2022-04-27 12:13:42 -04:00
|
|
|
...window.metaAttributesCache.get('ol-ExposedSettings'),
|
2022-04-22 09:49:26 -04:00
|
|
|
hasAffiliationsFeature: true,
|
2022-04-27 12:13:17 -04:00
|
|
|
hasSamlFeature: true,
|
|
|
|
samlInitPath: 'saml/init',
|
2022-04-22 09:49:26 -04:00
|
|
|
})
|
|
|
|
}
|