fix unit tests
This commit is contained in:
@@ -831,9 +831,7 @@ public class PgpEncryptDecryptTest {
|
|||||||
{ // decryption with passphrase cached should succeed for the other key if first is gone
|
{ // decryption with passphrase cached should succeed for the other key if first is gone
|
||||||
|
|
||||||
// delete first key from database
|
// delete first key from database
|
||||||
KeyWritableRepository.create(RuntimeEnvironment.application).getContentResolver().delete(
|
KeyWritableRepository.create(RuntimeEnvironment.application).deleteKeyRing(mStaticRing1.getMasterKeyId());
|
||||||
KeyRingData.buildPublicKeyRingUri(mStaticRing1.getMasterKeyId()), null, null
|
|
||||||
);
|
|
||||||
|
|
||||||
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
||||||
ByteArrayInputStream in = new ByteArrayInputStream(ciphertext);
|
ByteArrayInputStream in = new ByteArrayInputStream(ciphertext);
|
||||||
@@ -912,9 +910,7 @@ public class PgpEncryptDecryptTest {
|
|||||||
{ // decryption with passphrase cached should succeed for the other key if first is gone
|
{ // decryption with passphrase cached should succeed for the other key if first is gone
|
||||||
|
|
||||||
// delete first key from database
|
// delete first key from database
|
||||||
KeyWritableRepository.create(RuntimeEnvironment.application).getContentResolver().delete(
|
KeyWritableRepository.create(RuntimeEnvironment.application).deleteKeyRing(mStaticRing1.getMasterKeyId());
|
||||||
KeyRingData.buildPublicKeyRingUri(mStaticRing1.getMasterKeyId()), null, null
|
|
||||||
);
|
|
||||||
|
|
||||||
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
ByteArrayOutputStream out = new ByteArrayOutputStream();
|
||||||
ByteArrayInputStream in = new ByteArrayInputStream(ciphertext);
|
ByteArrayInputStream in = new ByteArrayInputStream(ciphertext);
|
||||||
|
|||||||
@@ -244,6 +244,7 @@ public class InteropTest {
|
|||||||
KeyRings.buildUnifiedKeyRingsFindBySubkeyUri(verify.getMasterKeyId()) : null;
|
KeyRings.buildUnifiedKeyRingsFindBySubkeyUri(verify.getMasterKeyId()) : null;
|
||||||
|
|
||||||
KeyWritableRepository helper = new KeyWritableRepository(RuntimeEnvironment.application,
|
KeyWritableRepository helper = new KeyWritableRepository(RuntimeEnvironment.application,
|
||||||
|
new KeychainDatabase(RuntimeEnvironment.application),
|
||||||
LocalPublicKeyStorage.getInstance(RuntimeEnvironment.application),
|
LocalPublicKeyStorage.getInstance(RuntimeEnvironment.application),
|
||||||
LocalSecretKeyStorage.getInstance(RuntimeEnvironment.application),
|
LocalSecretKeyStorage.getInstance(RuntimeEnvironment.application),
|
||||||
DatabaseNotifyManager.create(RuntimeEnvironment.application),
|
DatabaseNotifyManager.create(RuntimeEnvironment.application),
|
||||||
|
|||||||
Reference in New Issue
Block a user