package com.wesabe.grendel.openpgp.tests;
import static org.fest.assertions.Assertions.*;
import java.io.FileInputStream;
import org.bouncycastle.openpgp.PGPSecretKeyRing;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.runners.Enclosed;
import org.junit.runner.RunWith;
import com.google.common.collect.ImmutableList;
import com.wesabe.grendel.openpgp.AsymmetricAlgorithm;
import com.wesabe.grendel.openpgp.CompressionAlgorithm;
import com.wesabe.grendel.openpgp.HashAlgorithm;
import com.wesabe.grendel.openpgp.MasterKey;
import com.wesabe.grendel.openpgp.SubKey;
import com.wesabe.grendel.openpgp.SymmetricAlgorithm;
@RunWith(Enclosed.class)
public class SubKeyTest {
public static class A_Sub_Key {
private MasterKey masterKey;
private SubKey key;
@Before
public void setup() throws Exception {
final FileInputStream keyRingFile = new FileInputStream("src/test/resources/secret-keyring.gpg");
final PGPSecretKeyRing keyRing = new PGPSecretKeyRing(keyRingFile);
keyRingFile.close();
this.masterKey = MasterKey.load(keyRing.getSecretKey(0x8C7035EF8838238CL));
this.key = SubKey.load(keyRing.getSecretKey(0xA3A5D038FF30574EL), masterKey);
}
@Test
public void itHasAnID() throws Exception {
assertThat(key.getKeyID()).isEqualTo(0xA3A5D038FF30574EL);
}
@Test
public void itHasAMasterKey() throws Exception {
assertThat(key.getMasterKey().getKeyID()).isEqualTo(0x8C7035EF8838238CL);
}
@Test
public void itHasAUserID() throws Exception {
assertThat(key.getUserID()).isEqualTo("Sample Key <sample@wesabe.com>");
assertThat(key.getUserIDs()).isEqualTo(ImmutableList.of("Sample Key <sample@wesabe.com>"));
}
@Test
public void itIsAnRSAKey() throws Exception {
assertThat(key.getAlgorithm()).isEqualTo(AsymmetricAlgorithm.RSA);
}
@Test
public void itIs2048BitsLong() throws Exception {
assertThat(key.getSize()).isEqualTo(2048);
}
@Test
public void itCanEncryptData() throws Exception {
assertThat(key.canEncrypt()).isTrue();
}
@Test
public void itCannotSignData() throws Exception {
assertThat(key.canSign()).isFalse();
}
@Test
public void itHasACreationTimestamp() throws Exception {
assertThat(key.getCreatedAt()).isEqualTo(new DateTime(2009, 7, 9, 16, 23, 5, 0, DateTimeZone.UTC));
}
@SuppressWarnings("deprecation")
@Test
public void itHasPreferredSymmetricAlgorithms() throws Exception {
assertThat(key.getPreferredSymmetricAlgorithms())
.isEqualTo(ImmutableList.of(
SymmetricAlgorithm.AES_256,
SymmetricAlgorithm.AES_192,
SymmetricAlgorithm.AES_128,
SymmetricAlgorithm.CAST_128,
SymmetricAlgorithm.TRIPLE_DES,
SymmetricAlgorithm.IDEA
));
}
@Test
public void itHasPreferredCompressionAlgorithms() throws Exception {
assertThat(key.getPreferredCompressionAlgorithms())
.isEqualTo(ImmutableList.of(
CompressionAlgorithm.ZLIB,
CompressionAlgorithm.BZIP2,
CompressionAlgorithm.ZIP
));
}
@SuppressWarnings("deprecation")
@Test
public void itHasPreferredHashAlgorithms() throws Exception {
assertThat(key.getPreferredHashAlgorithms())
.isEqualTo(ImmutableList.of(
HashAlgorithm.SHA_1,
HashAlgorithm.SHA_256,
HashAlgorithm.RIPEMD_160
));
}
}
}