mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
160 lines
5.2 KiB
TypeScript
160 lines
5.2 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 { ComponentFixture, TestBed, async } from '@angular/core/testing';
|
|
import { UploadButtonComponent } from './upload-button.component';
|
|
import { DebugElement } from '@angular/core';
|
|
import {
|
|
AlfrescoAuthenticationService,
|
|
AlfrescoSettingsService,
|
|
AlfrescoApiService,
|
|
CoreModule,
|
|
AlfrescoTranslationService
|
|
} from 'ng2-alfresco-core';
|
|
import { TranslationMock } from '../assets/translation.service.mock';
|
|
import { UploadService } from '../services/upload.service';
|
|
|
|
describe('Test ng2-alfresco-upload UploadButton', () => {
|
|
|
|
let file = {name: 'fake-name-1', size: 10, webkitRelativePath: 'fake-folder1/fake-name-1.json'};
|
|
let fakeEvent = {
|
|
currentTarget: {
|
|
files: [file]
|
|
},
|
|
target: {value: 'fake-name-1'}
|
|
};
|
|
|
|
let fakeResolveRest = {
|
|
entry: {
|
|
isFile: false,
|
|
isFolder: true,
|
|
name: 'fake-folder1'
|
|
}
|
|
};
|
|
let fakeResolvePromise = new Promise(function (resolve, reject) {
|
|
resolve(fakeResolveRest);
|
|
});
|
|
|
|
let fakeRejectRest = {
|
|
response: {
|
|
body: {
|
|
error: {
|
|
statusCode: 409
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
let fakeRejectPromise = new Promise(function (resolve, reject) {
|
|
reject(fakeRejectRest);
|
|
});
|
|
|
|
let component: any;
|
|
let fixture: ComponentFixture<UploadButtonComponent>;
|
|
let debug: DebugElement;
|
|
let element: HTMLElement;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [
|
|
CoreModule
|
|
],
|
|
declarations: [UploadButtonComponent],
|
|
providers: [
|
|
AlfrescoSettingsService,
|
|
AlfrescoAuthenticationService,
|
|
AlfrescoApiService,
|
|
UploadService,
|
|
{ provide: AlfrescoTranslationService, useClass: TranslationMock }
|
|
]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
window['componentHandler'] = null;
|
|
|
|
fixture = TestBed.createComponent(UploadButtonComponent);
|
|
|
|
debug = fixture.debugElement;
|
|
element = fixture.nativeElement;
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should render upload-single-file button as default', () => {
|
|
component.multipleFiles = false;
|
|
let compiled = fixture.debugElement.nativeElement;
|
|
fixture.detectChanges();
|
|
expect(compiled.querySelector('#upload-single-file')).toBeDefined();
|
|
});
|
|
|
|
it('should render upload-multiple-file button if multipleFiles is true', () => {
|
|
component.multipleFiles = true;
|
|
let compiled = fixture.debugElement.nativeElement;
|
|
fixture.detectChanges();
|
|
expect(compiled.querySelector('#upload-multiple-files')).toBeDefined();
|
|
});
|
|
|
|
it('should render an uploadFolder button if uploadFolder is true', () => {
|
|
component.uploadFolder = true;
|
|
let compiled = fixture.debugElement.nativeElement;
|
|
fixture.detectChanges();
|
|
expect(compiled.querySelector('#uploadFolder')).toBeDefined();
|
|
});
|
|
|
|
it('should call uploadFile with the default folder', () => {
|
|
component.currentFolderPath = '/root-fake-/sites-fake/folder-fake';
|
|
component.onSuccess = null;
|
|
component._uploaderService.uploadFilesInTheQueue = jasmine.createSpy('uploadFilesInTheQueue');
|
|
|
|
fixture.detectChanges();
|
|
|
|
component.onFilesAdded(fakeEvent);
|
|
expect(component._uploaderService.uploadFilesInTheQueue).toHaveBeenCalledWith('/root-fake-/sites-fake/folder-fake', null);
|
|
});
|
|
|
|
it('should create a folder and emit an File uploaded event', (done) => {
|
|
component.currentFolderPath = '/fake-root-path';
|
|
fixture.detectChanges();
|
|
|
|
spyOn(component._uploaderService, 'callApiCreateFolder').and.returnValue(fakeResolvePromise);
|
|
|
|
component.onSuccess.subscribe(e => {
|
|
expect(e.value).toEqual('File uploaded');
|
|
done();
|
|
});
|
|
|
|
spyOn(component, 'uploadFiles').and.callFake(() => {
|
|
component.onSuccess.emit({
|
|
value: 'File uploaded'
|
|
}
|
|
);
|
|
});
|
|
component.onDirectoryAdded(fakeEvent);
|
|
});
|
|
|
|
it('should emit an onError event when the folder already exist', (done) => {
|
|
spyOn(component._uploaderService, 'callApiCreateFolder').and.returnValue(fakeRejectPromise);
|
|
component.onError.subscribe(e => {
|
|
expect(e.value).toEqual('FILE_UPLOAD.MESSAGES.FOLDER_ALREADY_EXIST');
|
|
done();
|
|
});
|
|
|
|
component.onDirectoryAdded(fakeEvent);
|
|
});
|
|
});
|