61a2e319607f7a1cdc8c0a5543b4f2e087e4fe21
[ccsdk/features.git] /
1 /*\r
2  * Copyright © 2017-2018 AT&T Intellectual Property.\r
3  * Modifications Copyright © 2018 IBM.\r
4  * \r
5  * Licensed under the Apache License, Version 2.0 (the "License");\r
6  * you may not use this file except in compliance with the License.\r
7  * You may obtain a copy of the License at\r
8  * \r
9  * http://www.apache.org/licenses/LICENSE-2.0\r
10  * \r
11  * Unless required by applicable law or agreed to in writing, software\r
12  * distributed under the License is distributed on an "AS IS" BASIS,\r
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14  * See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  */\r
17 \r
18 package org.onap.ccsdk.features.data.adaptor.service;\r
19 \r
20 import java.util.HashMap;\r
21 import java.util.Map;\r
22 import org.junit.Assert;\r
23 import org.junit.Before;\r
24 import org.junit.Test;\r
25 import org.junit.runner.RunWith;\r
26 import org.onap.ccsdk.features.data.adaptor.DataAdaptorConstants;\r
27 import org.onap.ccsdk.features.data.adaptor.dao.ConfigResourceDao;\r
28 import org.onap.ccsdk.features.data.adaptor.dao.NamedQueryExecutorDao;\r
29 import org.onap.ccsdk.features.data.adaptor.dao.QueryExecutorDao;\r
30 import org.onap.ccsdk.features.data.adaptor.dao.TransactionLogDao;\r
31 import org.onap.ccsdk.features.data.adaptor.service.ConfigResourceNode;\r
32 import org.onap.ccsdk.features.data.adaptor.service.ConfigResourceService;\r
33 import org.onap.ccsdk.features.data.adaptor.service.ConfigResourceServiceImpl;\r
34 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;\r
35 import org.onap.ccsdk.sli.core.sli.SvcLogicException;\r
36 import org.springframework.beans.factory.annotation.Autowired;\r
37 import org.springframework.test.context.ContextConfiguration;\r
38 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;\r
39 \r
40 @RunWith(SpringJUnit4ClassRunner.class)\r
41 @ContextConfiguration(locations = {"classpath:test-context-h2db.xml"})\r
42 public class ConfigResourceNodeTest {\r
43 \r
44     ConfigResourceNode configResourceNode;\r
45 \r
46     ConfigResourceService configResourceService;\r
47 \r
48     @Autowired\r
49     TransactionLogDao transactionLogDao;\r
50 \r
51     @Autowired\r
52     ConfigResourceDao configResourceDao;\r
53 \r
54     @Autowired\r
55     QueryExecutorDao queryExecutorDao;\r
56 \r
57     @Autowired\r
58     NamedQueryExecutorDao namedQueryExecutorDao;\r
59 \r
60     @Before\r
61     public void before() {\r
62         configResourceService = new ConfigResourceServiceImpl(transactionLogDao, configResourceDao, queryExecutorDao,\r
63                 namedQueryExecutorDao);\r
64         configResourceNode = new ConfigResourceNode(configResourceService);\r
65     }\r
66 \r
67     @Test\r
68     public void testSaveConfigTransactionLog() throws Exception {\r
69         Map<String, String> inParams = new HashMap<>();\r
70         inParams.put(DataAdaptorConstants.INPUT_PARAM_MESSAGE_TYPE, "messageType");\r
71         inParams.put(DataAdaptorConstants.INPUT_PARAM_MESSAGE, "message");\r
72         SvcLogicContext ctx = new SvcLogicContext();\r
73         ctx.setAttribute("request-id", "requestId12345");\r
74 \r
75         configResourceNode.saveConfigTransactionLog(inParams, ctx);\r
76 \r
77         Assert.assertTrue(!transactionLogDao.getTransactionsByRequestId("requestId12345").isEmpty());\r
78     }\r
79 \r
80     @Test(expected = SvcLogicException.class)\r
81     public void testSaveConfigTransactionLogException() throws Exception {\r
82         configResourceNode = new ConfigResourceNode(null);\r
83         configResourceNode.saveConfigTransactionLog(new HashMap<>(), new SvcLogicContext());\r
84     }\r
85 }\r