mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
59 lines
2.0 KiB
TypeScript
59 lines
2.0 KiB
TypeScript
import { ItemEditBitstreamBundleComponent } from './item-edit-bitstream-bundle.component';
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { NO_ERRORS_SCHEMA, ViewContainerRef } from '@angular/core';
|
|
import { Item } from '../../../../core/shared/item.model';
|
|
import { Bundle } from '../../../../core/shared/bundle.model';
|
|
import { ResponsiveTableSizes } from '../../../../shared/responsive-table-sizes/responsive-table-sizes';
|
|
import { ResponsiveColumnSizes } from '../../../../shared/responsive-table-sizes/responsive-column-sizes';
|
|
|
|
describe('ItemEditBitstreamBundleComponent', () => {
|
|
let comp: ItemEditBitstreamBundleComponent;
|
|
let fixture: ComponentFixture<ItemEditBitstreamBundleComponent>;
|
|
let viewContainerRef: ViewContainerRef;
|
|
|
|
const columnSizes = new ResponsiveTableSizes([
|
|
new ResponsiveColumnSizes(2, 2, 3, 4, 4),
|
|
new ResponsiveColumnSizes(2, 3, 3, 3, 3),
|
|
new ResponsiveColumnSizes(2, 2, 2, 2, 2),
|
|
new ResponsiveColumnSizes(6, 5, 4, 3, 3)
|
|
]);
|
|
|
|
const item = Object.assign(new Item(), {
|
|
id: 'item-1',
|
|
uuid: 'item-1'
|
|
});
|
|
const bundle = Object.assign(new Bundle(), {
|
|
id: 'bundle-1',
|
|
uuid: 'bundle-1',
|
|
_links: {
|
|
self: { href: 'bundle-1-selflink' }
|
|
}
|
|
});
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [TranslateModule.forRoot()],
|
|
declarations: [ItemEditBitstreamBundleComponent],
|
|
schemas: [
|
|
NO_ERRORS_SCHEMA
|
|
]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ItemEditBitstreamBundleComponent);
|
|
comp = fixture.componentInstance;
|
|
comp.item = item;
|
|
comp.bundle = bundle;
|
|
comp.columnSizes = columnSizes;
|
|
viewContainerRef = (comp as any).viewContainerRef;
|
|
spyOn(viewContainerRef, 'createEmbeddedView');
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create an embedded view of the component', () => {
|
|
expect(viewContainerRef.createEmbeddedView).toHaveBeenCalled();
|
|
});
|
|
});
|