aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java
diff options
context:
space:
mode:
authorVincent <valodim@mugenguild.com>2014-07-15 17:40:21 +0200
committerVincent <valodim@mugenguild.com>2014-07-15 17:40:21 +0200
commitd8f941fa708c98a1afc5f1e0b0de77ae8069519f (patch)
treee13f65753f0b4ce9db35d1a6e10cec0db92161ea /OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java
parent0ce9c131327ce754eb8c0c934ea59eecf005a26e (diff)
parent858fe47d4677d4c727d0696a2d683a349ad2ad3b (diff)
downloadopen-keychain-d8f941fa708c98a1afc5f1e0b0de77ae8069519f.tar.gz
open-keychain-d8f941fa708c98a1afc5f1e0b0de77ae8069519f.tar.bz2
open-keychain-d8f941fa708c98a1afc5f1e0b0de77ae8069519f.zip
Merge pull request #711 from open-keychain/external-test
External test + working SaveKeyringParcel
Diffstat (limited to 'OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java')
-rw-r--r--OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java86
1 files changed, 0 insertions, 86 deletions
diff --git a/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java b/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java
deleted file mode 100644
index 3d48c2f97..000000000
--- a/OpenKeychain/src/test/java/tests/ProviderHelperKeyringTest.java
+++ /dev/null
@@ -1,86 +0,0 @@
-package tests;
-
-import java.util.Collections;
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.ArrayList;
-
-import org.junit.Assert;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.robolectric.*;
-import org.openintents.openpgp.OpenPgpSignatureResult;
-import org.sufficientlysecure.keychain.testsupport.KeyringTestingHelper;
-import org.sufficientlysecure.keychain.testsupport.PgpVerifyTestingHelper;
-
-@RunWith(RobolectricTestRunner.class)
-@org.robolectric.annotation.Config(emulateSdk = 18) // Robolectric doesn't yet support 19
-public class ProviderHelperKeyringTest {
-
- @Test
- public void testSavePublicKeyring() throws Exception {
- Assert.assertTrue(new KeyringTestingHelper(Robolectric.application).addKeyring(Collections.singleton(
- "/public-key-for-sample.blob"
- )));
- }
-
- @Test
- public void testSavePublicKeyringRsa() throws Exception {
- Assert.assertTrue(new KeyringTestingHelper(Robolectric.application).addKeyring(prependResourcePath(Arrays.asList(
- "000001-006.public_key",
- "000002-013.user_id",
- "000003-002.sig",
- "000004-012.ring_trust",
- "000005-002.sig",
- "000006-012.ring_trust",
- "000007-002.sig",
- "000008-012.ring_trust",
- "000009-002.sig",
- "000010-012.ring_trust",
- "000011-002.sig",
- "000012-012.ring_trust",
- "000013-014.public_subkey",
- "000014-002.sig",
- "000015-012.ring_trust"
- ))));
- }
-
- @Test
- public void testSavePublicKeyringDsa() throws Exception {
- Assert.assertTrue(new KeyringTestingHelper(Robolectric.application).addKeyring(prependResourcePath(Arrays.asList(
- "000016-006.public_key",
- "000017-002.sig",
- "000018-012.ring_trust",
- "000019-013.user_id",
- "000020-002.sig",
- "000021-012.ring_trust",
- "000022-002.sig",
- "000023-012.ring_trust",
- "000024-014.public_subkey",
- "000025-002.sig",
- "000026-012.ring_trust"
- ))));
- }
-
- @Test
- public void testSavePublicKeyringDsa2() throws Exception {
- Assert.assertTrue(new KeyringTestingHelper(Robolectric.application).addKeyring(prependResourcePath(Arrays.asList(
- "000027-006.public_key",
- "000028-002.sig",
- "000029-012.ring_trust",
- "000030-013.user_id",
- "000031-002.sig",
- "000032-012.ring_trust",
- "000033-002.sig",
- "000034-012.ring_trust"
- ))));
- }
-
- private static Collection<String> prependResourcePath(Collection<String> files) {
- Collection<String> prependedFiles = new ArrayList<String>();
- for (String file: files) {
- prependedFiles.add("/extern/OpenPGP-Haskell/tests/data/" + file);
- }
- return prependedFiles;
- }
-}