mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* fix app-layout component * fix card-view component * fix cloud-layout service * code fixes * code fixes * even more fixes * even more fixes * lint fixes * test fixes * fix code * remove useless pipes * fix code owners * enable spellcheck for cloud components * update test * update test
163 lines
6.2 KiB
TypeScript
163 lines
6.2 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { By } from '@angular/platform-browser';
|
|
import { setupTestBed } from '@alfresco/adf-core';
|
|
import { fakeNodeWithCreatePermission } from '../mock';
|
|
import { DocumentListComponent, DocumentListService } from '../document-list';
|
|
import { DropdownBreadcrumbComponent } from './dropdown-breadcrumb.component';
|
|
import { ContentTestingModule } from '../testing/content.testing.module';
|
|
import { of } from 'rxjs';
|
|
|
|
describe('DropdownBreadcrumb', () => {
|
|
|
|
let component: DropdownBreadcrumbComponent;
|
|
let fixture: ComponentFixture<DropdownBreadcrumbComponent>;
|
|
let documentList: DocumentListComponent;
|
|
let documentListService: DocumentListService = jasmine.createSpyObj({'loadFolderByNodeId' : of(''), 'isCustomSourceService': false});
|
|
|
|
setupTestBed({
|
|
imports: [ContentTestingModule],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
providers : [{ provide: DocumentListService, useValue: documentListService }]
|
|
});
|
|
|
|
beforeEach(async(() => {
|
|
fixture = TestBed.createComponent(DropdownBreadcrumbComponent);
|
|
component = fixture.componentInstance;
|
|
documentList = TestBed.createComponent<DocumentListComponent>(DocumentListComponent).componentInstance;
|
|
documentListService = TestBed.get(DocumentListService);
|
|
}));
|
|
|
|
afterEach(async(() => {
|
|
fixture.destroy();
|
|
}));
|
|
|
|
function openSelect() {
|
|
const folderIcon = fixture.debugElement.nativeElement.querySelector('[data-automation-id="dropdown-breadcrumb-trigger"]');
|
|
folderIcon.click();
|
|
fixture.detectChanges();
|
|
}
|
|
|
|
function triggerComponentChange(fakeNodeData) {
|
|
component.folderNode = fakeNodeData;
|
|
component.ngOnChanges();
|
|
fixture.detectChanges();
|
|
}
|
|
|
|
function clickOnTheFirstOption() {
|
|
const option: any = document.querySelector('[id^="mat-option"]');
|
|
option.click();
|
|
}
|
|
|
|
it('should display only the current folder name if there is no previous folders', (done) => {
|
|
const fakeNodeWithCreatePermissionInstance = JSON.parse(JSON.stringify(fakeNodeWithCreatePermission));
|
|
fakeNodeWithCreatePermissionInstance.path.elements = [];
|
|
|
|
triggerComponentChange(fakeNodeWithCreatePermissionInstance);
|
|
|
|
fixture.whenStable().then(() => {
|
|
|
|
openSelect();
|
|
|
|
const currentFolder = fixture.debugElement.query(By.css('[data-automation-id="current-folder"]'));
|
|
const path = fixture.debugElement.query(By.css('[data-automation-id="dropdown-breadcrumb-path"]'));
|
|
expect(path).toBeNull();
|
|
expect(currentFolder).not.toBeNull();
|
|
expect(currentFolder.nativeElement.innerText.trim()).toEqual('Test');
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should display only the path in the selectBox', (done) => {
|
|
const fakeNodeWithCreatePermissionInstance = JSON.parse(JSON.stringify(fakeNodeWithCreatePermission));
|
|
fakeNodeWithCreatePermissionInstance.path.elements = [
|
|
{ id: '1', name: 'Stark Industries' },
|
|
{ id: '2', name: 'User Homes' },
|
|
{ id: '3', name: 'J.A.R.V.I.S' }
|
|
];
|
|
|
|
triggerComponentChange(fakeNodeWithCreatePermissionInstance);
|
|
|
|
fixture.whenStable().then(() => {
|
|
|
|
openSelect();
|
|
|
|
const path = fixture.debugElement.query(By.css('[data-automation-id="dropdown-breadcrumb-path"]'));
|
|
const options = fixture.debugElement.queryAll(By.css('[data-automation-class="dropdown-breadcrumb-path-option"]'));
|
|
expect(path).not.toBeNull();
|
|
expect(options.length).toBe(3);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should emit navigation event when clicking on an option', (done) => {
|
|
const fakeNodeWithCreatePermissionInstance = JSON.parse(JSON.stringify(fakeNodeWithCreatePermission));
|
|
fakeNodeWithCreatePermissionInstance.path.elements = [{ id: '1', name: 'Stark Industries' }];
|
|
|
|
triggerComponentChange(fakeNodeWithCreatePermissionInstance);
|
|
|
|
fixture.whenStable().then(() => {
|
|
|
|
openSelect();
|
|
|
|
fixture.whenStable().then(() => {
|
|
component.navigate.subscribe((val) => {
|
|
expect(val).toEqual({ id: '1', name: 'Stark Industries' });
|
|
done();
|
|
});
|
|
|
|
clickOnTheFirstOption();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should update document list when clicking on an option', (done) => {
|
|
component.target = documentList;
|
|
const fakeNodeWithCreatePermissionInstance = JSON.parse(JSON.stringify(fakeNodeWithCreatePermission));
|
|
fakeNodeWithCreatePermissionInstance.path.elements = [{ id: '1', name: 'Stark Industries' }];
|
|
triggerComponentChange(fakeNodeWithCreatePermissionInstance);
|
|
|
|
fixture.whenStable().then(() => {
|
|
openSelect();
|
|
fixture.whenStable().then(() => {
|
|
clickOnTheFirstOption();
|
|
|
|
expect(documentListService.loadFolderByNodeId).toHaveBeenCalledWith('1', documentList.DEFAULT_PAGINATION, undefined, undefined);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should open the selectBox when clicking on the folder icon', (done) => {
|
|
triggerComponentChange(JSON.parse(JSON.stringify(fakeNodeWithCreatePermission)));
|
|
spyOn(component.dropdown, 'open');
|
|
|
|
fixture.whenStable().then(() => {
|
|
openSelect();
|
|
|
|
fixture.whenStable().then(() => {
|
|
expect(component.dropdown.open).toHaveBeenCalled();
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|