Split sequence generation to classess
[appc.git] / appc-config / appc-flow-controller / provider / src / test / java / org / onap / appc / flow / controller / node / FlowControlNodeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.flow.controller.node;
26
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.when;
29
30 import com.fasterxml.jackson.databind.ObjectMapper;
31 import java.util.ArrayList;
32 import java.util.HashMap;
33 import java.util.List;
34 import java.util.Map;
35 import org.junit.Assert;
36 import org.junit.Before;
37 import org.junit.Test;
38 import org.onap.appc.flow.controller.dbervices.FlowControlDBService;
39 import org.onap.appc.flow.controller.interfaceData.DependencyInfo;
40 import org.onap.appc.flow.controller.interfaceData.Vnfcs;
41 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
42
43 public class FlowControlNodeTest {
44
45   private FlowControlDBService dbService;
46   private SvcLogicContext ctx;
47   private FlowControlNode flowControlNode;
48   private FlowSequenceGenerator flowSequenceGenerator;
49
50   @Before
51   public void setUp() {
52     ctx = mock(SvcLogicContext.class);
53     dbService = mock(FlowControlDBService.class);
54     flowSequenceGenerator = mock(FlowSequenceGenerator.class);
55
56     flowControlNode = new FlowControlNode(dbService, flowSequenceGenerator);
57   }
58 }