mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
52 lines
2.0 KiB
TypeScript
52 lines
2.0 KiB
TypeScript
import {
|
|
TestBed,
|
|
waitForAsync,
|
|
} from '@angular/core/testing';
|
|
import { By } from '@angular/platform-browser';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { ItemOperationComponent } from './item-operation.component';
|
|
import { ItemOperation } from './itemOperation.model';
|
|
import {DisabledDirective} from '../../../shared/disabled-directive';
|
|
|
|
describe('ItemOperationComponent', () => {
|
|
let itemOperation: ItemOperation;
|
|
|
|
let fixture;
|
|
let comp;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot(), RouterTestingModule.withRoutes([]), ItemOperationComponent, DisabledDirective],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
itemOperation = new ItemOperation('key1', 'url1');
|
|
|
|
fixture = TestBed.createComponent(ItemOperationComponent);
|
|
comp = fixture.componentInstance;
|
|
comp.operation = itemOperation;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should render operation row', () => {
|
|
const span = fixture.debugElement.query(By.css('.action-label span')).nativeElement;
|
|
expect(span.textContent).toContain('item.edit.tabs.status.buttons.key1.label');
|
|
const button = fixture.debugElement.query(By.css('button')).nativeElement;
|
|
expect(button.textContent).toContain('item.edit.tabs.status.buttons.key1.button');
|
|
});
|
|
it('should render disabled operation row', () => {
|
|
itemOperation.setDisabled(true);
|
|
fixture.detectChanges();
|
|
|
|
const span = fixture.debugElement.query(By.css('.action-label span')).nativeElement;
|
|
expect(span.textContent).toContain('item.edit.tabs.status.buttons.key1.label');
|
|
const button = fixture.debugElement.query(By.css('button')).nativeElement;
|
|
expect(button.getAttribute('aria-disabled')).toBe('true');
|
|
expect(button.classList.contains('disabled')).toBeTrue();
|
|
expect(button.textContent).toContain('item.edit.tabs.status.buttons.key1.button');
|
|
});
|
|
});
|