-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f50154f
commit b5722d5
Showing
4 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
...content/src/lib/components/search/search-save/list/saved-searches-list-ui.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,59 @@ | ||
/*! | ||
* Copyright © 2005-2024 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 { MatDialog, MatDialogModule } from '@angular/material/dialog'; | ||
import { SavedSearchesListUiService } from './saved-searches-list-ui.service'; | ||
import { SavedSearch } from '@alfresco/adf-content-services'; | ||
import { SavedSearchEditDialogComponent } from '../dialog/edit/saved-search-edit-dialog.component'; | ||
import { SavedSearchDeleteDialogComponent } from '../dialog/delete/saved-search-delete-dialog.component'; | ||
|
||
describe('NodeTemplateService', () => { | ||
let dialog: MatDialog; | ||
let savedSearchesListUiService: SavedSearchesListUiService; | ||
const mockedSearch: SavedSearch = { name: 'test', encodedUrl: 'test', order: 1 }; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
imports: [MatDialogModule] | ||
}); | ||
|
||
dialog = TestBed.inject(MatDialog); | ||
savedSearchesListUiService = TestBed.inject(SavedSearchesListUiService); | ||
}); | ||
|
||
it('should open edit save search dialog with proper params', () => { | ||
spyOn(dialog, 'open'); | ||
savedSearchesListUiService.openEditSavedSearch(mockedSearch); | ||
|
||
expect(dialog.open).toHaveBeenCalledWith(SavedSearchEditDialogComponent, { data: mockedSearch, width: '600px' }); | ||
}); | ||
|
||
it('should open delete save search dialog with proper params', () => { | ||
spyOn(dialog, 'open'); | ||
savedSearchesListUiService.confirmDeleteSavedSearch(mockedSearch); | ||
|
||
expect(dialog.open).toHaveBeenCalledWith(SavedSearchDeleteDialogComponent, { data: mockedSearch, minWidth: '500px' }); | ||
}); | ||
}); |
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