Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-05-20 06:52:44 +0000
committerslewis2008-05-20 06:52:44 +0000
commit369d190109794e6d98801cf9d7963aa505327de8 (patch)
tree0231055f178aabc674a9e57d76b794d125f1d828 /tests/bundles/org.eclipse.ecf.tests.storage
parentcb79acd7f4f366bcb6868c8efb37b4424db28e1f (diff)
downloadorg.eclipse.ecf-369d190109794e6d98801cf9d7963aa505327de8.tar.gz
org.eclipse.ecf-369d190109794e6d98801cf9d7963aa505327de8.tar.xz
org.eclipse.ecf-369d190109794e6d98801cf9d7963aa505327de8.zip
Added IContainerStore and IContainerEntry to API and implementation.
Diffstat (limited to 'tests/bundles/org.eclipse.ecf.tests.storage')
-rwxr-xr-xtests/bundles/org.eclipse.ecf.tests.storage/src/org/eclipse/ecf/tests/securestorage/IDStoreTest.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/bundles/org.eclipse.ecf.tests.storage/src/org/eclipse/ecf/tests/securestorage/IDStoreTest.java b/tests/bundles/org.eclipse.ecf.tests.storage/src/org/eclipse/ecf/tests/securestorage/IDStoreTest.java
index 11e8b9f36..0cb9efc01 100755
--- a/tests/bundles/org.eclipse.ecf.tests.storage/src/org/eclipse/ecf/tests/securestorage/IDStoreTest.java
+++ b/tests/bundles/org.eclipse.ecf.tests.storage/src/org/eclipse/ecf/tests/securestorage/IDStoreTest.java
@@ -59,12 +59,12 @@ public class IDStoreTest extends TestCase {
protected IIDEntry addGUID() throws IDCreateException {
final ID newGUID = IDFactory.getDefault().createGUID();
- return idStore.getEntry(newGUID);
+ return idStore.store(newGUID);
}
protected IIDEntry addStringID(String value) throws IDCreateException {
final ID newID = IDFactory.getDefault().createStringID(value);
- return idStore.getEntry(newID);
+ return idStore.store(newID);
}
public void testStoreGUID() throws Exception {
@@ -99,7 +99,7 @@ public class IDStoreTest extends TestCase {
public void testGetNamespaceNode() throws Exception {
final ID newGUID = IDFactory.getDefault().createGUID();
- idStore.getEntry(newGUID);
+ idStore.store(newGUID);
final ISecurePreferences namespacePrefs = idStore.getNamespaceEntry(newGUID.getNamespace()).getPreferences();
assertNotNull(namespacePrefs);
assertTrue(namespacePrefs.name().equals(newGUID.getNamespace().getName()));
@@ -107,7 +107,7 @@ public class IDStoreTest extends TestCase {
public void testGetIDEntries() throws Exception {
final ID newGUID = IDFactory.getDefault().createGUID();
- idStore.getEntry(newGUID);
+ idStore.store(newGUID);
// Get namespace entry
final INamespaceEntry namespaceEntry = idStore.getNamespaceEntry(newGUID.getNamespace());
assertNotNull(namespaceEntry);
@@ -123,16 +123,16 @@ public class IDStoreTest extends TestCase {
public void testCreateAssociation() throws Exception {
// Create two GUIDs and store them in idStore
final ID guid1 = IDFactory.getDefault().createGUID();
- final IIDEntry entry1 = idStore.getEntry(guid1);
+ final IIDEntry entry1 = idStore.store(guid1);
final ID guid2 = IDFactory.getDefault().createGUID();
- final IIDEntry entry2 = idStore.getEntry(guid2);
+ final IIDEntry entry2 = idStore.store(guid2);
final String key = "foo";
// Create association
entry1.putAssociate(key, entry2, true);
// Get entry1a
- final IIDEntry entry1a = idStore.getEntry(guid1);
+ final IIDEntry entry1a = idStore.store(guid1);
assertNotNull(entry1a);
// Get associates (should include entry2)
final IIDEntry[] entries = entry1a.getAssociates(key);
@@ -150,13 +150,13 @@ public class IDStoreTest extends TestCase {
public void testCreateAssociations() throws Exception {
// Create two GUIDs and store them in idStore
final ID guid1 = IDFactory.getDefault().createGUID();
- final IIDEntry entry1 = idStore.getEntry(guid1);
+ final IIDEntry entry1 = idStore.store(guid1);
final ID guid2 = IDFactory.getDefault().createGUID();
- final IIDEntry entry2 = idStore.getEntry(guid2);
+ final IIDEntry entry2 = idStore.store(guid2);
final ID guid3 = IDFactory.getDefault().createGUID();
- final IIDEntry entry3 = idStore.getEntry(guid3);
+ final IIDEntry entry3 = idStore.store(guid3);
final ID guid4 = IDFactory.getDefault().createGUID();
- final IIDEntry entry4 = idStore.getEntry(guid4);
+ final IIDEntry entry4 = idStore.store(guid4);
final String key1 = "foo";
final String key2 = "foo2";
@@ -169,7 +169,7 @@ public class IDStoreTest extends TestCase {
entry1.putAssociate(key2, entry4, true);
// Get entry1a
- final IIDEntry entry1a = idStore.getEntry(guid1);
+ final IIDEntry entry1a = idStore.store(guid1);
assertNotNull(entry1a);
// Get associates (should include entry2)

Back to the top