[Pkg-owncloud-commits] [php-sabredav] 17/23: Updated tests

David Prévot taffit at moszumanska.debian.org
Sat Nov 30 15:44:02 UTC 2013


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

taffit pushed a commit to tag version-1.0.12
in repository php-sabredav.

commit 3c6f3af32e5405ebcb3a7f180d5e909f401582d7
Author: Evert Pot <evert at rooftopsolutions.nl>
Date:   Tue Mar 30 13:18:42 2010 +0900

    Updated tests
---
 tests/Sabre/DAV/FSExt/NodesTest.php |  2 +-
 tests/Sabre/DAV/Issue33Test.php     | 65 -------------------------------------
 2 files changed, 1 insertion(+), 66 deletions(-)

diff --git a/tests/Sabre/DAV/FSExt/NodesTest.php b/tests/Sabre/DAV/FSExt/NodesTest.php
index 60a8fd8..a9758bf 100644
--- a/tests/Sabre/DAV/FSExt/NodesTest.php
+++ b/tests/Sabre/DAV/FSExt/NodesTest.php
@@ -209,7 +209,7 @@ class Sabre_DAV_FSExt_NodesTest extends Sabre_DAV_AbstractServer{
             'Allow'          => 'OPTIONS, GET, HEAD, DELETE, TRACE, PROPFIND, MKCOL, PUT, PROPPATCH, COPY, MOVE, REPORT',
             'Accept-Ranges'  => 'bytes',
             'Content-Length' => '0',
-            'X-Sabre-Version' => Sabre_DAV_Version::VERSION . '-' . Sabre_DAV_Version::STABILITY,
+            'X-Sabre-Version' => Sabre_DAV_Version::VERSION,
         ),$this->response->headers);
 
         $this->assertEquals('HTTP/1.1 200 Ok',$this->response->status);
diff --git a/tests/Sabre/DAV/Issue33Test.php b/tests/Sabre/DAV/Issue33Test.php
deleted file mode 100644
index c081e3e..0000000
--- a/tests/Sabre/DAV/Issue33Test.php
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php
-
-require_once 'Sabre/TestUtil.php';
-
-class Sabre_DAV_Issue33Test extends PHPUnit_FrameWork_TestCase {
-
-    function setUp() {
-
-        Sabre_TestUtil::clearTempDir();
-
-    }
-
-    function testCopyMoveInfo() {
-
-        $foo = new Sabre_DAV_SimpleDirectory('foo');
-        $root = new Sabre_DAV_SimpleDirectory('webdav',array($foo));
-
-        $tree = new Sabre_DAV_ObjectTree($root);
-        $server = new Sabre_DAV_Server($tree);
-        $server->setBaseUri('/webdav/');
-
-        $serverVars = array(
-            'REQUEST_URI' => '/webdav/foo',
-            'HTTP_DESTINATION' => 'http://dev2.tribalos.com/webdav/%C3%A0fo%C3%B3',
-            'HTTP_OVERWRITE' => 'F',
-        );
-    
-        $request = new Sabre_HTTP_Request($serverVars);
-
-        $server->httpRequest = $request;
-
-        $info = $server->getCopyAndMoveInfo();
-
-        $this->assertEquals('foo',$info['source']);
-        $this->assertEquals('%C3%A0fo%C3%B3', urlencode($info['destination']));
-        $this->assertFalse($info['destinationExists']);
-        $this->assertFalse($info['destinationNode']);
-
-    }
-
-    function testTreeMove() {
-
-        mkdir(SABRE_TEMPDIR . '/issue33');
-        $dir = new Sabre_DAV_FS_Directory(SABRE_TEMPDIR . '/issue33');
-
-        $dir->createDirectory('foo');
-
-        $tree = new Sabre_DAV_ObjectTree($dir);
-        $tree->move('foo',urldecode('%C3%A0fo%C3%B3'));
-
-        $node = $tree->getNodeForPath(urldecode('%C3%A0fo%C3%B3'));
-        $this->assertEquals(urldecode('%C3%A0fo%C3%B3'),$node->getName()); 
-
-    }
-
-    function testDirName() {
-
-        $dirname1 = 'foo';
-        $dirname2 = urlencode('%C3%A0fo%C3%B3');;
-
-        $this->assertTrue(dirname($dirname1)==dirname($dirname2));
-
-    }
-
-}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabredav.git



More information about the Pkg-owncloud-commits mailing list