blob: f32bc9acd1dbce162406e4c5b08b178d86f855db [file] [log] [blame]
/**
* © OpenCORD
*
* Visit http://guide.xosproject.org/devguide/addview/ for more information
*
* Created by teone on 6/22/16.
*/
(function () {
'use strict';
describe('The Slices Encoder service', () => {
let service, toscaBase, sliceQueryPromise, SliceSpy, rootScope;
const toscaBaseDefault = {
topology_template: {
node_templates: {}
}
};
const slicesArray = [
{
name: 'Slice1',
description: 'Description1',
network: 'noauto'
},
{
name: 'Slice2',
description: 'Description2',
network: 'noauto'
}
];
const expected = {
topology_template: {
node_templates: {
Slice1: {
description: 'Description1',
type: 'tosca.nodes.Slice',
properties: {
network: 'noauto'
},
requirements: [
{management: {node: 'management', relationship: 'tosca.relationships.ConnectsToNetwork'}},
{test_service: {node: 'service#test', relationship: 'tosca.relationships.MemberOfService'}}
]
},
Slice2: {
description: 'Description2',
type: 'tosca.nodes.Slice',
properties: {
network: 'noauto'
},
requirements: [
{management: {node: 'management', relationship: 'tosca.relationships.ConnectsToNetwork'}},
{test_service: {node: 'service#test', relationship: 'tosca.relationships.MemberOfService'}}
]
}
}
}
};
beforeEach(module('xos.serviceGrid'));
beforeEach(module('templates'));
beforeEach(inject((SlicesEncoder, Slices, $q, $rootScope) => {
toscaBase = angular.copy(toscaBaseDefault);
service = SlicesEncoder;
rootScope = $rootScope;
sliceQueryPromise= $q.defer();
SliceSpy = Slices;
spyOn(SliceSpy, 'query').and.callFake(function(){
return {$promise: sliceQueryPromise.promise};
});
}));
describe('given a Slices array ', () => {
it('should return the correct JSON structure', (done) => {
service.buildTosca(slicesArray, toscaBase, 'test')
.then(res => {
expect(res).toEqual(expected);
done();
});
rootScope.$apply();
});
});
describe('given a service', () => {
it('should return the JSON structure for all related slices', (done) => {
service.getServiceSlices({id : 1, name: 'test'}, toscaBase)
.then(res => {
expect(res).toEqual(expected);
done();
});
sliceQueryPromise.resolve(slicesArray);
rootScope.$apply();
});
});
});
})();