mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 20:15:59 +01:00
Further increase coverage of PDA class
This commit is contained in:
parent
bb1b154745
commit
7aaeb8ccfd
1 changed files with 78 additions and 0 deletions
|
@ -73,6 +73,42 @@ public class PDATest {
|
|||
assertTrue(check.isValid());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOPSSignedEncryptedMessageIsValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.OnePassSignature);
|
||||
check.next(InputAlphabet.EncryptedData);
|
||||
check.next(InputAlphabet.Signature);
|
||||
check.next(InputAlphabet.EndOfSequence);
|
||||
assertTrue(check.isValid());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void anyInputAfterEOSIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.LiteralData);
|
||||
check.next(InputAlphabet.EndOfSequence);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.Signature));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testEncryptedMessageWithAppendedStandalongSigIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.EncryptedData);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.Signature));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOPSSignedEncryptedMessageWithMissingSigIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.OnePassSignature);
|
||||
check.next(InputAlphabet.EncryptedData);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.EndOfSequence));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTwoLiteralDataIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
|
@ -89,6 +125,48 @@ public class PDATest {
|
|||
() -> check.next(InputAlphabet.Signature));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOPSAloneIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.OnePassSignature);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.EndOfSequence));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOPSLitWithMissingSigIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.OnePassSignature);
|
||||
check.next(InputAlphabet.LiteralData);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.EndOfSequence));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCompressedMessageWithStandalongAppendedSigIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.CompressedData);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.Signature));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOPSCompressedDataWithMissingSigIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.OnePassSignature);
|
||||
check.next(InputAlphabet.CompressedData);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.EndOfSequence));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCompressedMessageFollowedByTrailingLiteralDataIsNotValid() {
|
||||
PDA check = new PDA();
|
||||
check.next(InputAlphabet.CompressedData);
|
||||
assertThrows(MalformedOpenPgpMessageException.class,
|
||||
() -> check.next(InputAlphabet.LiteralData));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOPSWithPrependedSigIsValid() {
|
||||
PDA check = new PDA();
|
||||
|
|
Loading…
Reference in a new issue