[ACS-4985] Added test cases for SearchFilterTabbedComponent

This commit is contained in:
swapnil.verma
2023-07-27 11:14:48 +05:30
committed by Jatin_Chugh
parent 839a7184a3
commit c54b4e1de0
2 changed files with 134 additions and 15 deletions
@@ -3,3 +3,12 @@
<ng-container *ngTemplateOutlet="tabContent.templateRef"></ng-container>
</mat-tab>
</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>
@@ -1,23 +1,133 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
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', () => {
let component: SearchFilterTabbedComponent;
let fixture: ComponentFixture<SearchFilterTabbedComponent>;
xdescribe('SearchFilterTabbedComponent', () => {
let component: SearchFilterTabbedComponent;
let fixture: ComponentFixture<SearchFilterTabbedComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ SearchFilterTabbedComponent ]
})
.compileComponents();
beforeEach(async () => {
TestBed.configureTestingModule({
declarations: [SearchFilterTabbedComponent],
imports: [
TranslateModule.forRoot(),
ContentTestingModule
]
});
fixture = TestBed.createComponent(SearchFilterTabbedComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
fixture = TestBed.createComponent(SearchFilterTabbedComponent);
component = fixture.componentInstance;
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', () => {
expect(component).toBeTruthy();
});
function getButtonByDataAutomationId(buttonDataAutomtaionId: string) {
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);
});
});
});