-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACA-4679] Added code changes and env variables to enable DownloadPro…
…mpt and FileAutoDownload features on ACA (#3127) * [ACA-4679] Added docker variables, app.config.json.tpl config and additional code for enabling non-responsive file preview download and file auto download features in ACA * [ACA-4679] Added defaults for downloadPrompt for viewer and fileAutoDownload features. Updated variable names from 'nonResponsiveDialog' to 'downloadPrompt' * [ACA-4679] Added unit test cases for FileAutoDownloadService * [ACA-4679] Updated env variable references from NonResponsiveDialog to DownloadPrompt * [ACA-4679] Added missing licence header on new files * [ACA-4679] Added env variable configuration for GithubActions jobs * [ACA-4679] Added env variable configuration for GithubActions jobs * [ACA-4679] Removed unneeded env variable configuration for GithubActions jobs * [ACA-4679] Updated .env file configuration in README.md
- Loading branch information
1 parent
f86c80d
commit 9148ccc
Showing
15 changed files
with
226 additions
and
34 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
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
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
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
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
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
82 changes: 82 additions & 0 deletions
82
projects/aca-shared/src/lib/services/aca-file-auto-download.service.spec.ts
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,82 @@ | ||
/*! | ||
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved. | ||
* | ||
* Alfresco Example Content Application | ||
* | ||
* This file is part of the Alfresco Example Content Application. | ||
* If the software was purchased under a paid Alfresco license, the terms of | ||
* the paid license agreement will prevail. Otherwise, the software is | ||
* provided under the following open source license terms: | ||
* | ||
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The Alfresco Example Content Application is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { TestBed } from '@angular/core/testing'; | ||
import { AcaFileAutoDownloadService, initialState, LibTestingModule } from '@alfresco/aca-shared'; | ||
import { MatDialog } from '@angular/material/dialog'; | ||
import { AppConfigService } from '@alfresco/adf-core'; | ||
import { FileAutoDownloadComponent } from '@alfresco/adf-content-services'; | ||
import { provideMockStore } from '@ngrx/store/testing'; | ||
|
||
describe('AcaFileAutoDownloadService', () => { | ||
let service: AcaFileAutoDownloadService; | ||
let appConfig: AppConfigService; | ||
|
||
const mockDialogRef = { | ||
open: jasmine.createSpy('open') | ||
}; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
imports: [LibTestingModule], | ||
providers: [provideMockStore({ initialState }), { provide: MatDialog, useValue: mockDialogRef }] | ||
}); | ||
|
||
service = TestBed.inject(AcaFileAutoDownloadService); | ||
appConfig = TestBed.inject(AppConfigService); | ||
}); | ||
|
||
it('shouldFileAutoDownload should return true if fileSize exceeds configured threshold and file auto download is enabled', () => { | ||
appConfig.config.viewer = { | ||
enableFileAutoDownload: true, | ||
fileAutoDownloadSizeThresholdInMB: 10 | ||
}; | ||
const shouldAutDownloadFlag = service.shouldFileAutoDownload(11000000); | ||
expect(shouldAutDownloadFlag).toBe(true); | ||
}); | ||
|
||
it('shouldFileAutoDownload should return false if fileSize does not exceeds configured threshold and file auto download is enabled', () => { | ||
appConfig.config.viewer = { | ||
enableFileAutoDownload: true, | ||
fileAutoDownloadSizeThresholdInMB: 10 | ||
}; | ||
const shouldAutDownloadFlag = service.shouldFileAutoDownload(500000); | ||
expect(shouldAutDownloadFlag).toBe(false); | ||
}); | ||
|
||
it('shouldFileAutoDownload should return false if fileSize exceeds configured threshold but file auto download is disabled', () => { | ||
appConfig.config.viewer = { | ||
enableFileAutoDownload: false, | ||
fileAutoDownloadSizeThresholdInMB: 10 | ||
}; | ||
const shouldAutDownloadFlag = service.shouldFileAutoDownload(11000000); | ||
expect(shouldAutDownloadFlag).toBe(false); | ||
}); | ||
|
||
it('autoDownloadFile should open FileAutoDownload dialog when called', () => { | ||
const nodeEntity: any = { entry: { isFile: true } }; | ||
service.autoDownloadFile(nodeEntity); | ||
expect(mockDialogRef.open).toHaveBeenCalledWith(FileAutoDownloadComponent, { disableClose: true, data: nodeEntity }); | ||
}); | ||
}); |
Oops, something went wrong.