06b94225d78ed6bb0f9160a9ec6f73473c99b922
[clamp.git] / src / test / java / org / onap / clamp / clds / client / ModelDeleteDelegateTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END============================================
19  * ===================================================================
20  *
21  */
22
23 package org.onap.clamp.clds.client;
24
25 import static org.mockito.Mockito.eq;
26 import static org.mockito.Mockito.verify;
27 import static org.mockito.Mockito.when;
28
29 import org.apache.camel.Exchange;
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.mockito.InjectMocks;
33 import org.mockito.Mock;
34 import org.mockito.runners.MockitoJUnitRunner;
35 import org.onap.clamp.clds.dao.CldsDao;
36
37 @RunWith(MockitoJUnitRunner.class)
38 public class ModelDeleteDelegateTest {
39
40     private static final String NAME_KEY = "modelName";
41     private static final String NAME_VALUE = "model.name";
42
43     @Mock
44     private Exchange exchange;
45
46     @Mock
47     private CldsDao cldsDao;
48
49     @InjectMocks
50     private ModelDeleteDelegate modelDeleteDelegate;
51
52     @Test
53     public void shouldExecuteSuccessfully() {
54         // given
55         when(exchange.getProperty(eq(NAME_KEY))).thenReturn(NAME_VALUE);
56
57         // when
58         modelDeleteDelegate.execute(exchange);
59
60         // then
61         verify(cldsDao).deleteModel(eq(NAME_VALUE));
62     }
63 }