Minor updated
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@85779 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
2ac2e4145d
commit
83e70acd04
|
@ -1,31 +0,0 @@
|
|||
package org.gcube.portlets.user.td.gwtservice.client;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
import org.gcube.common.scope.api.ScopeProvider;
|
||||
import org.gcube.data.analysis.tabulardata.operation.worker.EligibleOperation;
|
||||
import org.gcube.data.analysis.tabulardata.service.TabularDataService;
|
||||
import org.gcube.data.analysis.tabulardata.service.impl.TabularDataServiceFactory;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.Constants;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class TestOperations {
|
||||
|
||||
@Test
|
||||
public void TestTROperation() {
|
||||
ScopeProvider.instance.set(Constants.DEFAULT_SCOPE);
|
||||
TabularDataService service = TabularDataServiceFactory
|
||||
.getService(Constants.DEFAULT_USER);
|
||||
List<EligibleOperation> trOperations=service.getCapabilities();
|
||||
System.out.println("------------Tabular Resource Operation--------------");
|
||||
for(EligibleOperation operation: trOperations){
|
||||
System.out.println(operation.toString());
|
||||
}
|
||||
Assert.assertTrue(trOperations.size()>0);
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -2,11 +2,13 @@ package org.gcube.portlets.user.td.gwtservice.client;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
import org.gcube.common.scope.api.ScopeProvider;
|
||||
import org.gcube.data.analysis.tabulardata.operation.worker.EligibleOperation;
|
||||
import org.gcube.data.analysis.tabulardata.service.TabularDataService;
|
||||
import org.gcube.data.analysis.tabulardata.service.exception.InvalidTabularResourceException;
|
||||
import org.gcube.data.analysis.tabulardata.service.exception.NoSuchTabularResourceException;
|
||||
import org.gcube.data.analysis.tabulardata.service.impl.TabularDataServiceFactory;
|
||||
import org.gcube.data.analysis.tabulardata.service.tabular.TabularResource;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.Constants;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
@ -18,14 +20,43 @@ public class TestServiceOperations {
|
|||
ScopeProvider.instance.set(Constants.DEFAULT_SCOPE);
|
||||
TabularDataService service = TabularDataServiceFactory
|
||||
.getService(Constants.DEFAULT_USER);
|
||||
List<EligibleOperation> trOperations=service.getCapabilities();
|
||||
System.out.println("------------Tabular Resource Operation--------------");
|
||||
for(EligibleOperation operation: trOperations){
|
||||
List<EligibleOperation> trOperations = service.getCapabilities();
|
||||
Assert.assertTrue(trOperations.size() > 0);
|
||||
System.out
|
||||
.println("------------Tabular Resource Operation--------------");
|
||||
for (EligibleOperation operation : trOperations) {
|
||||
System.out.println(operation.toString());
|
||||
}
|
||||
Assert.assertTrue(trOperations.size()>0);
|
||||
|
||||
|
||||
List<TabularResource> trs = service.getTabularResources();
|
||||
Assert.assertTrue(trs.size() > 0);
|
||||
System.out
|
||||
.println("------------Tabular Resource--------------");
|
||||
for (TabularResource tr : trs) {
|
||||
System.out.println("TabularResource:"+tr.getId());
|
||||
}
|
||||
|
||||
List<EligibleOperation> tableOperations = null;
|
||||
try {
|
||||
tableOperations = service.getCapabilities(trs.get(0).getId());
|
||||
} catch (NoSuchTabularResourceException e) {
|
||||
e.printStackTrace();
|
||||
Assert.fail("No Tabular Resource on Service: "
|
||||
+ e.getLocalizedMessage());
|
||||
} catch (InvalidTabularResourceException e) {
|
||||
e.printStackTrace();
|
||||
Assert.fail("Invalid Tabular Resource on Service: "
|
||||
+ e.getLocalizedMessage());
|
||||
}
|
||||
Assert.assertTrue("No operations present",
|
||||
tableOperations.size() > 0);
|
||||
|
||||
System.out.println("------------Table Operation--------------");
|
||||
for (EligibleOperation operation : tableOperations) {
|
||||
System.out.println(operation.toString());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue