Merge "[OOM-CPMv2] Fix sonar issue"
[oom/platform/cert-service.git] / certServicePostProcessor / src / test / java / org / onap / oom / certservice / postprocessor / common / FileToolsTest.java
1 /*============LICENSE_START=======================================================
2  * oom-truststore-merger
3  * ================================================================================
4  * Copyright (C) 2020 Nokia. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19
20 package org.onap.oom.certservice.postprocessor.common;
21
22 import static org.assertj.core.api.Assertions.assertThat;
23
24 import java.io.File;
25 import java.io.IOException;
26 import java.nio.charset.Charset;
27 import org.apache.commons.io.FileUtils;
28 import org.junit.jupiter.api.Test;
29 import org.junit.jupiter.api.io.TempDir;
30
31 class FileToolsTest {
32
33     public static final String BAK_EXTENSION = ".bak";
34
35     @TempDir
36     File dir;
37
38     @Test
39     void shouldCreateBackupProvidedFile() throws Exception {
40         //given
41         File fileToBackup = createFile("truststore.pem", "arbitrary content");
42         String backupFilePath = fileToBackup.getPath() + BAK_EXTENSION;
43         //when
44         new FileTools().createBackup(fileToBackup);
45         //then
46         assertThat(fileToBackup).hasSameBinaryContentAs(new File(backupFilePath));
47     }
48
49     @Test
50     void shouldCopyFile() throws IOException {
51         //given
52         File sourceFile = createFile("source.p12", "any content");
53         File destinationFile = new File(dir.getAbsolutePath() + "destination.p12");
54         //when
55         new FileTools().copy(sourceFile, destinationFile);
56         //then
57         assertThat(sourceFile).hasSameBinaryContentAs(destinationFile);
58     }
59
60
61     private File createFile(String name, String content) throws IOException {
62         File file = new File(dir.getAbsolutePath() + File.pathSeparator + name);
63         if (file.createNewFile()) {
64             FileUtils.write(file, content, Charset.defaultCharset());
65         } else {
66             throw new IllegalStateException("File could not be created: " + file.getAbsolutePath());
67         }
68         return file;
69     }
70
71 }