LocalTest.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. /**
  3. * ownCloud
  4. *
  5. * @author Robin Appelman
  6. * @copyright 2012 Robin Appelman icewind@owncloud.com
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  10. * License as published by the Free Software Foundation; either
  11. * version 3 of the License, or any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public
  19. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. namespace Test\Files\Storage;
  23. /**
  24. * Class LocalTest
  25. *
  26. * @group DB
  27. *
  28. * @package Test\Files\Storage
  29. */
  30. class LocalTest extends Storage {
  31. /**
  32. * @var string tmpDir
  33. */
  34. private $tmpDir;
  35. protected function setUp() {
  36. parent::setUp();
  37. $this->tmpDir = \OC::$server->getTempManager()->getTemporaryFolder();
  38. $this->instance = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir));
  39. }
  40. protected function tearDown() {
  41. \OC_Helper::rmdirr($this->tmpDir);
  42. parent::tearDown();
  43. }
  44. public function testStableEtag() {
  45. $this->instance->file_put_contents('test.txt', 'foobar');
  46. $etag1 = $this->instance->getETag('test.txt');
  47. $etag2 = $this->instance->getETag('test.txt');
  48. $this->assertEquals($etag1, $etag2);
  49. }
  50. public function testEtagChange() {
  51. $this->instance->file_put_contents('test.txt', 'foo');
  52. $this->instance->touch('test.txt', time() - 2);
  53. $etag1 = $this->instance->getETag('test.txt');
  54. $this->instance->file_put_contents('test.txt', 'bar');
  55. $etag2 = $this->instance->getETag('test.txt');
  56. $this->assertNotEquals($etag1, $etag2);
  57. }
  58. /**
  59. * @expectedException \InvalidArgumentException
  60. */
  61. public function testInvalidArgumentsEmptyArray() {
  62. new \OC\Files\Storage\Local([]);
  63. }
  64. /**
  65. * @expectedException \InvalidArgumentException
  66. */
  67. public function testInvalidArgumentsNoArray() {
  68. new \OC\Files\Storage\Local(null);
  69. }
  70. /**
  71. * @expectedException \OCP\Files\ForbiddenException
  72. */
  73. public function testDisallowSymlinksOutsideDatadir() {
  74. $subDir1 = $this->tmpDir . 'sub1';
  75. $subDir2 = $this->tmpDir . 'sub2';
  76. $sym = $this->tmpDir . 'sub1/sym';
  77. mkdir($subDir1);
  78. mkdir($subDir2);
  79. symlink($subDir2, $sym);
  80. $storage = new \OC\Files\Storage\Local(['datadir' => $subDir1]);
  81. $storage->file_put_contents('sym/foo', 'bar');
  82. }
  83. public function testDisallowSymlinksInsideDatadir() {
  84. $subDir1 = $this->tmpDir . 'sub1';
  85. $subDir2 = $this->tmpDir . 'sub1/sub2';
  86. $sym = $this->tmpDir . 'sub1/sym';
  87. mkdir($subDir1);
  88. mkdir($subDir2);
  89. symlink($subDir2, $sym);
  90. $storage = new \OC\Files\Storage\Local(['datadir' => $subDir1]);
  91. $storage->file_put_contents('sym/foo', 'bar');
  92. $this->addToAssertionCount(1);
  93. }
  94. }