mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
* Small refactoring I. * Small refactoring II. * On the way of implementing the soultion * Refactoring aspect to groups and supporting different type of configs * Fixed linter errors * Fix debug project runner * Fix linting errors * Fix and align tests * Config factory tests * Layout oriented config parser * Adding layout oriented config to the config factory * Update config schema * Layout oriented config * Aspect oriented and indifferent configs alignment to the new propertyGroups structure * Remove dead codes * Fixinfinite loading error and custom type properties * Add documentation * Fix tests
97 lines
3.3 KiB
TypeScript
97 lines
3.3 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 { async, TestBed } from '@angular/core/testing';
|
|
import { PropertyDescriptorsService } from './property-descriptors.service';
|
|
import { AlfrescoApiService } from '@alfresco/adf-core';
|
|
import { Observable } from 'rxjs/Observable';
|
|
import { ClassesApi } from 'alfresco-js-api';
|
|
import { PropertyGroup } from '../interfaces/content-metadata.interfaces';
|
|
|
|
describe('PropertyDescriptorLoaderService', () => {
|
|
|
|
let service: PropertyDescriptorsService,
|
|
classesApi: ClassesApi;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [
|
|
PropertyDescriptorsService,
|
|
AlfrescoApiService
|
|
]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
service = TestBed.get(PropertyDescriptorsService);
|
|
const alfrescoApiService = TestBed.get(AlfrescoApiService);
|
|
classesApi = alfrescoApiService.classesApi;
|
|
});
|
|
|
|
afterEach(() => {
|
|
TestBed.resetTestingModule();
|
|
});
|
|
|
|
it('should load the groups passed by paramter', () => {
|
|
spyOn(classesApi, 'getClass');
|
|
|
|
service.load(['exif:exif', 'cm:content', 'custom:custom'])
|
|
.subscribe(() => {});
|
|
|
|
expect(classesApi.getClass).toHaveBeenCalledTimes(3);
|
|
expect(classesApi.getClass).toHaveBeenCalledWith('exif_exif');
|
|
expect(classesApi.getClass).toHaveBeenCalledWith('cm_content');
|
|
expect(classesApi.getClass).toHaveBeenCalledWith('custom_custom');
|
|
});
|
|
|
|
it('should merge the forked values', (done) => {
|
|
|
|
const exifResponse: PropertyGroup = {
|
|
name: 'exif:exif',
|
|
title: '',
|
|
properties: {
|
|
'exif:1': { title: 'exif:1:id', name: 'exif:1', dataType: '', mandatory: false, multiValued: false },
|
|
'exif:2': { title: 'exif:2:id', name: 'exif:2', dataType: '', mandatory: false, multiValued: false }
|
|
}
|
|
};
|
|
|
|
const contentResponse: PropertyGroup = {
|
|
name: 'cm:content',
|
|
title: '',
|
|
properties: {
|
|
'cm:content': { title: 'cm:content:id', name: 'cm:content', dataType: '', mandatory: false, multiValued: false }
|
|
}
|
|
};
|
|
|
|
const apiResponses = [ exifResponse, contentResponse ];
|
|
let counter = 0;
|
|
|
|
spyOn(classesApi, 'getClass').and.callFake(() => {
|
|
return Observable.of(apiResponses[counter++]);
|
|
});
|
|
|
|
service.load(['exif:exif', 'cm:content'])
|
|
.subscribe({
|
|
next: (data) => {
|
|
expect(data['exif:exif']).toBe(exifResponse);
|
|
expect(data['cm:content']).toBe(contentResponse);
|
|
},
|
|
complete: done
|
|
});
|
|
});
|
|
});
|