mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:20:07 +08:00
单元测试由Junit4变更为Junit5
This commit is contained in:
parent
c7e0bc5d9f
commit
994ac87ae6
@ -1,6 +1,5 @@
|
||||
package cn.hutool.crypto;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@ -8,17 +7,21 @@ import java.security.KeyPair;
|
||||
import java.security.PrivateKey;
|
||||
import java.security.PublicKey;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
public class KeyUtilTest {
|
||||
|
||||
/**
|
||||
* 测试关闭BouncyCastle支持时是否会正常抛出异常,即关闭是否有效
|
||||
*/
|
||||
@Test(expected = CryptoException.class)
|
||||
@Test
|
||||
@Disabled
|
||||
public void generateKeyPairTest() {
|
||||
GlobalBouncyCastleProvider.setUseBouncyCastle(false);
|
||||
KeyPair pair = KeyUtil.generateKeyPair("SM2");
|
||||
assertNotNull(pair);
|
||||
assertThrows(CryptoException.class, () -> {
|
||||
GlobalBouncyCastleProvider.setUseBouncyCastle(false);
|
||||
KeyPair pair = KeyUtil.generateKeyPair("SM2");
|
||||
assertNotNull(pair);
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -12,7 +12,6 @@ import org.bouncycastle.crypto.DataLengthException;
|
||||
import org.bouncycastle.crypto.engines.SM2Engine;
|
||||
import org.bouncycastle.crypto.params.ECPrivateKeyParameters;
|
||||
import org.bouncycastle.jcajce.spec.OpenSSHPrivateKeySpec;
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.nio.charset.StandardCharsets;
|
||||
@ -20,6 +19,8 @@ import java.security.KeyPair;
|
||||
import java.security.PrivateKey;
|
||||
import java.security.PublicKey;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
/**
|
||||
* SM2算法单元测试
|
||||
*
|
||||
@ -338,10 +339,12 @@ public class SM2Test {
|
||||
new SM2(null, publicKey);
|
||||
}
|
||||
|
||||
@Test(expected = DataLengthException.class)
|
||||
@Test
|
||||
public void issueIA824PTest() {
|
||||
SM2 sm2 = SmUtil.sm2();
|
||||
String emptyStr = "";
|
||||
sm2.encryptHex(emptyStr, KeyType.PublicKey);
|
||||
assertThrows(DataLengthException.class, () -> {
|
||||
SM2 sm2 = SmUtil.sm2();
|
||||
String emptyStr = "";
|
||||
sm2.encryptHex(emptyStr, KeyType.PublicKey);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user