mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
143 lines
4.9 KiB
TypeScript
143 lines
4.9 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import moment from 'moment-es6';
|
|
|
|
import { TestBed, fakeAsync, tick } from '@angular/core/testing';
|
|
import { ComponentFixture } from '@angular/core/testing';
|
|
import { MatDialogRef } from '@angular/material';
|
|
import { AlfrescoApiService, setupTestBed } from '@alfresco/adf-core';
|
|
import { NodeLockDialogComponent } from './node-lock.dialog';
|
|
import { ContentTestingModule } from '../testing/content.testing.module';
|
|
|
|
describe('NodeLockDialogComponent', () => {
|
|
|
|
let fixture: ComponentFixture<NodeLockDialogComponent>;
|
|
let component: NodeLockDialogComponent;
|
|
let alfrescoApi: AlfrescoApiService;
|
|
let expiryDate;
|
|
const dialogRef = {
|
|
close: jasmine.createSpy('close')
|
|
};
|
|
|
|
setupTestBed({
|
|
imports: [ContentTestingModule],
|
|
providers: [
|
|
{ provide: MatDialogRef, useValue: dialogRef }
|
|
]
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(NodeLockDialogComponent);
|
|
component = fixture.componentInstance;
|
|
alfrescoApi = TestBed.get(AlfrescoApiService);
|
|
});
|
|
|
|
afterEach(() => {
|
|
fixture.destroy();
|
|
});
|
|
|
|
describe('Node lock dialog component', () => {
|
|
|
|
beforeEach(() => {
|
|
jasmine.clock().mockDate(new Date());
|
|
expiryDate = moment().add(1, 'minutes');
|
|
|
|
component.data = {
|
|
node: {
|
|
id: 'node-id',
|
|
name: 'node-name',
|
|
isLocked: true,
|
|
properties: {
|
|
['cm:lockType']: 'WRITE_LOCK',
|
|
['cm:expiryDate']: expiryDate
|
|
}
|
|
},
|
|
onError: () => {}
|
|
};
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should init dialog with form inputs', () => {
|
|
expect(component.nodeName).toBe('node-name');
|
|
expect(component.form.value.isLocked).toBe(true);
|
|
expect(component.form.value.allowOwner).toBe(true);
|
|
expect(component.form.value.isTimeLock).toBe(true);
|
|
expect(component.form.value.time.format()).toBe(expiryDate.format());
|
|
});
|
|
|
|
it('should update form inputs', () => {
|
|
let newTime = moment();
|
|
component.form.controls['isLocked'].setValue(false);
|
|
component.form.controls['allowOwner'].setValue(false);
|
|
component.form.controls['isTimeLock'].setValue(false);
|
|
component.form.controls['time'].setValue(newTime);
|
|
|
|
expect(component.form.value.isLocked).toBe(false);
|
|
expect(component.form.value.allowOwner).toBe(false);
|
|
expect(component.form.value.isTimeLock).toBe(false);
|
|
expect(component.form.value.time.format()).toBe(newTime.format());
|
|
});
|
|
|
|
it('should submit the form and lock the node', () => {
|
|
spyOn(alfrescoApi.nodesApi, 'lockNode').and.returnValue(Promise.resolve({}));
|
|
|
|
component.submit();
|
|
|
|
expect(alfrescoApi.nodesApi.lockNode).toHaveBeenCalledWith(
|
|
'node-id',
|
|
{
|
|
'timeToExpire': 60,
|
|
'type': 'ALLOW_OWNER_CHANGES',
|
|
'lifetime': 'PERSISTENT'
|
|
}
|
|
);
|
|
});
|
|
|
|
it('should submit the form and unlock the node', () => {
|
|
spyOn(alfrescoApi.nodesApi, 'unlockNode').and.returnValue(Promise.resolve({}));
|
|
|
|
component.form.controls['isLocked'].setValue(false);
|
|
component.submit();
|
|
|
|
expect(alfrescoApi.nodesApi.unlockNode).toHaveBeenCalledWith('node-id');
|
|
});
|
|
|
|
it('should call dialog to close with form data when submit is successfully', fakeAsync(() => {
|
|
const node = { entry: {} };
|
|
spyOn(alfrescoApi.nodesApi, 'lockNode').and.returnValue(Promise.resolve(node));
|
|
|
|
component.submit();
|
|
tick();
|
|
fixture.detectChanges();
|
|
|
|
expect(dialogRef.close).toHaveBeenCalledWith(node.entry);
|
|
}));
|
|
|
|
it('should call onError if submit fails', fakeAsync(() => {
|
|
spyOn(alfrescoApi.nodesApi, 'lockNode').and.returnValue(Promise.reject('error'));
|
|
spyOn(component.data, 'onError');
|
|
|
|
component.submit();
|
|
tick();
|
|
fixture.detectChanges();
|
|
|
|
expect(component.data.onError).toHaveBeenCalled();
|
|
}));
|
|
});
|
|
});
|