[picketlink-commits] Picketlink SVN: r1557 - in integration-tests/branches/eap6: picketlink-saml-eap6 and 1 other directory.

picketlink-commits at lists.jboss.org picketlink-commits at lists.jboss.org
Wed May 2 12:28:16 EDT 2012


Author: pskopek at redhat.com
Date: 2012-05-02 12:28:15 -0400 (Wed, 02 May 2012)
New Revision: 1557

Added:
   integration-tests/branches/eap6/picketlink-saml-eap6/
   integration-tests/branches/eap6/picketlink-saml-eap6/arquillian.xml
   integration-tests/branches/eap6/picketlink-saml-eap6/pom.xml
Log:
forgotten files for saml eap6 tests

Added: integration-tests/branches/eap6/picketlink-saml-eap6/arquillian.xml
===================================================================
--- integration-tests/branches/eap6/picketlink-saml-eap6/arquillian.xml	                        (rev 0)
+++ integration-tests/branches/eap6/picketlink-saml-eap6/arquillian.xml	2012-05-02 16:28:15 UTC (rev 1557)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
+
+	<container qualifier="jboss" default="true">
+		<configuration>
+			<property name="jbossHome">target/jbossas</property>
+            <!-- property name="javaHome">/opt/sun/jdk1.6.0_27</property -->
+			<!-- property name="javaVmArguments">${server.jvm.args}</property -->
+			<property name="serverConfig">${server.config:standalone.xml}</property>
+			<!-- property name="allowConnectingToRunningServer">true</property -->
+		</configuration>
+	</container>
+</arquillian>

