mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
79 lines
3.0 KiB
TypeScript
79 lines
3.0 KiB
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
import { ExpandableAdminSidebarSectionComponent } from './expandable-admin-sidebar-section.component';
|
|
import { MenuService } from '../../../shared/menu/menu.service';
|
|
import { MenuServiceStub } from '../../../shared/testing/menu-service.stub';
|
|
import { CSSVariableService } from '../../../shared/sass-helper/css-variable.service';
|
|
import { CSSVariableServiceStub } from '../../../shared/testing/css-variable-service.stub';
|
|
import { of as observableOf } from 'rxjs';
|
|
import { Component } from '@angular/core';
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { By } from '@angular/platform-browser';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { Router } from '@angular/router';
|
|
import { RouterStub } from '../../../shared/testing/router.stub';
|
|
|
|
describe('ExpandableAdminSidebarSectionComponent', () => {
|
|
let component: ExpandableAdminSidebarSectionComponent;
|
|
let fixture: ComponentFixture<ExpandableAdminSidebarSectionComponent>;
|
|
const menuService = new MenuServiceStub();
|
|
const iconString = 'test';
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [NoopAnimationsModule, TranslateModule.forRoot()],
|
|
declarations: [ExpandableAdminSidebarSectionComponent, TestComponent],
|
|
providers: [
|
|
{ provide: 'sectionDataProvider', useValue: { icon: iconString } },
|
|
{ provide: MenuService, useValue: menuService },
|
|
{ provide: CSSVariableService, useClass: CSSVariableServiceStub },
|
|
{ provide: Router, useValue: new RouterStub() },
|
|
]
|
|
}).overrideComponent(ExpandableAdminSidebarSectionComponent, {
|
|
set: {
|
|
entryComponents: [TestComponent]
|
|
}
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
spyOn(menuService, 'getSubSectionsByParentID').and.returnValue(observableOf([]));
|
|
fixture = TestBed.createComponent(ExpandableAdminSidebarSectionComponent);
|
|
component = fixture.componentInstance;
|
|
spyOn(component as any, 'getMenuItemComponent').and.returnValue(TestComponent);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
|
|
it('should set the right icon', () => {
|
|
const icon = fixture.debugElement.query(By.css('.shortcut-icon > i.fas'));
|
|
expect(icon.nativeElement.getAttribute('class')).toContain('fa-' + iconString);
|
|
});
|
|
|
|
describe('when the header text is clicked', () => {
|
|
beforeEach(() => {
|
|
spyOn(menuService, 'toggleActiveSection');
|
|
const sidebarToggler = fixture.debugElement.query(By.css('.sidebar-section > div.nav-item'));
|
|
sidebarToggler.triggerEventHandler('click', {
|
|
preventDefault: () => {/**/
|
|
}
|
|
});
|
|
});
|
|
|
|
it('should call toggleActiveSection on the menuService', () => {
|
|
expect(menuService.toggleActiveSection).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|
|
|
|
// declare a test component
|
|
@Component({
|
|
selector: 'ds-test-cmp',
|
|
template: ``
|
|
})
|
|
class TestComponent {
|
|
}
|