Skip to content
Snippets Groups Projects
Commit 94c11b6b authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-55: fixed api-openbis-java tests.

parent 3ba775b8
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -27,6 +27,7 @@ import java.util.HashSet; ...@@ -27,6 +27,7 @@ import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.common.property.PropertiesDeserializer;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.attachment.create.AttachmentCreation; import ch.ethz.sis.openbis.generic.asapi.v3.dto.attachment.create.AttachmentCreation;
...@@ -100,7 +101,9 @@ import ch.ethz.sis.openbis.generic.dssapi.v3.fastdownload.FastDownloadUtils; ...@@ -100,7 +101,9 @@ import ch.ethz.sis.openbis.generic.dssapi.v3.fastdownload.FastDownloadUtils;
*/ */
public class ToStringCheck public class ToStringCheck
{ {
private static final Set<Class<?>> IGNORED_CLASSES = new HashSet<>(Arrays.asList(FastDownloadUtils.class, SampleIdDeserializer.class)); private static final Set<Class<?>> IGNORED_CLASSES = new HashSet<>(
Arrays.asList(FastDownloadUtils.class, SampleIdDeserializer.class,
PropertiesDeserializer.class));
@Test @Test
public void testMissingToStringMethods() throws Exception public void testMissingToStringMethods() throws Exception
...@@ -135,7 +138,8 @@ public class ToStringCheck ...@@ -135,7 +138,8 @@ public class ToStringCheck
private boolean filter(Class<?> clazz) private boolean filter(Class<?> clazz)
{ {
return Modifier.isPublic(clazz.getModifiers()) && false == Modifier.isAbstract(clazz.getModifiers()) return Modifier.isPublic(clazz.getModifiers()) && false == Modifier.isAbstract(
clazz.getModifiers())
&& IGNORED_CLASSES.contains(clazz) == false; && IGNORED_CLASSES.contains(clazz) == false;
} }
...@@ -174,7 +178,8 @@ public class ToStringCheck ...@@ -174,7 +178,8 @@ public class ToStringCheck
@Test @Test
public void testFetchOptionsToStringBuilder() throws Exception public void testFetchOptionsToStringBuilder() throws Exception
{ {
FetchOptionsToStringBuilder builder = new FetchOptionsToStringBuilder("Sample", new SampleFetchOptions()); FetchOptionsToStringBuilder builder =
new FetchOptionsToStringBuilder("Sample", new SampleFetchOptions());
builder.addFetchOption("Type", new SampleTypeFetchOptions()); builder.addFetchOption("Type", new SampleTypeFetchOptions());
builder.addFetchOption("Project", new ProjectFetchOptions()); builder.addFetchOption("Project", new ProjectFetchOptions());
assertEquals(builder.toString(), "Sample\n with Type\n with Project\n"); assertEquals(builder.toString(), "Sample\n with Type\n with Project\n");
...@@ -259,7 +264,8 @@ public class ToStringCheck ...@@ -259,7 +264,8 @@ public class ToStringCheck
ContentCopyCreation o = new ContentCopyCreation(); ContentCopyCreation o = new ContentCopyCreation();
o.setExternalDmsId(new ExternalDmsPermId("test-dms-id")); o.setExternalDmsId(new ExternalDmsPermId("test-dms-id"));
o.setExternalId("test-external-id"); o.setExternalId("test-external-id");
assertEquals(o.toString(), "ContentCopyCreation[externalDmsId=TEST-DMS-ID,externalId=test-external-id]"); assertEquals(o.toString(),
"ContentCopyCreation[externalDmsId=TEST-DMS-ID,externalId=test-external-id]");
} }
@Test @Test
...@@ -268,7 +274,8 @@ public class ToStringCheck ...@@ -268,7 +274,8 @@ public class ToStringCheck
LinkedDataCreation o = new LinkedDataCreation(); LinkedDataCreation o = new LinkedDataCreation();
o.setExternalDmsId(new ExternalDmsPermId("test-dms-id")); o.setExternalDmsId(new ExternalDmsPermId("test-dms-id"));
o.setExternalCode("test-external-code"); o.setExternalCode("test-external-code");
assertEquals(o.toString(), "LinkedDataCreation[externalDmsId=TEST-DMS-ID,externalCode=test-external-code]"); assertEquals(o.toString(),
"LinkedDataCreation[externalDmsId=TEST-DMS-ID,externalCode=test-external-code]");
} }
@Test @Test
...@@ -328,23 +335,30 @@ public class ToStringCheck ...@@ -328,23 +335,30 @@ public class ToStringCheck
@Test @Test
public void testAsynchronousOperationExecutionResults() throws Exception public void testAsynchronousOperationExecutionResults() throws Exception
{ {
AsynchronousOperationExecutionResults o = new AsynchronousOperationExecutionResults(new OperationExecutionPermId()); AsynchronousOperationExecutionResults o =
assertEquals(o.toString(), "AsynchronousOperationExecutionResults[executionId=" + o.getExecutionId().getPermId() + "]"); new AsynchronousOperationExecutionResults(new OperationExecutionPermId());
assertEquals(o.toString(),
"AsynchronousOperationExecutionResults[executionId=" + o.getExecutionId()
.getPermId() + "]");
} }
@Test @Test
public void testOperationExecutionProgress() throws Exception public void testOperationExecutionProgress() throws Exception
{ {
OperationExecutionProgress o = new OperationExecutionProgress("test-message", 123, 234); OperationExecutionProgress o = new OperationExecutionProgress("test-message", 123, 234);
assertEquals(o.toString(), "OperationExecutionProgress[message=test-message,numItemsProcessed=123,totalItemsToProcess=234]"); assertEquals(o.toString(),
"OperationExecutionProgress[message=test-message,numItemsProcessed=123,totalItemsToProcess=234]");
} }
@Test @Test
public void testSynchronousOperationExecutionResults() throws Exception public void testSynchronousOperationExecutionResults() throws Exception
{ {
CreateSamplesOperationResult result1 = new CreateSamplesOperationResult(Arrays.asList(new SamplePermId("test-perm-id-1"))); CreateSamplesOperationResult result1 =
CreateExperimentsOperationResult result2 = new CreateExperimentsOperationResult(Arrays.asList(new ExperimentPermId("test-perm-id-2"))); new CreateSamplesOperationResult(Arrays.asList(new SamplePermId("test-perm-id-1")));
SynchronousOperationExecutionResults o = new SynchronousOperationExecutionResults(Arrays.asList(result1, result2)); CreateExperimentsOperationResult result2 = new CreateExperimentsOperationResult(
Arrays.asList(new ExperimentPermId("test-perm-id-2")));
SynchronousOperationExecutionResults o =
new SynchronousOperationExecutionResults(Arrays.asList(result1, result2));
assertEquals(o.toString(), assertEquals(o.toString(),
"SynchronousOperationExecutionResults[results={CreateSamplesOperationResult[TEST-PERM-ID-1],CreateExperimentsOperationResult[TEST-PERM-ID-2]}]"); "SynchronousOperationExecutionResults[results={CreateSamplesOperationResult[TEST-PERM-ID-1],CreateExperimentsOperationResult[TEST-PERM-ID-2]}]");
} }
...@@ -379,7 +393,8 @@ public class ToStringCheck ...@@ -379,7 +393,8 @@ public class ToStringCheck
SearchDomainServiceExecutionResult o = new SearchDomainServiceExecutionResult(); SearchDomainServiceExecutionResult o = new SearchDomainServiceExecutionResult();
o.setEntityKind(EntityKind.SAMPLE); o.setEntityKind(EntityKind.SAMPLE);
o.setEntityPermId("test-perm-id"); o.setEntityPermId("test-perm-id");
assertEquals(o.toString(), "SearchDomainServiceExecutionResult[entityKind=SAMPLE,entityPermId=test-perm-id]"); assertEquals(o.toString(),
"SearchDomainServiceExecutionResult[entityKind=SAMPLE,entityPermId=test-perm-id]");
} }
@Test @Test
...@@ -393,9 +408,11 @@ public class ToStringCheck ...@@ -393,9 +408,11 @@ public class ToStringCheck
@Test @Test
public void testVocabularyTermReplacement() throws Exception public void testVocabularyTermReplacement() throws Exception
{ {
VocabularyTermReplacement o = new VocabularyTermReplacement(new VocabularyTermPermId("test-code-1", "test-vocab-1"), VocabularyTermReplacement o = new VocabularyTermReplacement(
new VocabularyTermPermId("test-code-1", "test-vocab-1"),
new VocabularyTermPermId("test-code-2", "test-vocab-2")); new VocabularyTermPermId("test-code-2", "test-vocab-2"));
assertEquals(o.toString(), "VocabularyTermReplacement[replacedId=TEST-CODE-1 (TEST-VOCAB-1),replacementId=TEST-CODE-2 (TEST-VOCAB-2)]"); assertEquals(o.toString(),
"VocabularyTermReplacement[replacedId=TEST-CODE-1 (TEST-VOCAB-1),replacementId=TEST-CODE-2 (TEST-VOCAB-2)]");
} }
@Test @Test
......
...@@ -146,6 +146,7 @@ DeletionSortOptions ...@@ -146,6 +146,7 @@ DeletionSortOptions
DeletionTechId DeletionTechId
DeletionType DeletionType
desc desc
deserialize
downloadFiles downloadFiles
DtoGenerator DtoGenerator
ECMAScriptEngineFactory ECMAScriptEngineFactory
...@@ -302,6 +303,7 @@ getProject ...@@ -302,6 +303,7 @@ getProject
getProjectId getProjectId
getProjects getProjects
getProperties getProperties
getPropertyAsString
getPropertyName getPropertyName
getPropertyValue getPropertyValue
getRealArrayProperty getRealArrayProperty
...@@ -441,6 +443,7 @@ isEmpty ...@@ -441,6 +443,7 @@ isEmpty
isListable isListable
isMeasured isMeasured
isModified isModified
isMultiValue
isOfficial isOfficial
isOpenbis isOpenbis
ISpaceHolder ISpaceHolder
...@@ -558,6 +561,7 @@ ProjectSearchCriteria ...@@ -558,6 +561,7 @@ ProjectSearchCriteria
ProjectSortOptions ProjectSortOptions
ProjectUpdate ProjectUpdate
PROPERTY PROPERTY
PropertiesDeserializer
PropertyFetchOptions PropertyFetchOptions
PropertyHistoryEntry PropertyHistoryEntry
ProprietaryStorageFormatPermId ProprietaryStorageFormatPermId
...@@ -696,6 +700,7 @@ setMeasured ...@@ -696,6 +700,7 @@ setMeasured
setMetaData setMetaData
setModificationDate setModificationDate
setModifier setModifier
setMultiValue
setMultilineVarcharProperty setMultilineVarcharProperty
setName setName
setOfficial setOfficial
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment