mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
75 lines
2.7 KiB
TypeScript
75 lines
2.7 KiB
TypeScript
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
|
|
import { async, ComponentFixture, TestBed, fakeAsync, tick } from '@angular/core/testing';
|
|
import { By } from '@angular/platform-browser';
|
|
import { MockTranslateLoader } from '../mocks/mock-translate-loader';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
|
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
|
|
import { SearchService } from '../../core/shared/search/search.service';
|
|
import { ViewModeSwitchComponent } from './view-mode-switch.component';
|
|
import { SearchServiceStub } from '../testing/search-service-stub';
|
|
import { ViewMode } from '../../core/shared/view-mode.model';
|
|
|
|
@Component({ template: '' })
|
|
class DummyComponent { }
|
|
|
|
describe('ViewModeSwitchComponent', () => {
|
|
let comp: ViewModeSwitchComponent;
|
|
let fixture: ComponentFixture<ViewModeSwitchComponent>;
|
|
const searchService = new SearchServiceStub();
|
|
let listButton: HTMLElement;
|
|
let gridButton: HTMLElement;
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
TranslateModule.forRoot({
|
|
loader: {
|
|
provide: TranslateLoader,
|
|
useClass: MockTranslateLoader
|
|
}
|
|
}),
|
|
RouterTestingModule.withRoutes([
|
|
{ path: 'search', component: DummyComponent, pathMatch: 'full' },
|
|
])
|
|
],
|
|
declarations: [
|
|
ViewModeSwitchComponent,
|
|
DummyComponent
|
|
],
|
|
providers: [
|
|
{ provide: SearchService, useValue: searchService },
|
|
],
|
|
}).overrideComponent(ViewModeSwitchComponent, {
|
|
set: { changeDetection: ChangeDetectionStrategy.Default }
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ViewModeSwitchComponent);
|
|
comp = fixture.componentInstance; // ViewModeSwitchComponent test instance
|
|
fixture.detectChanges();
|
|
const debugElements = fixture.debugElement.queryAll(By.css('a'));
|
|
listButton = debugElements[0].nativeElement;
|
|
gridButton = debugElements[1].nativeElement;
|
|
});
|
|
|
|
it('should set list button as active when on list mode', fakeAsync(() => {
|
|
searchService.setViewMode(ViewMode.ListElement);
|
|
tick();
|
|
fixture.detectChanges();
|
|
expect(comp.currentMode).toBe(ViewMode.ListElement);
|
|
expect(listButton.classList).toContain('active');
|
|
expect(gridButton.classList).not.toContain('active');
|
|
}));
|
|
|
|
it('should set grid button as active when on grid mode', fakeAsync(() => {
|
|
searchService.setViewMode(ViewMode.GridElement);
|
|
tick();
|
|
fixture.detectChanges();
|
|
expect(comp.currentMode).toBe(ViewMode.GridElement);
|
|
expect(listButton.classList).not.toContain('active');
|
|
expect(gridButton.classList).toContain('active');
|
|
}));
|
|
});
|