Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.commons.repositories.tests/src/org/eclipse/mylyn/commons/repositories/tests/core/CredentialsStoreTest.java')
-rw-r--r--org.eclipse.mylyn.commons.repositories.tests/src/org/eclipse/mylyn/commons/repositories/tests/core/CredentialsStoreTest.java83
1 files changed, 83 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.commons.repositories.tests/src/org/eclipse/mylyn/commons/repositories/tests/core/CredentialsStoreTest.java b/org.eclipse.mylyn.commons.repositories.tests/src/org/eclipse/mylyn/commons/repositories/tests/core/CredentialsStoreTest.java
new file mode 100644
index 00000000..ce93c95f
--- /dev/null
+++ b/org.eclipse.mylyn.commons.repositories.tests/src/org/eclipse/mylyn/commons/repositories/tests/core/CredentialsStoreTest.java
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2012 Tasktop Technologies and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.commons.repositories.tests.core;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.Arrays;
+
+import org.eclipse.mylyn.commons.repositories.core.auth.ICredentialsStore;
+import org.eclipse.mylyn.internal.commons.repositories.core.InMemoryCredentialsStore;
+import org.eclipse.mylyn.internal.commons.repositories.core.SecureCredentialsStore;
+import org.junit.Test;
+
+/**
+ * @author Steffen Pingel
+ */
+public class CredentialsStoreTest {
+
+ @Test
+ public void testCopyInMemoryToSecure() {
+ InMemoryCredentialsStore source = new InMemoryCredentialsStore();
+ SecureCredentialsStore target = new SecureCredentialsStore(CredentialsStoreTest.class.getName());
+ target.clear();
+
+ putValues(source);
+ source.copyTo(target);
+ assertValues(target);
+ }
+
+ @Test
+ public void testCopyInMemoryToInMemory() {
+ InMemoryCredentialsStore source = new InMemoryCredentialsStore();
+ InMemoryCredentialsStore target = new InMemoryCredentialsStore();
+
+ putValues(source);
+ source.copyTo(target);
+ assertValues(target);
+ }
+
+ @Test(expected = IllegalArgumentException.class)
+ public void testCopySecureToInMemory() {
+ SecureCredentialsStore source = new SecureCredentialsStore(CredentialsStoreTest.class.getName());
+ source.clear();
+ InMemoryCredentialsStore target = new InMemoryCredentialsStore();
+ source.copyTo(target);
+ }
+
+ @Test
+ public void testCopySecureToSecure() {
+ SecureCredentialsStore source = new SecureCredentialsStore(CredentialsStoreTest.class.getName());
+ source.clear();
+ SecureCredentialsStore target = new SecureCredentialsStore(CredentialsStoreTest.class.getName() + "2");
+ target.clear();
+
+ putValues(source);
+ source.copyTo(target);
+ assertValues(target);
+ }
+
+ private void assertValues(ICredentialsStore target) {
+ assertEquals("value", target.get("key1", null));
+ assertEquals(true, target.getBoolean("key2", false));
+ assertEquals(Arrays.toString(new byte[] { 0x00, 0x05 }), Arrays.toString(target.getByteArray("key3", null)));
+ assertEquals("value2", target.get("keyNotEncrypted", null));
+ }
+
+ private void putValues(ICredentialsStore source) {
+ source.put("key1", "value", true);
+ source.putBoolean("key2", true, true);
+ source.putByteArray("key3", new byte[] { 0x00, 0x05 }, true);
+ source.put("keyNotEncrypted", "value2", false);
+ }
+
+}

Back to the top