-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(DHIS2-16988): download uncompressed json rather than open inline
- Loading branch information
Showing
2 changed files
with
82 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { locationAssign } from './helper.js' | ||
|
||
describe('locationAssign', () => { | ||
it('should create a file name based on the params', () => { | ||
const url = | ||
'https://debug.dhis2.org/dev/api/tracker/trackedEntities.json?ouMode=CAPTURE&format=json&includeDeleted=false&dataElementIdScheme=UID&eventIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=trackedEntities.json&paging=false&totalPages=false&program=lxAQ7Zs9VYR' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('trackedEntities.json') | ||
}) | ||
it('should create url with orgUnits', () => { | ||
const url = | ||
'https://debug.dhis2.org/dev/api/tracker/trackedEntities.json?ouMode=SELECTED&includeDeleted=false&dataElementIdScheme=UID&eventIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=trackedEntities.json&paging=false&totalPages=false&orgUnits=O6uvpzGd5pu,fdc6uOvgoji&program=kla3mAPgvCH' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('trackedEntities.json') | ||
}) | ||
it('should create url with tracked entities', () => { | ||
const url = | ||
'https://debug.dhis2.org/dev/api/tracker/trackedEntities.json?ouMode=SELECTED&includeDeleted=false&dataElementIdScheme=UID&eventIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=trackedEntities.json&paging=false&totalPages=false&orgUnits=ImspTQPwCqd&trackedEntityType=bVkFYAvoUCP' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('trackedEntities.json') | ||
}) | ||
it('should create url with CSV', () => { | ||
const url = | ||
'https://debug.dhis2.org/dev/api/tracker/trackedEntities.csv?ouMode=SELECTED&includeDeleted=false&dataElementIdScheme=UID&eventIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=trackedEntities.csv&paging=false&totalPages=false&orgUnits=ImspTQPwCqd&program=lxAQ7Zs9VYR' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('trackedEntities.csv') | ||
}) | ||
|
||
it('should create url with events zip', () => { | ||
const url = | ||
'https://debug.dhis2.org/dev/api/tracker/events.json.zip?links=false&paging=false&totalPages=false&orgUnit=fwH9ipvXde9&program=VBqh0ynB2wv&includeDeleted=false&dataElementIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=events.json.zip&occurredAfter=2023-12-12&occurredBefore=2024-03-12&ouMode=CHILDREN&format=json' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('events.json.zip') | ||
}) | ||
|
||
it('should create url with events gzip', () => { | ||
const url = | ||
'https://debug.dhis2.org/dev/api/tracker/events.json.gz?links=false&paging=false&totalPages=false&orgUnit=ImspTQPwCqd&program=lxAQ7Zs9VYR&includeDeleted=false&dataElementIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=events.json.gz&occurredAfter=2023-12-12&occurredBefore=2024-03-12&ouMode=SELECTED&format=json' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('events.json.gz') | ||
}) | ||
it('should work with relative URLs when bundled in DHIS2', () => { | ||
Object.defineProperty(global.document, 'baseURI', { | ||
value: 'http://localhost:8080/dhis-web-import-export/index.html#/export/tei', | ||
}) | ||
const url = | ||
'../api/tracker/trackedEntities.json?ouMode=SELECTED&includeDeleted=false&dataElementIdScheme=UID&eventIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=trackedEntities.json&paging=false&totalPages=false&orgUnits=ImspTQPwCqd&program=lxAQ7Zs9VYR' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('trackedEntities.json') | ||
}) | ||
it('should work with relative URLs when bundled in DHIS2 for zip', () => { | ||
Object.defineProperty(global.document, 'baseURI', { | ||
value: 'http://localhost:8080/dhis-web-import-export/index.html#/export/tei', | ||
}) | ||
const url = | ||
'../api/tracker/events.json.zip?links=false&paging=false&totalPages=false&orgUnit=ImspTQPwCqd&program=lxAQ7Zs9VYR&includeDeleted=false&dataElementIdScheme=UID&orgUnitIdScheme=UID&idScheme=UID&attachment=events.json.zip&occurredAfter=2023-12-12&occurredBefore=2024-03-12&ouMode=SELECTED&format=json' | ||
const link = locationAssign(url) | ||
expect(link.download).toEqual('events.json.zip') | ||
}) | ||
}) |