aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-03-26 15:04:36 +0100
committerVincent Petry <pvince81@owncloud.com>2015-03-26 15:04:36 +0100
commitdaceb1a9ac3005d0bf1f47ceaf823636b72d0dec (patch)
tree1c48a7c6aaa9dfb52066d83557d7fba70750e239 /tests/lib
parent0d786c381b8d4656e6bbcb5ef2b33e718ea639eb (diff)
downloadnextcloud-server-daceb1a9ac3005d0bf1f47ceaf823636b72d0dec.tar.gz
nextcloud-server-daceb1a9ac3005d0bf1f47ceaf823636b72d0dec.zip
Revert "adding unit tests"
This reverts commit 8d327c94a844804d0e7af057866e552bd5aafd17.
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/connector/sabre/filesplugin.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/lib/connector/sabre/filesplugin.php b/tests/lib/connector/sabre/filesplugin.php
index e10d67a3255..54d43d66dda 100644
--- a/tests/lib/connector/sabre/filesplugin.php
+++ b/tests/lib/connector/sabre/filesplugin.php
@@ -171,35 +171,4 @@ class FilesPlugin extends \Test\TestCase {
$this->assertEquals(200, $result[self::GETETAG_PROPERTYNAME]);
}
- /**
- * @dataProvider providesETagTestData
- * @param $expectedETag
- * @param $isChunked
- * @param $isChunkComplete
- */
- public function testETag($expectedETag, $isChunked, $isChunkComplete) {
- if (!is_null($isChunked)) {
- $_SERVER['HTTP_OC_CHUNKED'] = $isChunked;
- }
- if (!is_null($isChunkComplete)) {
- $_SERVER['X-CHUNKING_COMPLETE'] = $isChunkComplete;
- }
- $node = $this->createTestNode('\OC\Connector\Sabre\File');
-
- $etag = $this->plugin->getETag($node);
-
- $this->assertEquals($expectedETag, $etag);
- }
-
- public function providesETagTestData() {
- return [
- // non-chunked tests
- ['"abc"', null, null],
- ['"abc"', null, false],
-
- // chunked tests
- [null, true, null],
- ['"abc"', true, true],
- ];
- }
}