mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 04:53:06 +00:00
251 lines
7.6 KiB
TypeScript
251 lines
7.6 KiB
TypeScript
import { ChangeDetectorRef, Component, CUSTOM_ELEMENTS_SCHEMA, SimpleChange } from '@angular/core';
|
|
import { ComponentFixture, inject, TestBed, waitForAsync } from '@angular/core/testing';
|
|
import { By } from '@angular/platform-browser';
|
|
|
|
import { TestScheduler } from 'rxjs/testing';
|
|
import { of as observableOf } from 'rxjs';
|
|
import { cold, getTestScheduler, hot } from 'jasmine-marbles';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { NgbModal, NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
|
|
import { SubmissionServiceStub } from '../../../shared/testing/submission-service.stub';
|
|
import { mockSubmissionId } from '../../../shared/mocks/submission.mock';
|
|
import { SubmissionService } from '../../submission.service';
|
|
import { SubmissionRestServiceStub } from '../../../shared/testing/submission-rest-service.stub';
|
|
import { SubmissionFormFooterComponent } from './submission-form-footer.component';
|
|
import { SubmissionRestService } from '../../../core/submission/submission-rest.service';
|
|
import { createTestComponent } from '../../../shared/testing/utils.test';
|
|
|
|
describe('SubmissionFormFooterComponent Component', () => {
|
|
|
|
let comp: SubmissionFormFooterComponent;
|
|
let compAsAny: any;
|
|
let fixture: ComponentFixture<SubmissionFormFooterComponent>;
|
|
let submissionRestServiceStub: SubmissionRestServiceStub;
|
|
let scheduler: TestScheduler;
|
|
|
|
const submissionServiceStub: SubmissionServiceStub = new SubmissionServiceStub();
|
|
const submissionId = mockSubmissionId;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
NgbModule,
|
|
TranslateModule.forRoot()
|
|
],
|
|
declarations: [
|
|
SubmissionFormFooterComponent,
|
|
TestComponent
|
|
],
|
|
providers: [
|
|
{ provide: SubmissionService, useValue: submissionServiceStub },
|
|
{ provide: SubmissionRestService, useClass: SubmissionRestServiceStub },
|
|
ChangeDetectorRef,
|
|
NgbModal,
|
|
SubmissionFormFooterComponent
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
describe('', () => {
|
|
let testComp: TestComponent;
|
|
let testFixture: ComponentFixture<TestComponent>;
|
|
|
|
// synchronous beforeEach
|
|
beforeEach(() => {
|
|
submissionServiceStub.getSubmissionStatus.and.returnValue(observableOf(true));
|
|
const html = `
|
|
<ds-submission-form-footer [submissionId]="submissionId"></ds-submission-form-footer>`;
|
|
|
|
testFixture = createTestComponent(html, TestComponent) as ComponentFixture<TestComponent>;
|
|
testComp = testFixture.componentInstance;
|
|
testFixture.detectChanges();
|
|
});
|
|
|
|
afterEach(() => {
|
|
testFixture.destroy();
|
|
});
|
|
|
|
it('should create SubmissionFormFooterComponent', inject([SubmissionFormFooterComponent], (app: SubmissionFormFooterComponent) => {
|
|
|
|
expect(app).toBeDefined();
|
|
|
|
}));
|
|
});
|
|
|
|
describe('', () => {
|
|
beforeEach(() => {
|
|
scheduler = getTestScheduler();
|
|
fixture = TestBed.createComponent(SubmissionFormFooterComponent);
|
|
comp = fixture.componentInstance;
|
|
compAsAny = comp;
|
|
submissionRestServiceStub = TestBed.inject(SubmissionRestService as any);
|
|
comp.submissionId = submissionId;
|
|
|
|
});
|
|
|
|
afterEach(() => {
|
|
comp = null;
|
|
compAsAny = null;
|
|
fixture = null;
|
|
});
|
|
|
|
describe('ngOnChanges', () => {
|
|
beforeEach(() => {
|
|
submissionServiceStub.getSubmissionStatus.and.returnValue(hot('-a-b', {
|
|
a: false,
|
|
b: true
|
|
}));
|
|
|
|
submissionServiceStub.getSubmissionSaveProcessingStatus.and.returnValue(hot('-a-b', {
|
|
a: false,
|
|
b: true
|
|
}));
|
|
|
|
submissionServiceStub.getSubmissionDepositProcessingStatus.and.returnValue(hot('-a-b', {
|
|
a: false,
|
|
b: true
|
|
}));
|
|
});
|
|
|
|
it('should set submissionIsInvalid properly', () => {
|
|
|
|
const expected = cold('-c-d', {
|
|
c: true,
|
|
d: false
|
|
});
|
|
|
|
comp.ngOnChanges({
|
|
submissionId: new SimpleChange(null, submissionId, true)
|
|
});
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(compAsAny.submissionIsInvalid).toBeObservable(expected);
|
|
});
|
|
|
|
it('should set processingSaveStatus properly', () => {
|
|
|
|
const expected = cold('-c-d', {
|
|
c: false,
|
|
d: true
|
|
});
|
|
|
|
comp.ngOnChanges({
|
|
submissionId: new SimpleChange(null, submissionId, true)
|
|
});
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(comp.processingSaveStatus).toBeObservable(expected);
|
|
});
|
|
|
|
it('should set processingDepositStatus properly', () => {
|
|
|
|
const expected = cold('-c-d', {
|
|
c: false,
|
|
d: true
|
|
});
|
|
|
|
comp.ngOnChanges({
|
|
submissionId: new SimpleChange(null, submissionId, true)
|
|
});
|
|
|
|
fixture.detectChanges();
|
|
|
|
expect(comp.processingDepositStatus).toBeObservable(expected);
|
|
});
|
|
});
|
|
|
|
it('should call dispatchSave on save', () => {
|
|
|
|
comp.save(null);
|
|
fixture.detectChanges();
|
|
|
|
expect(submissionServiceStub.dispatchSave).toHaveBeenCalledWith(submissionId, true);
|
|
});
|
|
|
|
it('should call dispatchSaveForLater on save for later', () => {
|
|
|
|
comp.saveLater(null);
|
|
fixture.detectChanges();
|
|
|
|
expect(submissionServiceStub.dispatchSaveForLater).toHaveBeenCalledWith(submissionId);
|
|
});
|
|
|
|
it('should call dispatchDeposit on save', () => {
|
|
|
|
comp.deposit(null);
|
|
fixture.detectChanges();
|
|
|
|
expect(submissionServiceStub.dispatchDeposit).toHaveBeenCalledWith(submissionId);
|
|
});
|
|
|
|
it('should call dispatchDiscard on discard confirmation', (done) => {
|
|
comp.showDepositAndDiscard = observableOf(true);
|
|
fixture.detectChanges();
|
|
const modalBtn = fixture.debugElement.query(By.css('.btn-danger'));
|
|
|
|
modalBtn.nativeElement.click();
|
|
fixture.detectChanges();
|
|
|
|
const confirmBtn: any = ((document as any).querySelector('.btn-danger:nth-child(2)'));
|
|
confirmBtn.click();
|
|
|
|
fixture.detectChanges();
|
|
|
|
fixture.whenStable().then(() => {
|
|
expect(submissionServiceStub.dispatchDiscard).toHaveBeenCalledWith(submissionId);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should have deposit button disabled when submission is not valid', () => {
|
|
comp.showDepositAndDiscard = observableOf(true);
|
|
compAsAny.submissionIsInvalid = observableOf(true);
|
|
fixture.detectChanges();
|
|
const depositBtn: any = fixture.debugElement.query(By.css('.btn-success'));
|
|
|
|
expect(depositBtn.nativeElement.disabled).toBeTruthy();
|
|
});
|
|
|
|
it('should not have deposit button disabled when submission is valid', () => {
|
|
comp.showDepositAndDiscard = observableOf(true);
|
|
compAsAny.submissionIsInvalid = observableOf(false);
|
|
fixture.detectChanges();
|
|
const depositBtn: any = fixture.debugElement.query(By.css('.btn-success'));
|
|
|
|
expect(depositBtn.nativeElement.disabled).toBeFalsy();
|
|
});
|
|
|
|
it('should disable save button when all modifications had been saved', () => {
|
|
comp.hasUnsavedModification = observableOf(false);
|
|
fixture.detectChanges();
|
|
|
|
const saveBtn: any = fixture.debugElement.query(By.css('#save'));
|
|
expect(saveBtn.nativeElement.disabled).toBeTruthy();
|
|
});
|
|
|
|
it('should enable save button when there are not saved modifications', () => {
|
|
comp.hasUnsavedModification = observableOf(true);
|
|
fixture.detectChanges();
|
|
|
|
const saveBtn: any = fixture.debugElement.query(By.css('#save'));
|
|
expect(saveBtn.nativeElement.disabled).toBeFalsy();
|
|
});
|
|
|
|
});
|
|
});
|
|
|
|
// declare a test component
|
|
@Component({
|
|
selector: 'ds-test-cmp',
|
|
template: ``
|
|
})
|
|
class TestComponent {
|
|
|
|
submissionId = mockSubmissionId;
|
|
|
|
}
|