adapt to new jenkins reporting
This commit is contained in:
parent
d6b3ac43c6
commit
816528de87
6 changed files with 13 additions and 6 deletions
7
pom.xml
7
pom.xml
|
@ -189,6 +189,13 @@
|
|||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.glassfish.jaxb</groupId>
|
||||
<artifactId>jaxb-runtime</artifactId>
|
||||
<version>2.4.0-b180830.0438</version> <!--$NO-MVN-MAN-VER$ --> <!-- TODO move to stable version when available -->
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
|
|
@ -16,9 +16,9 @@ public class ProxyDataTest {
|
|||
|
||||
@Test
|
||||
public void testCreation() {
|
||||
final ProxyData proxyData = new ProxyData("proxyName", 8080, new ClientCredentials("user1", "password"));
|
||||
final ProxyData proxyData = new ProxyData("proxyName", 8888, new ClientCredentials("user1", "password"));
|
||||
assertEquals(
|
||||
"ProxyData [proxyName=proxyName, proxyPort=8080, clientCredentials=ClientCredentials [clientId=user1]]",
|
||||
"ProxyData [proxyName=proxyName, proxyPort=8888, clientCredentials=ClientCredentials [clientId=user1]]",
|
||||
proxyData.toString());
|
||||
}
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ public abstract class GuiIntegrationTest {
|
|||
|
||||
final HttpSession sessionMock = Mockito.mock(HttpSession.class);
|
||||
final WebserviceURIService webserviceURIService = new WebserviceURIService(
|
||||
"http", "localhost", "8080", "/", this.endpoint);
|
||||
"http", "localhost", "8888", "/", this.endpoint);
|
||||
|
||||
final ClientHttpRequestFactoryService clientHttpRequestFactoryService = Mockito
|
||||
.mock(ClientHttpRequestFactoryService.class);
|
||||
|
|
|
@ -79,7 +79,7 @@ public class SEBClientBot {
|
|||
private final ObjectMapper jsonMapper = new ObjectMapper();
|
||||
private final Random random = new Random();
|
||||
|
||||
String webserviceAddress = "http://localhost:8080";
|
||||
String webserviceAddress = "http://localhost:8888";
|
||||
String accessTokenEndpoint = "/oauth/token";
|
||||
String clientId = "test";
|
||||
String sessionId = null;
|
||||
|
|
|
@ -2922,7 +2922,7 @@ public class UseCasesIntegrationTest extends GuiIntegrationTest {
|
|||
.getBuilder(NewLmsSetup.class)
|
||||
.withFormParam(Domain.LMS_SETUP.ATTR_NAME, "Test Open edx")
|
||||
.withFormParam(Domain.LMS_SETUP.ATTR_LMS_TYPE, LmsType.OPEN_EDX.name())
|
||||
.withFormParam(Domain.LMS_SETUP.ATTR_LMS_URL, "http://localhost:8080/openedxtest")
|
||||
.withFormParam(Domain.LMS_SETUP.ATTR_LMS_URL, "http://localhost:8888/openedxtest")
|
||||
.withFormParam(Domain.LMS_SETUP.ATTR_LMS_CLIENTNAME, "test")
|
||||
.withFormParam(Domain.LMS_SETUP.ATTR_LMS_CLIENTSECRET, "test")
|
||||
.call();
|
||||
|
|
|
@ -6,7 +6,7 @@ spring.http.encoding.charset=UTF-8
|
|||
spring.http.encoding.enabled=true
|
||||
|
||||
server.address=localhost
|
||||
server.port=8080
|
||||
server.port=8888
|
||||
server.servlet.context-path=/
|
||||
|
||||
spring.main.allow-bean-definition-overriding=true
|
||||
|
|
Loading…
Add table
Reference in a new issue