Fixing checkstyle and javadoc errors
[dcaegen2/analytics/tca.git] / dcae-analytics-model / src / test / java / org / openecomp / dcae / apod / analytics / model / util / json / mixin / policy / tca / TCAPolicyMixinTest.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. 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 package org.openecomp.dcae.apod.analytics.model.util.json.mixin.policy.tca;
22
23 import org.junit.Test;
24 import org.openecomp.dcae.apod.analytics.model.BaseAnalyticsModelUnitTest;
25 import org.openecomp.dcae.apod.analytics.model.domain.policy.tca.TCAPolicy;
26
27 import static org.hamcrest.CoreMatchers.is;
28 import static org.junit.Assert.assertThat;
29
30 /**
31  *
32  * @author Rajiv Singla . Creation Date: 11/5/2016.
33  */
34 public class TCAPolicyMixinTest extends BaseAnalyticsModelUnitTest {
35
36     private static final String TCA_POLICY_JSON_FILE_LOCATION = "data/json/policy/tca_policy.json";
37
38     @Test
39     public void testTCAPolicyJsonConversions() throws Exception {
40
41         final TCAPolicy tcaPolicy = assertJsonConversions(TCA_POLICY_JSON_FILE_LOCATION, TCAPolicy.class);
42
43         assertThat("TCA Policy Metrics Per Event Name must be 2",
44                 tcaPolicy.getMetricsPerEventName().size(), is(2));
45
46         assertThat("TCA Policy Thresholds for first event name must be 3",
47                 tcaPolicy.getMetricsPerEventName().get(0).getThresholds().size(), is(3));
48
49         testSerialization(tcaPolicy, getClass());
50     }
51 }