Updated gcat-client

This commit is contained in:
Francesco Mangiacrapa 2022-08-01 10:45:39 +02:00
parent b0a36a3da2
commit 4cab07998b
2 changed files with 5 additions and 5 deletions

View File

@ -101,7 +101,7 @@
<dependency> <dependency>
<groupId>org.gcube.data-catalogue</groupId> <groupId>org.gcube.data-catalogue</groupId>
<artifactId>gcat-client</artifactId> <artifactId>gcat-client</artifactId>
<version>[2.0.0-SNAPSHOT, 2.3.0-SNAPSHOT)</version> <version>[2.0.0, 3.0.0-SNAPSHOT)</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>

View File

@ -38,12 +38,12 @@ public class TestDataCatalogueCMS extends ContextTest {
* *
* @throws Exception the exception * @throws Exception the exception
*/ */
@Before //@Before
public void before() throws Exception { public void before() throws Exception {
factory = DataCatalogueFactory.getFactory(); factory = DataCatalogueFactory.getFactory();
} }
@Test //@Test
public void testGCatAvailability() { public void testGCatAvailability() {
try { try {
LOG.info("testGCatAvailability running"); LOG.info("testGCatAvailability running");
@ -75,7 +75,7 @@ public class TestDataCatalogueCMS extends ContextTest {
LOG.debug(CatalogueContentModeratorSystem.class.getName() + " instancied correclty"); LOG.debug(CatalogueContentModeratorSystem.class.getName() + " instancied correclty");
} }
@Test //@Test
public void listItemsForCMStatus() throws Exception { public void listItemsForCMStatus() throws Exception {
try { try {
long start = System.currentTimeMillis(); long start = System.currentTimeMillis();
@ -96,7 +96,7 @@ public class TestDataCatalogueCMS extends ContextTest {
Map<String, String> filters = new HashMap<String, String>(); Map<String, String> filters = new HashMap<String, String>();
filters.put("author_email", theQuery); filters.put("author_email", theQuery);
List<CkanDataset> listItems = cCMS.getListItemsForStatus(theStatus, 10, 0, false, filters, List<CkanDataset> listItems = cCMS.getListItemsForStatus(theStatus, 10, 0, true, filters,
GCatCaller.DEFAULT_SORT_VALUE); GCatCaller.DEFAULT_SORT_VALUE);
int i = 0; int i = 0;
for (CkanDataset ckanDataset : listItems) { for (CkanDataset ckanDataset : listItems) {