[java-idp-integration-tests] branch master updated: Minor nits to Integration tests

Rod Widdowson rdw at steadingsoftware.com
Wed Apr 17 10:42:20 EDT 2019


This is an automated email from the git hooks/post-receive script.

rdw pushed a commit to branch master
in repository java-idp-integration-tests.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=7e8c1435bbb83d6dde19ed677bd290ce3c8d48da

The following commit(s) were added to refs/heads/master by this push:
       new  7e8c143   Minor nits to Integration tests
7e8c143 is described below

commit 7e8c1435bbb83d6dde19ed677bd290ce3c8d48da
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Apr 17 14:51:50 2019 +0100

    Minor nits to Integration tests
    
    Log the working directory for the slave process.
    
    Increase the buffer for listening to status.  With more services
    in IdP4 the status line will get bigger...
---
 src/test/java/net/shibboleth/idp/test/AbstractServerProcess.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test/java/net/shibboleth/idp/test/AbstractServerProcess.java b/src/test/java/net/shibboleth/idp/test/AbstractServerProcess.java
index 4bcc542..e59fee0 100644
--- a/src/test/java/net/shibboleth/idp/test/AbstractServerProcess.java
+++ b/src/test/java/net/shibboleth/idp/test/AbstractServerProcess.java
@@ -115,6 +115,7 @@ public class AbstractServerProcess extends AbstractInitializableComponent implem
         if (Boolean.getBoolean("inheritIO")) {
             builder.inheritIO();
         }
+        log.debug("Setting builder path to {}", pathToContainerBase.toAbsolutePath());
         builder.directory(pathToContainerBase.toAbsolutePath().toFile());
         return builder;
     }
@@ -328,7 +329,7 @@ public class AbstractServerProcess extends AbstractInitializableComponent implem
             final HttpEntity entity = response.getEntity();
             if (entity != null) {
                 long len = entity.getContentLength();
-                if (len != -1 && len < 2048) {
+                if (len != -1 && len < 3048) {
                     final String statusPageText = EntityUtils.toString(entity);
                     log.trace("Status page text '{}'", statusPageText);
                     return statusPageText;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list