315e656d7b74c5a7cd8dea68219692d885fb0807
[clamp.git] / src / test / java / org / onap / clamp / clds / model / DcaeEventTest.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.model;
24
25 import static org.junit.Assert.assertEquals;
26 import org.junit.Test;
27 import javax.ws.rs.BadRequestException;
28 import java.util.Arrays;
29
30 public class DcaeEventTest {
31
32     @Test
33     public void testGetCldsActionId() {
34         //given
35         DcaeEvent dcaeEvent = new DcaeEvent();
36         dcaeEvent.setEvent(DcaeEvent.EVENT_CREATED);
37         dcaeEvent.setResourceUUID("1");
38         dcaeEvent.setServiceUUID("2");
39
40         //when
41         String cldsAction = dcaeEvent.getCldsActionCd();
42         dcaeEvent.setInstances(Arrays.asList(new CldsModelInstance()));
43         //then
44         assertEquals(CldsEvent.ACTION_CREATE, cldsAction);
45
46         //when
47         dcaeEvent.setEvent(DcaeEvent.EVENT_DEPLOYMENT);
48         //then
49         assertEquals(CldsEvent.ACTION_DEPLOY, dcaeEvent.getCldsActionCd());
50
51         //when
52         dcaeEvent.setInstances(null);
53         //then
54         assertEquals(CldsEvent.ACTION_DEPLOY, dcaeEvent.getCldsActionCd());
55
56         //when
57         dcaeEvent.setEvent(DcaeEvent.EVENT_UNDEPLOYMENT);
58         //then
59         assertEquals(CldsEvent.ACTION_UNDEPLOY, dcaeEvent.getCldsActionCd());
60
61     }
62
63     @Test(expected = BadRequestException.class)
64     public void shouldReturnBadRequestException() {
65         //given
66         DcaeEvent dcaeEvent = new DcaeEvent();
67         dcaeEvent.setResourceUUID("1");
68         dcaeEvent.setServiceUUID("2");
69         //when
70         dcaeEvent.setEvent("BadEvent");
71         //then
72         dcaeEvent.getCldsActionCd();
73     }
74 }