mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACA-2193] Upload new content version - unsubscribe upload event (#925)
* remove console log * unsubscribe upload event after new version * unit tests
This commit is contained in:
committed by
Denys Vuika
parent
88fddec15f
commit
1554ca83ae
172
src/app/store/effects/upload.effects.spec.ts
Normal file
172
src/app/store/effects/upload.effects.spec.ts
Normal file
@@ -0,0 +1,172 @@
|
||||
/*!
|
||||
* @license
|
||||
* Alfresco Example Content Application
|
||||
*
|
||||
* Copyright (C) 2005 - 2018 Alfresco Software Limited
|
||||
*
|
||||
* This file is part of the Alfresco Example Content Application.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { Store } from '@ngrx/store';
|
||||
import { TestBed } from '@angular/core/testing';
|
||||
import { EffectsModule } from '@ngrx/effects';
|
||||
import { UploadEffects } from './upload.effects';
|
||||
import { AppTestingModule } from '../../testing/app-testing.module';
|
||||
import { NgZone } from '@angular/core';
|
||||
import {
|
||||
UploadService,
|
||||
FileUploadCompleteEvent,
|
||||
FileModel
|
||||
} from '@alfresco/adf-core';
|
||||
import { UnlockWriteAction } from '../actions';
|
||||
|
||||
describe('UploadEffects', () => {
|
||||
let store: Store<any>;
|
||||
let uploadService: UploadService;
|
||||
let effects: UploadEffects;
|
||||
let zone: NgZone;
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [AppTestingModule, EffectsModule.forRoot([UploadEffects])]
|
||||
});
|
||||
|
||||
zone = TestBed.get(NgZone);
|
||||
spyOn(zone, 'run').and.callFake((fn: () => any) => {
|
||||
return fn();
|
||||
});
|
||||
|
||||
store = TestBed.get(Store);
|
||||
uploadService = TestBed.get(UploadService);
|
||||
effects = TestBed.get(UploadEffects);
|
||||
});
|
||||
|
||||
it('should work', () => {
|
||||
expect(store).toBeDefined();
|
||||
expect(uploadService).toBeDefined();
|
||||
expect(effects).toBeDefined();
|
||||
});
|
||||
|
||||
it('should not upload and unlock file if param not provided', () => {
|
||||
effects.uploadAndUnlock(null);
|
||||
expect(zone.run).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should upload the file before unlocking', () => {
|
||||
const file: any = {};
|
||||
|
||||
spyOn(uploadService, 'addToQueue').and.stub();
|
||||
spyOn(uploadService, 'uploadFilesInTheQueue').and.stub();
|
||||
|
||||
effects.uploadAndUnlock(file);
|
||||
|
||||
expect(uploadService.addToQueue).toHaveBeenCalled();
|
||||
expect(uploadService.uploadFilesInTheQueue).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should dispatch the unlock write action for a locked file', () => {
|
||||
const file: FileModel = new FileModel(
|
||||
<File>{ name: 'file1.png', size: 10 },
|
||||
null,
|
||||
'file1'
|
||||
);
|
||||
|
||||
file.data = {
|
||||
entry: {
|
||||
id: 'file1',
|
||||
properties: {
|
||||
'cm:lockType': 'WRITE_LOCK'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
spyOn(uploadService, 'addToQueue').and.stub();
|
||||
spyOn(uploadService, 'uploadFilesInTheQueue').and.stub();
|
||||
spyOn(store, 'dispatch').and.stub();
|
||||
|
||||
effects.uploadAndUnlock(file);
|
||||
uploadService.fileUploadComplete.next(
|
||||
new FileUploadCompleteEvent(file, 100, file.data)
|
||||
);
|
||||
|
||||
expect(store.dispatch).toHaveBeenCalledWith(
|
||||
new UnlockWriteAction(file.data)
|
||||
);
|
||||
});
|
||||
|
||||
it('should dispatch only one unlock action for a locked file', () => {
|
||||
const file: FileModel = new FileModel(
|
||||
<File>{ name: 'file1.png', size: 10 },
|
||||
null,
|
||||
'file1'
|
||||
);
|
||||
|
||||
file.data = {
|
||||
entry: {
|
||||
id: 'file1',
|
||||
properties: {
|
||||
'cm:lockType': 'WRITE_LOCK'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
spyOn(uploadService, 'addToQueue').and.stub();
|
||||
spyOn(uploadService, 'uploadFilesInTheQueue').and.stub();
|
||||
spyOn(store, 'dispatch').and.stub();
|
||||
|
||||
effects.uploadAndUnlock(file);
|
||||
|
||||
const completeEvent = new FileUploadCompleteEvent(file, 100, file.data);
|
||||
uploadService.fileUploadComplete.next(completeEvent);
|
||||
uploadService.fileUploadComplete.next(completeEvent);
|
||||
uploadService.fileUploadComplete.next(completeEvent);
|
||||
|
||||
expect(store.dispatch).toHaveBeenCalledWith(
|
||||
new UnlockWriteAction(file.data)
|
||||
);
|
||||
|
||||
expect(store.dispatch).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it('should dispatch no actions if file is not locked', () => {
|
||||
const file: FileModel = new FileModel(
|
||||
<File>{ name: 'file1.png', size: 10 },
|
||||
null,
|
||||
'file1'
|
||||
);
|
||||
|
||||
file.data = {
|
||||
entry: {
|
||||
id: 'file1',
|
||||
properties: {}
|
||||
}
|
||||
};
|
||||
|
||||
spyOn(uploadService, 'addToQueue').and.stub();
|
||||
spyOn(uploadService, 'uploadFilesInTheQueue').and.stub();
|
||||
spyOn(store, 'dispatch').and.stub();
|
||||
|
||||
effects.uploadAndUnlock(file);
|
||||
uploadService.fileUploadComplete.next(
|
||||
new FileUploadCompleteEvent(file, 100, file.data)
|
||||
);
|
||||
|
||||
expect(store.dispatch).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user