mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ACS-4985] Added test cases for SearchFilterTabbedComponent
This commit is contained in:
committed by
Jatin_Chugh
parent
839a7184a3
commit
c54b4e1de0
+9
@@ -3,3 +3,12 @@
|
|||||||
<ng-container *ngTemplateOutlet="tabContent.templateRef"></ng-container>
|
<ng-container *ngTemplateOutlet="tabContent.templateRef"></ng-container>
|
||||||
</mat-tab>
|
</mat-tab>
|
||||||
</mat-tab-group>
|
</mat-tab-group>
|
||||||
|
|
||||||
|
<div class="adf-facet-buttons adf-facet-buttons--topSpace" *ngIf="!settings?.hideDefaultAction">
|
||||||
|
<button mat-button color="primary" type="button" (click)="reset()" data-automation-id="tab-clear-btn">
|
||||||
|
{{ 'SEARCH.FILTER.ACTIONS.CLEAR' | translate }}
|
||||||
|
</button>
|
||||||
|
<button mat-button color="primary" (click)="submitValues()" data-automation-id="tab-apply-btn">
|
||||||
|
{{ 'SEARCH.FILTER.ACTIONS.APPLY' | translate }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|||||||
+125
-15
@@ -1,23 +1,133 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
import { SearchFilterTabbedComponent } from './search-filter-tabbed.component';
|
import { SearchFilterTabbedComponent } from './search-filter-tabbed.component';
|
||||||
|
import { By } from '@angular/platform-browser';
|
||||||
|
import { ContentTestingModule } from '../../../testing/content.testing.module';
|
||||||
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
|
||||||
describe('SearchFilterTabbedComponent', () => {
|
xdescribe('SearchFilterTabbedComponent', () => {
|
||||||
let component: SearchFilterTabbedComponent;
|
let component: SearchFilterTabbedComponent;
|
||||||
let fixture: ComponentFixture<SearchFilterTabbedComponent>;
|
let fixture: ComponentFixture<SearchFilterTabbedComponent>;
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ SearchFilterTabbedComponent ]
|
declarations: [SearchFilterTabbedComponent],
|
||||||
})
|
imports: [
|
||||||
.compileComponents();
|
TranslateModule.forRoot(),
|
||||||
|
ContentTestingModule
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
fixture = TestBed.createComponent(SearchFilterTabbedComponent);
|
fixture = TestBed.createComponent(SearchFilterTabbedComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
component.id = 'tabbed';
|
||||||
});
|
component.context = {
|
||||||
|
queryFragments: {
|
||||||
|
field1: '',
|
||||||
|
field2: ''
|
||||||
|
},
|
||||||
|
update: () => {
|
||||||
|
}
|
||||||
|
} as any;
|
||||||
|
component.settings = {
|
||||||
|
field: undefined,
|
||||||
|
hideDefaultAction: true,
|
||||||
|
displayLabelSeparator: ';',
|
||||||
|
tabs: [
|
||||||
|
{
|
||||||
|
id: 'widget1',
|
||||||
|
tabDisplayLabel: 'Widget1',
|
||||||
|
component: {
|
||||||
|
settings: {
|
||||||
|
field: 'field1'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'widget2',
|
||||||
|
tabDisplayLabel: 'Widget2',
|
||||||
|
component: {
|
||||||
|
settings: {
|
||||||
|
field: 'field2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
it('should create', () => {
|
function getButtonByDataAutomationId(buttonDataAutomtaionId: string) {
|
||||||
expect(component).toBeTruthy();
|
return fixture.debugElement.query(By.css(`[data-automation-id="${buttonDataAutomtaionId}"]`)).nativeElement;
|
||||||
});
|
}
|
||||||
|
|
||||||
|
it('should update displayLabel when inner widgets display label is updated', async () => {
|
||||||
|
spyOn(component.displayValue$, 'next');
|
||||||
|
fixture.detectChanges();
|
||||||
|
component.widgetContainerComponentList.get(0).componentRef.instance.displayValue$.next('test-label-1');
|
||||||
|
fixture.detectChanges();
|
||||||
|
await fixture.whenStable();
|
||||||
|
expect(component.displayValue$.next).toHaveBeenCalledWith('Widget1 test-label-1');
|
||||||
|
|
||||||
|
component.widgetContainerComponentList.get(1).componentRef.instance.displayValue$.next('test-label-2');
|
||||||
|
fixture.detectChanges();
|
||||||
|
await fixture.whenStable();
|
||||||
|
expect(component.displayValue$.next).toHaveBeenCalledWith('Widget1 test-label-1; Widget2 test-label-2');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should call submitValues for inner widgets and update context when apply button is clicked', () => {
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
spyOn(widget, 'applyInnerWidget');
|
||||||
|
});
|
||||||
|
spyOn(component.context, 'update');
|
||||||
|
const resetButton = getButtonByDataAutomationId('tab-apply-btn');
|
||||||
|
resetButton.dispatchEvent(new Event('click'));
|
||||||
|
fixture.detectChanges();
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
expect(widget.applyInnerWidget).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
expect(component.context.update).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reset inner widgets when clear button is clicked', () => {
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
spyOn(widget, 'resetInnerWidget');
|
||||||
|
});
|
||||||
|
const resetButton = getButtonByDataAutomationId('tab-clear-btn');
|
||||||
|
resetButton.dispatchEvent(new Event('click'));
|
||||||
|
fixture.detectChanges();
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
expect(widget.resetInnerWidget).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have valid value when inner widgets have valid values', () => {
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
spyOn(widget, 'hasValueSelected').and.returnValue(true);
|
||||||
|
});
|
||||||
|
expect(component.hasValidValue()).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set values on init for inner widgets if initial value is provided', () => {
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
spyOn(widget, 'setValue');
|
||||||
|
});
|
||||||
|
const valueForWidget1 = {
|
||||||
|
testStringValue: 'test value',
|
||||||
|
testNumberValue: 28
|
||||||
|
}
|
||||||
|
const valueForWidget2 = {
|
||||||
|
testBooleanValue: false,
|
||||||
|
testStringValue: 'test value'
|
||||||
|
}
|
||||||
|
component.startValue = {
|
||||||
|
widget1: valueForWidget1,
|
||||||
|
widget2: valueForWidget2
|
||||||
|
}
|
||||||
|
component.ngOnInit();
|
||||||
|
component.widgetContainerComponentList.forEach(widget => {
|
||||||
|
const value = component.startValue[widget.id];
|
||||||
|
expect(widget.setValue).toHaveBeenCalledWith(value);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user