Fix test cases failing incorrectly
[sdc.git] / catalog-be / src / test / resources / paths / path-context.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 SDC
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11         *
12      http://www.apache.org/licenses/LICENSE-2.0
13         *
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 Modifications copyright (c) 2018 Nokia
21 ================================================================================
22 -->
23 <beans xmlns:aop="http://www.springframework.org/schema/aop"
24     xmlns:context="http://www.springframework.org/schema/context"
25     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26     xmlns="http://www.springframework.org/schema/beans"
27     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
28         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
29         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
30
31     <aop:aspectj-autoproxy proxy-target-class="true"/>
32     <bean class="org.openecomp.sdc.be.dao.config.DAOSpringConfig"/>
33     <bean class="org.openecomp.sdc.be.components.path.beans.ForwardingPathToscaOperationFacade"
34         id="tosca-operation-facade"/>
35     <bean class="org.openecomp.sdc.be.components.path.beans.InMemoryJanusGraphClient"
36         id="janusgraph-client"/>
37     <bean class="org.openecomp.sdc.be.components.path.beans.ArtifactCassandraDaoMock"
38         id="artifact-cassandra-dao"/>
39     <bean class="org.openecomp.sdc.be.components.path.beans.AuditCassandraDaoMock"
40         id="audit-cassandra-dao"/>
41     <bean class="org.openecomp.sdc.be.components.path.beans.FeatureToggleDaoMock"
42         id="feature_toggle_dao"/>
43     <bean class="org.openecomp.sdc.be.components.path.beans.EnvironmentCassandraDaoMock"
44         id="operational-environment-dao"/>
45     <bean class="org.openecomp.sdc.be.components.path.beans.SdcSchemaFilesCassandraDaoMock"
46         id="sdc-schema-files-cassandra-dao"/>
47     <bean class="org.openecomp.sdc.be.components.path.beans.ToscaModelImportCassandraDaoMock"
48         id="tosca-model-import-cassandra-dao"/>
49     <bean class="org.openecomp.sdc.be.client.onboarding.impl.OnboardingClientImpl"
50         id="onboarding-client"/>
51     <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducer" id="dmaapProducer"/>
52     <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducerHealth" id="dmaapProducerHealth"/>
53     <bean class="org.openecomp.sdc.be.components.lifecycle.LifecycleBusinessLogic"
54         id="lifecycleBusinessLogic"/>
55     <bean class="org.openecomp.sdc.be.components.path.beans.DistributionEngineMock"
56         id="distributionEngine"/>
57     <bean class="org.openecomp.sdc.be.components.path.beans.ForwardingPathValidatorMock"
58         id="forwardingPathValidator"/>
59     <bean class="org.openecomp.sdc.be.components.attribute.AttributeDeclarationOrchestrator"
60         id="attributeDeclarationOrchestrator"/>
61     <bean
62         class="org.openecomp.sdc.be.components.attribute.ComponentInstanceOutputAttributeDeclarator"/>
63     <bean class="org.openecomp.sdc.be.components.attribute.ComponentInstanceAttributeDeclarator"/>
64     <context:annotation-config/>
65     <context:component-scan
66         base-package="
67         org.openecomp.sdc.be.dao.janusgraph,
68         org.openecomp.sdc.be.model.jsonjanusgraph,
69                 org.openecomp.sdc.be.model.operations.impl,
70                 org.openecomp.sdc.be.model.cache,
71                 org.openecomp.sdc.be.user,
72                 org.openecomp.sdc.be.components.impl,
73                 org.openecomp.sdc.be.components.merge,
74                 org.openecomp.sdc.be.datamodel.utils,
75         org.openecomp.sdc.be.components.distribution.engine,
76                 org.openecomp.sdc.be.components.property,
77                 org.openecomp.sdc.be.facade.operations,
78                 org.openecomp.sdc.be.components.validation,
79             org.openecomp.sdc.be.auditing.impl,
80                 org.openecomp.sdc.be.components.csar,
81                 org.openecomp.sdc.be.impl,
82         org.openecomp.sdc.be.tosca,
83         org.openecomp.sdc.be.dao.impl">
84     </context:component-scan>
85
86 </beans>