This commit is contained in:
parent
63cf602ab2
commit
7e0ca4ce6d
|
@ -6,10 +6,12 @@ const session = useSession();
|
||||||
const token = session.getToken();
|
const token = session.getToken();
|
||||||
|
|
||||||
describe('downloadFile', () => {
|
describe('downloadFile', () => {
|
||||||
const baseUrl = 'http://localhost:9000';
|
|
||||||
let defaulCreateObjectURL;
|
let defaulCreateObjectURL;
|
||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
|
vi.mock('src/composables/getUrl', () => ({
|
||||||
|
getUrl: vi.fn().mockResolvedValue(''),
|
||||||
|
}));
|
||||||
defaulCreateObjectURL = window.URL.createObjectURL;
|
defaulCreateObjectURL = window.URL.createObjectURL;
|
||||||
window.URL.createObjectURL = vi.fn(() => 'blob:http://localhost:9000/blob-id');
|
window.URL.createObjectURL = vi.fn(() => 'blob:http://localhost:9000/blob-id');
|
||||||
});
|
});
|
||||||
|
@ -22,15 +24,14 @@ describe('downloadFile', () => {
|
||||||
headers: { 'content-disposition': 'attachment; filename="test-file.txt"' },
|
headers: { 'content-disposition': 'attachment; filename="test-file.txt"' },
|
||||||
};
|
};
|
||||||
vi.spyOn(axios, 'get').mockImplementation((url) => {
|
vi.spyOn(axios, 'get').mockImplementation((url) => {
|
||||||
if (url == 'Urls/getUrl') return Promise.resolve({ data: baseUrl });
|
if (url.includes('downloadFile')) return Promise.resolve(res);
|
||||||
else if (url.includes('downloadFile')) return Promise.resolve(res);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
await downloadFile(1);
|
await downloadFile(1);
|
||||||
|
|
||||||
expect(axios.get).toHaveBeenCalledWith(
|
expect(axios.get).toHaveBeenCalledWith(
|
||||||
`${baseUrl}/api/dms/1/downloadFile?access_token=${token}`,
|
`/api/dms/1/downloadFile?access_token=${token}`,
|
||||||
{ responseType: 'blob' }
|
{ responseType: 'blob' },
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -210,7 +210,6 @@ function isSigned(row) {
|
||||||
openConfirmationModal(
|
openConfirmationModal(
|
||||||
t('Sign PDA'),
|
t('Sign PDA'),
|
||||||
t('Are you sure you want to send it?'),
|
t('Are you sure you want to send it?'),
|
||||||
|
|
||||||
() => sendToTablet([row]),
|
() => sendToTablet([row]),
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
|
@ -306,4 +305,6 @@ es:
|
||||||
Do you want to remove this PDA?: ¿Desea eliminar este PDA?
|
Do you want to remove this PDA?: ¿Desea eliminar este PDA?
|
||||||
You can only have one PDA: Solo puedes tener un PDA si no eres autonomo
|
You can only have one PDA: Solo puedes tener un PDA si no eres autonomo
|
||||||
This PDA is already assigned to another user: Este PDA ya está asignado a otro usuario
|
This PDA is already assigned to another user: Este PDA ya está asignado a otro usuario
|
||||||
|
Are you sure you want to send it?: ¿Seguro que quieres enviarlo?
|
||||||
|
Sign PDA: Firmar PDA
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
Loading…
Reference in New Issue