mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
Refactor mocks into external file
This commit is contained in:
@@ -0,0 +1,63 @@
|
|||||||
|
/*!
|
||||||
|
* @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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export var fakeSearch = {
|
||||||
|
list: {
|
||||||
|
pagination: {
|
||||||
|
count: 1,
|
||||||
|
hasMoreItems: false,
|
||||||
|
totalItems: 1,
|
||||||
|
skipCount: 0,
|
||||||
|
maxItems: 100
|
||||||
|
},
|
||||||
|
entries: [
|
||||||
|
{
|
||||||
|
entry: {
|
||||||
|
id: '123',
|
||||||
|
name: 'MyDoc',
|
||||||
|
content: {
|
||||||
|
mimetype: 'text/plain'
|
||||||
|
},
|
||||||
|
createdByUser: {
|
||||||
|
displayName: 'John Doe'
|
||||||
|
},
|
||||||
|
modifiedByUser: {
|
||||||
|
displayName: 'John Doe'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export var fakeError = {
|
||||||
|
error: {
|
||||||
|
errorKey: 'Search failed',
|
||||||
|
statusCode: 400,
|
||||||
|
briefSummary: '08220082 search failed',
|
||||||
|
stackTrace: 'For security reasons the stack trace is no longer displayed, but the property is kept for previous versions.',
|
||||||
|
descriptionURL: 'https://api-explorer.alfresco.com'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export var fakeApi = {
|
||||||
|
core: {
|
||||||
|
searchApi: {
|
||||||
|
liveSearchNodes: (term, opts) => Promise.resolve(fakeSearch)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -18,6 +18,7 @@
|
|||||||
import { ReflectiveInjector } from '@angular/core';
|
import { ReflectiveInjector } from '@angular/core';
|
||||||
import { AlfrescoSearchService } from './alfresco-search.service';
|
import { AlfrescoSearchService } from './alfresco-search.service';
|
||||||
import { AlfrescoAuthenticationService, AlfrescoSettingsService, AlfrescoApiService } from 'ng2-alfresco-core';
|
import { AlfrescoAuthenticationService, AlfrescoSettingsService, AlfrescoApiService } from 'ng2-alfresco-core';
|
||||||
|
import { fakeApi, fakeSearch, fakeError } from '../assets/alfresco-search.service.mock';
|
||||||
|
|
||||||
declare let jasmine: any;
|
declare let jasmine: any;
|
||||||
|
|
||||||
@@ -27,53 +28,6 @@ describe('AlfrescoSearchService', () => {
|
|||||||
let authenticationService: AlfrescoAuthenticationService;
|
let authenticationService: AlfrescoAuthenticationService;
|
||||||
let injector: ReflectiveInjector;
|
let injector: ReflectiveInjector;
|
||||||
|
|
||||||
let fakeSearch = {
|
|
||||||
list: {
|
|
||||||
pagination: {
|
|
||||||
count: 1,
|
|
||||||
hasMoreItems: false,
|
|
||||||
totalItems: 1,
|
|
||||||
skipCount: 0,
|
|
||||||
maxItems: 100
|
|
||||||
},
|
|
||||||
entries: [
|
|
||||||
{
|
|
||||||
entry: {
|
|
||||||
id: '123',
|
|
||||||
name: 'MyDoc',
|
|
||||||
content: {
|
|
||||||
mimetype: 'text/plain'
|
|
||||||
},
|
|
||||||
createdByUser: {
|
|
||||||
displayName: 'John Doe'
|
|
||||||
},
|
|
||||||
modifiedByUser: {
|
|
||||||
displayName: 'John Doe'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let fakeError = {
|
|
||||||
error: {
|
|
||||||
errorKey: 'Search failed',
|
|
||||||
statusCode: 400,
|
|
||||||
briefSummary: '08220082 search failed',
|
|
||||||
stackTrace: 'For security reasons the stack trace is no longer displayed, but the property is kept for previous versions.',
|
|
||||||
descriptionURL: 'https://api-explorer.alfresco.com'
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let fakeApi = {
|
|
||||||
core: {
|
|
||||||
searchApi: {
|
|
||||||
liveSearchNodes: (term, opts) => Promise.resolve(fakeSearch)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
injector = ReflectiveInjector.resolveAndCreate([
|
injector = ReflectiveInjector.resolveAndCreate([
|
||||||
AlfrescoSearchService,
|
AlfrescoSearchService,
|
||||||
|
|||||||
Reference in New Issue
Block a user