12 changed files with 205 additions and 79 deletions
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
/* |
||||
* Copyright 2012-present the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.testsupport; |
||||
|
||||
import java.io.File; |
||||
import java.io.FileInputStream; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.security.MessageDigest; |
||||
import java.security.NoSuchAlgorithmException; |
||||
import java.util.HexFormat; |
||||
|
||||
/** |
||||
* Utilities when working with {@link File files}. |
||||
* |
||||
* @author Dave Syer |
||||
* @author Phillip Webb |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
public abstract class FileUtils { |
||||
|
||||
private static final int BUFFER_SIZE = 32 * 1024; |
||||
|
||||
/** |
||||
* Generate a SHA-1 Hash for a given file. |
||||
* @param file the file to hash |
||||
* @return the hash value as a String |
||||
* @throws IOException if the file cannot be read |
||||
*/ |
||||
public static String sha1Hash(File file) throws IOException { |
||||
try { |
||||
MessageDigest messageDigest = MessageDigest.getInstance("SHA-1"); |
||||
try (InputStream inputStream = new FileInputStream(file)) { |
||||
byte[] buffer = new byte[BUFFER_SIZE]; |
||||
int bytesRead; |
||||
while ((bytesRead = inputStream.read(buffer)) != -1) { |
||||
messageDigest.update(buffer, 0, bytesRead); |
||||
} |
||||
return HexFormat.of().formatHex(messageDigest.digest()); |
||||
} |
||||
} |
||||
catch (NoSuchAlgorithmException ex) { |
||||
throw new IllegalStateException(ex); |
||||
} |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,49 @@
@@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright 2012-present the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.testsupport; |
||||
|
||||
import java.io.File; |
||||
import java.io.FileOutputStream; |
||||
import java.io.OutputStream; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
import org.junit.jupiter.api.io.TempDir; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link FileUtils}. |
||||
* |
||||
* @author Dave Syer |
||||
* @author Phillip Webb |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
class FileUtilsTests { |
||||
|
||||
@TempDir |
||||
File tempDir; |
||||
|
||||
@Test |
||||
void hash() throws Exception { |
||||
File file = new File(this.tempDir, "file"); |
||||
try (OutputStream outputStream = new FileOutputStream(file)) { |
||||
outputStream.write(new byte[] { 1, 2, 3 }); |
||||
} |
||||
assertThat(FileUtils.sha1Hash(file)).isEqualTo("7037807198c22a7d2b0807371d763779a84fdfcf"); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue