PageRenderTime 58ms CodeModel.GetById 33ms RepoModel.GetById 1ms app.codeStats 0ms

/apps/files_external/tests/webdav.php

https://github.com/sezuan/core
PHP | 31 lines | 20 code | 5 blank | 6 comment | 2 complexity | 37f393b5358929249f5f91a94c7e3871 MD5 | raw file
Possible License(s): AGPL-3.0, AGPL-1.0, MPL-2.0-no-copyleft-exception
  1. <?php
  2. /**
  3. * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace Test\Files\Storage;
  9. class DAV extends Storage {
  10. private $config;
  11. public function setUp() {
  12. $id = uniqid();
  13. $this->config = include('files_external/tests/config.php');
  14. if ( ! is_array($this->config) or ! isset($this->config['webdav']) or ! $this->config['webdav']['run']) {
  15. $this->markTestSkipped('WebDAV backend not configured');
  16. }
  17. $this->config['webdav']['root'] .= '/' . $id; //make sure we have an new empty folder to work in
  18. $this->instance = new \OC\Files\Storage\DAV($this->config['webdav']);
  19. $this->instance->mkdir('/');
  20. }
  21. public function tearDown() {
  22. if ($this->instance) {
  23. $this->instance->rmdir('/');
  24. }
  25. }
  26. }