Added: integration-tests/branches/eap6/picketlink-saml-eap6/pom.xml
===================================================================
--- integration-tests/branches/eap6/picketlink-saml-eap6/pom.xml	                        (rev 0)
+++ integration-tests/branches/eap6/picketlink-saml-eap6/pom.xml	2012-05-02 16:28:15 UTC (rev 1557)
@@ -0,0 +1,207 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+    <parent>
+       <groupId>org.picketlink.product</groupId>
+       <artifactId>picketlink-integration-tests-parent</artifactId>
+       <version>2.0.0-SNAPSHOT</version>
+       <relativePath>../parent</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>picketlink-integration-saml-tests-eap6</artifactId>
+    <packaging>jar</packaging>
+    <name>PicketLink Integration Tests for SAML - EAP 6</name>
+    <url>http://labs.jboss.org/portal/picketlink/</url>
+    <description>PicketLink Federation Tests for SAML features against EAP6</description>
+    <licenses>
+       <license>
+          <name>lgpl</name>
+          <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+       </license>
+    </licenses>
+    <organization>
+       <name>JBoss Inc.</name>
+       <url>http://www.jboss.org</url>
+    </organization>
+    <properties>
+        <java.endorsed.dirs>${basedir}/src/test/resources/endorsed</java.endorsed.dirs>
+        <SERVICE_1_URL>http://localhost:8080/sales-post/</SERVICE_1_URL>
+        <SERVICE_2_URL>http://localhost:8080/employee-post/</SERVICE_2_URL>
+        <SERVICE_3_URL>http://localhost:8080/sales/</SERVICE_3_URL>
+        <SERVICE_4_URL>http://localhost:8080/employee/</SERVICE_4_URL>
+    </properties>
+    <build>
+      <plugins>
+        <plugin>
+           <artifactId>maven-surefire-plugin</artifactId>
+           <configuration>
+             <phase>test</phase>
+            <!--  <skipTests>true</skipTests> -->
+             <testClassesDirectory>${basedir}/../picketlink-saml-tests/target/test-classes</testClassesDirectory>
+             <printSummary>true</printSummary>
+             <disableXmlReport>false</disableXmlReport>
+             <excludes>
+               <exclude>**/Standalone**TestCase.java</exclude>
+             </excludes>
+             <includes>
+               <include>**/*TestCase.java</include>
+             </includes>
+             <forkMode>once</forkMode>
+             <argLine>-Djava.endorsed.dirs=${basedir}/../picketlink-saml-tests/src/test/resources/endorsed</argLine>
+             <useFile>false</useFile>
+             <trimStackTrace>false</trimStackTrace>
+             <classpathDependencyScopeExclude>compile</classpathDependencyScopeExclude>
+             <systemPropertyVariables>
+                <arquillian.xml>arquillian.xml</arquillian.xml>
+                <arquillian.launch>jboss</arquillian.launch>
+                <server.config>standalone-picketlink.xml</server.config>
+             </systemPropertyVariables>
+             <additionalClasspathElements>
+               <!-- needed for Arquillian to find its config file -->
+               <additionalClasspathElement>${basedir}</additionalClasspathElement>
+               <additionalClasspathElement>${eap6-home}/modules/org/picketlink/main/picketlink-core-${pl-version}.jar</additionalClasspathElement>
+               <additionalClasspathElement>${eap6-home}/modules/org/apache/xerces/main/xercesImpl-${xerces-version}.jar</additionalClasspathElement>
+             </additionalClasspathElements>
+             <reportNameSuffix>SAML-EAP6</reportNameSuffix>
+            </configuration>
+         </plugin>
+         <plugin>
+           <artifactId>maven-antrun-plugin</artifactId>
+           <executions>
+            <execution>
+              <id>phase-1</id>
+              <phase>compile</phase>
+              <configuration>
+                 <tasks>
+                  <property name="depclasspath" refid="maven.dependency.classpath"/>
+                  <property name="version" value="${pl-version}"/>
+                  <property name="pl-webapps-main-version" value="${pl-webapps-main-version}"/>
+                  <property name="pl-fed-webapps-assembly-version" value="${pl-fed-webapps-assembly-version}"/>
+                  <property name="localRepository" value="${user.home}/.m2/repository"/>
+                  <property name="jboss.dist" value="${jboss.dist}" />
+                  <property name="EAP_ZIP" value="${EAP6_ZIP}" />
+                  <property name="EAP_URL" value="${EAP6_URL}" />
+                  <property name="EAP_DIR" value="${EAP6_DIR}" />
+                  <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="init-eap6" />
+                 </tasks>
+              </configuration>
+              <goals>
+                <goal>run</goal>
+              </goals>
+             </execution>
+           </executions>
+        </plugin>
+      </plugins>
+   </build>
+
+    <dependencies>
+        <dependency>
+          <groupId>org.jboss.remoting3</groupId>
+          <artifactId>jboss-remoting</artifactId>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.jboss.logging</groupId>
+          <artifactId>jboss-logging</artifactId>
+        </dependency>
+        <dependency>
+           <groupId>junit</groupId>
+           <artifactId>junit</artifactId>
+           <scope>test</scope>
+        </dependency>
+        <dependency>
+           <groupId>org.jboss.arquillian.junit</groupId>
+           <artifactId>arquillian-junit-container</artifactId>
+           <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.as</groupId>
+            <artifactId>jboss-as-arquillian-container-managed</artifactId>
+            <scope>test</scope>
+        </dependency>
+       <dependency>
+         <groupId>httpunit</groupId>
+         <artifactId>httpunit</artifactId>
+         <version>1.7</version>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>rhino</groupId>
+         <artifactId>js</artifactId>
+         <version>1.6R7</version>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>nekohtml</groupId>
+         <artifactId>nekohtml</artifactId>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>xerces</groupId>
+         <artifactId>xercesImpl</artifactId>
+       </dependency>
+       <dependency>
+         <groupId>ant-contrib</groupId>
+         <artifactId>ant-contrib</artifactId>
+         <version>1.0b2</version>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-core</artifactId>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>idp-as7</artifactId>
+         <type>war</type>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>pdp-as7</artifactId>
+         <type>war</type>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-sts-as7</artifactId>
+         <type>war</type>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-fed-webapps-as7-assembly</artifactId>
+         <type>zip</type>
+       </dependency>
+    </dependencies>
+
+    <reporting>
+     <plugins>
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-javadoc-plugin</artifactId>
+         <configuration>
+           <doclet>org.jboss.apiviz.APIviz</doclet>
+           <docletArtifact>
+             <groupId>org.jboss.apiviz</groupId>
+             <artifactId>apiviz</artifactId>
+             <version>1.2.5.GA</version>
+           </docletArtifact>
+           <additionalparam>
+             -charset UTF-8
+             -docencoding UTF-8
+             -version
+             -author
+             -breakiterator
+             -windowtitle "${project.name} ${project.version} API Reference"
+             -doctitle "${project.name} ${project.version} API Reference"
+             -bottom "Copyright © ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
+             -link http://java.sun.com/javase/6/docs/api/
+             -sourceclasspath ${project.build.outputDirectory}
+           </additionalparam>
+           <encoding>UTF-8</encoding>
+         </configuration>
+       </plugin>
+     </plugins>
+   </reporting>
+
+
+</project>
\ No newline at end of file



More information about the picketlink-commits mailing list