[java-idp-integration-tests COMMIT] in /trunk: .project pom.xml src/test/java/net/ src/test/java/net/shibboleth/ src/...

noreply at shibboleth.net noreply at shibboleth.net
Tue Apr 22 18:56:51 EDT 2014


Author: tzeller
Date: Tue Apr 22 18:56:51 2014
New Revision: 4

URL: http://svn.shibboleth.net/view/java-idp-integration-tests?rev=4&view=rev
Log:
Simple test of the Status servlet.

Added:
    trunk/src/test/java/net/
    trunk/src/test/java/net/shibboleth/
    trunk/src/test/java/net/shibboleth/idp/
    trunk/src/test/java/net/shibboleth/idp/test/
    trunk/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java   (with props)
    trunk/src/test/java/net/shibboleth/idp/test/StatusTest.java   (with props)
    trunk/src/test/resources/conf/
    trunk/src/test/resources/conf/idp-server.xml   (with props)
    trunk/src/test/resources/test/
    trunk/src/test/resources/test/ldap.ldif
Modified:
    trunk/.project
    trunk/pom.xml
    trunk/src/test/resources/logback-test.xml

Modified: trunk/.project
URL: http://svn.shibboleth.net/view/java-idp-integration-tests/trunk/.project?rev=4&r1=3&r2=4&view=diff
==============================================================================
Binary files - no diff available.

Modified: trunk/pom.xml
URL: http://svn.shibboleth.net/view/java-idp-integration-tests/trunk/pom.xml?rev=4&r1=3&r2=4&view=diff
==============================================================================
--- trunk/pom.xml (original)
+++ trunk/pom.xml Tue Apr 22 18:56:51 2014
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -15,16 +15,246 @@
     <artifactId>idp-integration-tests</artifactId>
     <packaging>jar</packaging>
 
+    <properties>
+        <!-- The idp.home directory is where idp-conf and idp.war are copied to. -->
+        <idp.home>idp.home</idp.home>
+        <idp.version>3.0-SNAPSHOT</idp.version>
+        <java-support.version>3.0-SNAPSHOT</java-support.version>
+        <jetty9-data.version>1.0-SNAPSHOT</jetty9-data.version>
+        <selenium.version>2.41.0</selenium.version>
+        <svn.relative.location>java-idp-integration-tests</svn.relative.location>
+    </properties>
+
     <dependencies>
         <!-- Compile Dependencies -->
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>${spring.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>net.shibboleth.utilities</groupId>
+            <artifactId>java-support</artifactId>
+            <version>${java-support.version}</version>
+        </dependency>
 
         <!-- Provided Dependencies -->
 
         <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>net.shibboleth.idp</groupId>
+            <artifactId>idp-conf</artifactId>
+            <version>${idp.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>net.shibboleth.idp</groupId>
+            <artifactId>idp-war</artifactId>
+            <version>${idp.version}</version>
+            <!-- Type is 'pom' and not 'war' to include transitive dependencies when run in Eclipse. -->
+            <type>pom</type>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>net.shibboleth.utilities.jetty9</groupId>
+            <artifactId>jetty9-dta-ssl</artifactId>
+            <version>${jetty9-data.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-server</artifactId>
+            <version>${jetty.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-webapp</artifactId>
+            <version>${jetty.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-jsp</artifactId>
+            <version>${jetty.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-web</artifactId>
+            <version>${spring.version}</version>
+            <scope>runtime</scope>
+        </dependency>
 
         <!-- Test Dependencies -->
+        <dependency>
+            <groupId>com.unboundid</groupId>
+            <artifactId>unboundid-ldapsdk</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.seleniumhq.selenium</groupId>
+            <artifactId>selenium-java</artifactId>

[... 200 lines stripped ...]


More information about the commits mailing list