Skip to content
Snippets Groups Projects
Commit 17dc2529 authored by srosse's avatar srosse
Browse files

OO-3295: fix issues with old library loaded by falsy maven artefact in nexus

parent f9efcf06
No related branches found
No related tags found
No related merge requests found
......@@ -1790,7 +1790,7 @@
<dependency>
<groupId>org.openolat</groupId>
<artifactId>openmeetingws</artifactId>
<version>3.0.7</version>
<version>3.0.8</version>
</dependency>
<dependency>
<groupId>org.openolat</groupId>
......
......@@ -51,7 +51,6 @@ import org.apache.http.client.methods.HttpPut;
import org.apache.http.util.EntityUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.olat.basesecurity.GroupRoles;
import org.olat.core.commons.persistence.DB;
......@@ -169,7 +168,7 @@ public class CourseGroupMgmtTest extends OlatJerseyTestCase {
assertTrue(voKeys.contains(g4.getKey()));
}
@Test @Ignore //TODO apache cxf
@Test
public void testGetCourseGroups_unkownId() throws IOException, URISyntaxException {
assertTrue(conn.login("administrator", "openolat"));
......
......@@ -39,7 +39,6 @@ import org.apache.http.client.methods.HttpPut;
import org.apache.http.util.EntityUtils;
import org.hamcrest.Matchers;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.olat.basesecurity.OrganisationService;
import org.olat.core.commons.persistence.DB;
......@@ -329,7 +328,7 @@ public class CurriculumElementsWebServiceTest extends OlatJerseyTestCase {
Assert.assertEquals(curriculum, savedElement.getCurriculum());
}
@Test @Ignore //TODO Apchae CXF
@Test
public void updateCurriculumElement_notAuthorized()
throws IOException, URISyntaxException {
RestConnection conn = new RestConnection();
......
......@@ -38,7 +38,6 @@ import org.apache.http.client.methods.HttpPut;
import org.apache.http.util.EntityUtils;
import org.hamcrest.Matchers;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.olat.basesecurity.OrganisationRoles;
import org.olat.basesecurity.OrganisationService;
......@@ -253,7 +252,7 @@ public class CurriculumsWebServiceTest extends OlatJerseyTestCase {
EntityUtils.consume(response.getEntity());
}
@Test @Ignore //TODO Apache CXF
@Test
public void updateCurriculum_authorizedOrNot()
throws IOException, URISyntaxException {
Identity curriculumManager = JunitTestHelper.createAndPersistIdentityAsRndUser("rest-curriculum");
......
......@@ -38,7 +38,6 @@ import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.util.EntityUtils;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.olat.basesecurity.GroupRoles;
import org.olat.basesecurity.OrganisationService;
......@@ -113,7 +112,7 @@ public class SharedFolderTest extends OlatJerseyTestCase {
* @throws IOException
* @throws URISyntaxException
*/
@Test @Ignore //TODO Apache CXF
@Test
public void putDirectories_owner() throws IOException, URISyntaxException {
Identity owner = JunitTestHelper.createAndPersistIdentityAsRndUser("shared-owner-");
Organisation defOrganisation = organisationService.getDefaultOrganisation();
......
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