Updating image version and fixing tests
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-simulator / src / test / java / org / onap / so / sdcsimulator / providers / ResourceProviderImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
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.so.sdcsimulator.providers;
22
23 import static org.junit.Assert.assertArrayEquals;
24 import static org.junit.Assert.assertFalse;
25 import java.io.File;
26 import java.io.IOException;
27 import java.nio.file.Files;
28 import java.nio.file.Path;
29 import java.util.UUID;
30 import org.junit.Rule;
31 import org.junit.Test;
32 import org.junit.rules.TemporaryFolder;
33 import org.onap.so.sdcsimulator.utils.Constants;
34 import org.springframework.core.io.ClassPathResource;
35 import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
36 import org.springframework.util.StreamUtils;
37
38 /**
39  * @author Waqas Ikram (waqas.ikram@est.tech)
40  * @author Eoin Hanan (eoin.hanan@est.tech)
41  */
42 public class ResourceProviderImplTest {
43     @Rule
44     public TemporaryFolder temporaryFolder = new TemporaryFolder();
45     private static final String DUMMY_CONTENT = "Hello world";
46     private final PathMatchingResourcePatternResolver resourcePatternResolver =
47             new PathMatchingResourcePatternResolver();
48
49     @Test
50     public void test_getResource_withValidPath_matchContent() throws IOException {
51         final File folder = temporaryFolder.newFolder();
52         final String uuid = UUID.randomUUID().toString();
53         final Path file = Files.createFile(folder.toPath().resolve(uuid + Constants.DOT_CSAR));
54         Files.write(file, DUMMY_CONTENT.getBytes());
55         final ResourceProviderImpl objUnderTest = new ResourceProviderImpl(folder.getPath(), resourcePatternResolver);
56         assertArrayEquals(DUMMY_CONTENT.getBytes(), objUnderTest.getResource(uuid).get());
57     }
58
59     @Test
60     public void test_getResource_withoutValidPath_matchContent() throws IOException {
61         final ClassPathResource classPathResource = new ClassPathResource(Constants.DEFAULT_CSAR_PATH, this.getClass());
62         final byte[] expectedResult = StreamUtils.copyToByteArray(classPathResource.getInputStream());
63         final ResourceProviderImpl objUnderTest = new ResourceProviderImpl("", resourcePatternResolver);
64         assertArrayEquals(expectedResult, objUnderTest.getResource(Constants.DEFAULT_CSAR_NAME).get());
65     }
66
67     @Test
68     public void test_getResource_unbleToReadFileFromClasspath_emptyOptional() throws IOException {
69         final ResourceProviderImpl objUnderTest = new ResourceProviderImpl("", resourcePatternResolver) {
70             @Override
71             String getDefaultCsarPath() {
72                 return "/some/dummy/path";
73             }
74         };
75         assertFalse(objUnderTest.getResource(UUID.randomUUID().toString()).isPresent());
76     }
77 }