JUnit test for policy/engine PolicyEngineAPI
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / PolicyTypeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 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.onap.policy.test;
22
23 import static org.junit.Assert.assertEquals;
24
25 import org.junit.Test;
26 import org.onap.policy.api.PolicyType;
27
28 /**
29  * The class <code>PolicyTypeTest</code> contains tests for the class
30  * <code>{@link PolicyType}</code>.
31  *
32  * @generatedBy CodePro at 6/1/16 1:41 PM
33  * @version $Revision: 1.0 $
34  */
35 public class PolicyTypeTest {
36     /**
37      * Run the String toString() method test.
38      *
39      * @throws Exception
40      *
41      * @generatedBy CodePro at 6/1/16 1:41 PM
42      */
43     @Test
44     public void testToString_1() throws Exception {
45         final PolicyType fixture = PolicyType.JSON;
46
47         final String result = fixture.toString();
48
49         // add additional test code here
50         assertEquals("json", result);
51
52         assertEquals(PolicyType.JSON, PolicyType.create("json"));
53     }
54
55     @Test
56     public void testCreate_EnumName_PolicyTypeEnum() {
57         for (final PolicyType policyType : PolicyType.values()) {
58             final PolicyType actualPolicyType = PolicyType.create(policyType.name());
59             assertEquals(policyType, actualPolicyType);
60             assertEquals(policyType.toString(), actualPolicyType.toString());
61         }
62     }
63
64     @Test
65     public void testCreate_StringValue_PolicyTypeEnum() {
66         for (final PolicyType policyType : PolicyType.values()) {
67             final PolicyType actualPolicyType = PolicyType.create(policyType.toString());
68             assertEquals(policyType, actualPolicyType);
69         }
70     }
71
72     @Test(expected = IllegalArgumentException.class)
73     public void testException() {
74         PolicyType.create("foobar");
75     }
76
77     /**
78      * Launch the test.
79      *
80      * @param args
81      *            the command line arguments
82      *
83      * @generatedBy CodePro at 6/1/16 1:41 PM
84      */
85     public static void main(final String[] args) {
86         new org.junit.runner.JUnitCore().run(PolicyTypeTest.class);
87     }
88 }