b4b905c52a6ca7ebac1e7ab5c1f257d6df33aeda
[policy/distribution.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Intel. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.distribution.reception.handling.sdc;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertTrue;
26 import static org.junit.Assert.fail;
27
28 import com.google.gson.Gson;
29 import com.google.gson.GsonBuilder;
30
31 import java.io.FileReader;
32 import java.io.IOException;
33 import java.util.Arrays;
34
35 import org.junit.Rule;
36 import org.junit.Test;
37 import org.junit.rules.TemporaryFolder;
38
39 import org.onap.policy.common.parameters.GroupValidationResult;
40
41 /**
42  * Class to perform unit test of {@link FileSystemReceptionHandlerConfigurationParameterGroup}.
43  *
44  */
45 public class TestFileSystemReceptionHandlerConfigurationParameterGroup {
46     @Rule
47     public TemporaryFolder tempFolder = new TemporaryFolder();
48
49     @Test
50     public void testFileSystemConfiguration() throws IOException {
51         FileSystemReceptionHandlerConfigurationParameterGroup configParameters = null;
52         try {
53             final Gson gson = new GsonBuilder().create();
54             configParameters = gson.fromJson(new FileReader("src/test/resources/handling-filesystem.json"),
55                     FileSystemReceptionHandlerConfigurationParameterGroup.class);
56         } catch (final Exception e) {
57             fail("test should not thrown an exception here: " + e.getMessage());
58         }
59         final GroupValidationResult validationResult = configParameters.validate();
60         assertTrue(validationResult.isValid());
61         assertEquals("/tmp", configParameters.getWatchPath());
62     }
63
64     @Test
65     public void testInvalidFileSystemConfiguration() throws IOException {
66         FileSystemReceptionHandlerConfigurationParameterGroup configParameters = null;
67         try {
68             final Gson gson = new GsonBuilder().create();
69             configParameters = gson.fromJson(new FileReader("src/test/resources/handling-sdcInvalid.json"),
70                     FileSystemReceptionHandlerConfigurationParameterGroup.class);
71         } catch (final Exception e) {
72             fail("test should not thrown an exception here: " + e.getMessage());
73         }
74         final GroupValidationResult validationResult = configParameters.validate();
75         assertFalse(validationResult.isValid());
76     }
77
78     @Test
79     public void testFileSystemReceptionHandlerConfigurationParameterBuilder() {
80
81         final FileSystemReceptionHandlerConfigurationParameterBuilder builder =
82                 new FileSystemReceptionHandlerConfigurationParameterBuilder().setWatchPath("/foo/bar");
83         final FileSystemReceptionHandlerConfigurationParameterGroup configParameters =
84                 new FileSystemReceptionHandlerConfigurationParameterGroup(builder);
85
86         assertEquals("/foo/bar", configParameters.getWatchPath());
87     }
88
89     @Test
90     public void testFileSystemReceptionHandlerConfigurationParameterBuilderWithInvalidPath() throws IOException {
91         final String invalidPath = tempFolder.newFile("foobar").getAbsolutePath();
92
93         final FileSystemReceptionHandlerConfigurationParameterBuilder builder =
94                 new FileSystemReceptionHandlerConfigurationParameterBuilder().setWatchPath(invalidPath);
95         final FileSystemReceptionHandlerConfigurationParameterGroup configParameters =
96                 new FileSystemReceptionHandlerConfigurationParameterGroup(builder);
97
98         final GroupValidationResult validateResult = configParameters.validate();
99         assertFalse(validateResult.isValid());
100         assertTrue(validateResult.getResult().contains("must be a valid directory"));
101     }
102 }