* @author Vincent Petry * * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ namespace OCA\DAV\Tests\Unit\Connector\Sabre; /** * Copyright (c) 2015 Vincent Petry * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ class CopyEtagPluginTest extends \Test\TestCase { /** * @var \OCA\DAV\Connector\Sabre\CopyEtagHeaderPlugin */ private $plugin; public function setUp() { parent::setUp(); $this->server = new \Sabre\DAV\Server(); $this->plugin = new \OCA\DAV\Connector\Sabre\CopyEtagHeaderPlugin(); $this->plugin->initialize($this->server); } public function testCopyEtag() { $request = new \Sabre\Http\Request(); $response = new \Sabre\Http\Response(); $response->setHeader('Etag', 'abcd'); $this->plugin->afterMethod($request, $response); $this->assertEquals('abcd', $response->getHeader('OC-Etag')); } public function testNoopWhenEmpty() { $request = new \Sabre\Http\Request(); $response = new \Sabre\Http\Response(); $this->plugin->afterMethod($request, $response); $this->assertNull($response->getHeader('OC-Etag')); } }