-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding unit tests for net.authorize.sample.Sha512.ComputeTransHashSHA…
…2.java These tests were written using Diffblue Cover
- Loading branch information
1 parent
63f849e
commit 536e559
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
src/test/java/net/authorize/sample/Sha512/ComputeTransHashSHA2Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package net.authorize.sample.Sha512; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.ExpectedException; | ||
|
||
public class ComputeTransHashSHA2Test { | ||
|
||
@Rule public final ExpectedException thrown = ExpectedException.none(); | ||
|
||
@Test | ||
public void getHMACSHA512InputNotNullNotNullOutputIllegalArgumentException() throws Exception { | ||
thrown.expect(IllegalArgumentException.class); | ||
ComputeTransHashSHA2.getHMACSHA512("/", "/"); | ||
} | ||
|
||
@Test | ||
public void getHMACSHA512InputNotNullNotNullOutputIllegalArgumentException2() throws Exception { | ||
thrown.expect(IllegalArgumentException.class); | ||
ComputeTransHashSHA2.getHMACSHA512( | ||
"\u0003\u0001\u0001 \u0010\u0000 0 ", | ||
"\u0000\u0000\u0000?????????????????????????????????????"); | ||
} | ||
|
||
@Test | ||
public void getHMACSHA512InputNotNullNullOutputIllegalArgumentException() throws Exception { | ||
thrown.expect(IllegalArgumentException.class); | ||
ComputeTransHashSHA2.getHMACSHA512( | ||
"\u8003\u0001\u0000\u0000>\u0000\ubffe\ubffe\ubffe\u0003", | ||
null); | ||
} | ||
|
||
@Test | ||
public void getHMACSHA512InputNullNotNullOutputIllegalArgumentException() throws Exception { | ||
thrown.expect(IllegalArgumentException.class); | ||
ComputeTransHashSHA2.getHMACSHA512( | ||
null, "\u0000\u0000\u0000??????????????????????"); | ||
} | ||
|
||
@Test | ||
public void hexStringToByteArrayInputNotNullOutput0() { | ||
|
||
Assert.assertArrayEquals(new byte[] {}, ComputeTransHashSHA2.hexStringToByteArray("")); | ||
} | ||
|
||
@Test | ||
public void hexStringToByteArrayInputNotNullOutputStringIndexOutOfBoundsException() { | ||
|
||
thrown.expect(StringIndexOutOfBoundsException.class); | ||
ComputeTransHashSHA2.hexStringToByteArray("/"); | ||
} | ||
|
||
@Test | ||
public void hexStringToByteArrayInputNotNullOutputStringIndexOutOfBoundsException2() { | ||
thrown.expect(StringIndexOutOfBoundsException.class); | ||
ComputeTransHashSHA2.hexStringToByteArray("#\uff77\u0002"); | ||
} | ||
} |