/*! * @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 { TestBed, async } from '@angular/core/testing'; import { MaterialModule } from '../material.module'; import { CoreTestingModule } from '../testing/core.testing.module'; import { setupTestBed } from '../testing/setupTestBed'; import { CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core'; @Component({ selector: 'adf-custom-container', template: ` ` }) export class CustomContainerComponent { value: number; assignValue() { this.value = 1; } } @Component({ selector: 'adf-custom-empty-container', template: ` ` }) export class CustomEmptyContainerComponent { } describe('ButtonsMenuComponent', () => { describe('When Buttons are injected', () => { let fixture; let component: CustomContainerComponent; let element: HTMLElement; setupTestBed({ imports: [ CoreTestingModule, MaterialModule ], declarations: [ CustomContainerComponent ], schemas: [ CUSTOM_ELEMENTS_SCHEMA ] }); beforeEach(() => { fixture = TestBed.createComponent(CustomContainerComponent); element = fixture.debugElement.nativeElement; component = fixture.componentInstance; }); afterEach(() => { fixture.destroy(); TestBed.resetTestingModule(); }); it('should render buttons menu when at least one button is declared', async(() => { fixture.detectChanges(); fixture.whenStable().then(() => { const buttonsMenuElement = element.querySelector('#adf-buttons-menu'); expect(buttonsMenuElement).toBeDefined(); }); })); it('should trigger event when a specific button is clicked', async(() => { expect(component.value).toBeUndefined(); const button = element.querySelector('button'); button.click(); fixture.detectChanges(); fixture.whenStable().then(() => { expect(component.value).toBe(1); }); })); }); describe('When no buttons are injected', () => { let fixture; let element: HTMLElement; setupTestBed({ imports: [ CoreTestingModule, MaterialModule ], declarations: [ CustomEmptyContainerComponent ], schemas: [ CUSTOM_ELEMENTS_SCHEMA ] }); beforeEach(() => { fixture = TestBed.createComponent(CustomEmptyContainerComponent); element = fixture.nativeElement; }); afterEach(() => { fixture.destroy(); TestBed.resetTestingModule(); }); it('should hide buttons menu if buttons input is empty', async(() => { fixture.detectChanges(); fixture.whenStable().then(() => { const buttonsMenuElement = element.querySelector('#adf-buttons-menu'); expect(buttonsMenuElement).toBeNull(); }); })); }); });