You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by bh...@apache.org on 2010/09/17 09:31:18 UTC

svn commit: r998002 - in /shindig/trunk/php: ./ build.xml test/ShindigAllTests.php

Author: bhofmann
Date: Fri Sep 17 07:31:18 2010
New Revision: 998002

URL: http://svn.apache.org/viewvc?rev=998002&view=rev
Log:
PHP: added build.xml to include unit tests into hudson

Added:
    shindig/trunk/php/build.xml
Modified:
    shindig/trunk/php/   (props changed)
    shindig/trunk/php/test/ShindigAllTests.php

Propchange: shindig/trunk/php/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Sep 17 07:31:18 2010
@@ -0,0 +1 @@
+build

Added: shindig/trunk/php/build.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/php/build.xml?rev=998002&view=auto
==============================================================================
--- shindig/trunk/php/build.xml (added)
+++ shindig/trunk/php/build.xml Fri Sep 17 07:31:18 2010
@@ -0,0 +1,45 @@
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project name="Apache Shindig PHP" default="test">
+    <target name="clean">
+        <delete dir="${basedir}/build"/>
+    </target>
+    <target name="prepare">
+        <mkdir dir="${basedir}/build/logs"/>
+    </target>
+    <target name="phpunit">
+        <exec dir="${basedir}"
+		executable="phpunit"
+		failonerror="true">
+            <arg line="--log-junit build/logs/junit.xml
+			  --coverage-clover build/logs/clover.xml
+			 test/ShindigAllTests.php"/>
+        </exec>
+    </target>
+    <target name="code-coverage">
+        <exec dir="${basedir}"
+		executable="phpunit"
+		failonerror="true">
+            <arg line="--coverage-html ${basedir}/build/logs/coverage_html
+            test/ShindigAllTests.php"/>
+        </exec>
+    </target>
+    <target name="test"
+		 depends="clean,prepare,phpunit,code-coverage"/>
+</project>
\ No newline at end of file

Modified: shindig/trunk/php/test/ShindigAllTests.php
URL: http://svn.apache.org/viewvc/shindig/trunk/php/test/ShindigAllTests.php?rev=998002&r1=998001&r2=998002&view=diff
==============================================================================
--- shindig/trunk/php/test/ShindigAllTests.php (original)
+++ shindig/trunk/php/test/ShindigAllTests.php Fri Sep 17 07:31:18 2010
@@ -53,7 +53,7 @@ require_once 'test/TestContext.php';
 if (defined('PHPUnit_MAIN_METHOD') === false) {
   define('PHPUnit_MAIN_METHOD', 'ShindigAllTests::main');
 }
-
+$_SERVER["HTTP_HOST"] = 'localhost';
 class ShindigAllTests {
 
   public static function main() {