5344ca55ffba929f756b91fe4b625f0642ff0e99
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-common / src / test / java / org / openecomp / dcae / apod / analytics / cdap / common / utils / ValidationUtilsTest.java
1 /*\r
2  * ===============================LICENSE_START======================================\r
3  *  dcae-analytics\r
4  * ================================================================================\r
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  *  Licensed under the Apache License, Version 2.0 (the "License");\r
8  *  you may not use this file except in compliance with the License.\r
9  *   You may obtain a copy of the License at\r
10  *\r
11  *          http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  *  Unless required by applicable law or agreed to in writing, software\r
14  *  distributed under the License is distributed on an "AS IS" BASIS,\r
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  *  See the License for the specific language governing permissions and\r
17  *  limitations under the License.\r
18  *  ============================LICENSE_END===========================================\r
19  */\r
20 \r
21 package org.openecomp.dcae.apod.analytics.cdap.common.utils;\r
22 \r
23 import org.junit.Test;\r
24 import org.openecomp.dcae.apod.analytics.cdap.common.BaseAnalyticsCDAPCommonUnitTest;\r
25 import org.openecomp.dcae.apod.analytics.cdap.common.exception.CDAPSettingsException;\r
26 \r
27 import static org.junit.Assert.assertFalse;\r
28 import static org.junit.Assert.assertTrue;\r
29 \r
30 /**\r
31  * @author Rajiv Singla . Creation Date: 12/12/2016.\r
32  */\r
33 public class ValidationUtilsTest extends BaseAnalyticsCDAPCommonUnitTest {\r
34 \r
35     @Test\r
36     public void testIsEmptyWhenStringIsNull() throws Exception {\r
37         assertTrue(ValidationUtils.isEmpty(null));\r
38     }\r
39 \r
40     @Test\r
41     public void testIsEmptyWhenStringIsEmpty() throws Exception {\r
42         String emptyString = "";\r
43         assertTrue(ValidationUtils.isEmpty(emptyString));\r
44     }\r
45 \r
46     @Test\r
47     public void testIsEmptyWhenStringIsEmptyWithBlanks() throws Exception {\r
48         String blankString = "   ";\r
49         assertTrue(ValidationUtils.isEmpty(blankString));\r
50     }\r
51 \r
52 \r
53     @Test\r
54     public void testIsNotPresent() throws Exception {\r
55         assertFalse(ValidationUtils.isPresent(null));\r
56         String emptyString = "";\r
57         assertFalse(ValidationUtils.isPresent(emptyString));\r
58         String blankString = "   ";\r
59         assertFalse(ValidationUtils.isPresent(blankString));\r
60         String validString = "SomeValue";\r
61         assertTrue(ValidationUtils.isPresent(validString));\r
62     }\r
63 \r
64     @Test\r
65     public void testValidateSettingsWhenValidationPasses() throws Exception {\r
66         CDAPTestAppSettings cdapTestAppSettings = new CDAPTestAppSettings();\r
67         cdapTestAppSettings.setSettingsField("testValue");\r
68         ValidationUtils.validateSettings(cdapTestAppSettings, new CDAPTestAppSettingsValidator());\r
69     }\r
70 \r
71     @Test(expected = CDAPSettingsException.class)\r
72     public void testValidateSettingsWhenValidationFails() throws Exception {\r
73 \r
74         CDAPTestAppSettings cdapTestAppSettings = new CDAPTestAppSettings();\r
75         cdapTestAppSettings.setSettingsField("");\r
76         ValidationUtils.validateSettings(cdapTestAppSettings, new CDAPTestAppSettingsValidator());\r
77     }\r
78 \r
79 }\r
80 \r