05df76ce4856b78df02535bf64b1695c23295ca2
[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.sli.core.sli.SvcLogicContext;\r
32 import org.onap.ccsdk.sli.core.sli.SvcLogicException;\r
33 import org.springframework.beans.factory.annotation.Autowired;\r
34 import org.springframework.test.context.ContextConfiguration;\r
35 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;\r
36 \r
37 @RunWith(SpringJUnit4ClassRunner.class)\r
38 @ContextConfiguration(locations = {"classpath:test-context-h2db.xml"})\r
39 public class ConfigResourceNodeTest {\r
40 \r
41     ConfigResourceNode configResourceNode;\r
42 \r
43     ConfigResourceService configResourceService;\r
44 \r
45     @Autowired\r
46     TransactionLogDao transactionLogDao;\r
47 \r
48     @Autowired\r
49     ConfigResourceDao configResourceDao;\r
50 \r
51     @Autowired\r
52     QueryExecutorDao queryExecutorDao;\r
53 \r
54     @Autowired\r
55     NamedQueryExecutorDao namedQueryExecutorDao;\r
56 \r
57     @Before\r
58     public void before() {\r
59         configResourceService = new ConfigResourceServiceImpl(transactionLogDao, configResourceDao, queryExecutorDao,\r
60                 namedQueryExecutorDao);\r
61         configResourceNode = new ConfigResourceNode(configResourceService);\r
62     }\r
63 \r
64     @Test\r
65     public void testSaveConfigTransactionLog() throws Exception {\r
66         Map<String, String> inParams = new HashMap<>();\r
67         inParams.put(DataAdaptorConstants.INPUT_PARAM_MESSAGE_TYPE, "messageType");\r
68         inParams.put(DataAdaptorConstants.INPUT_PARAM_MESSAGE, "message");\r
69         SvcLogicContext ctx = new SvcLogicContext();\r
70         ctx.setAttribute("request-id", "requestId12345");\r
71 \r
72         configResourceNode.saveConfigTransactionLog(inParams, ctx);\r
73 \r
74         Assert.assertTrue(!transactionLogDao.getTransactionsByRequestId("requestId12345").isEmpty());\r
75     }\r
76 \r
77     @Test(expected = SvcLogicException.class)\r
78     public void testSaveConfigTransactionLogException() throws Exception {\r
79         configResourceNode = new ConfigResourceNode(null);\r
80         configResourceNode.saveConfigTransactionLog(new HashMap<>(), new SvcLogicContext());\r
81     }\r
82 }\r