You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PublisherTest.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. /**
  3. *
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  8. * @author Thomas Citharel <nextcloud@tcit.fr>
  9. *
  10. * @license GNU AGPL version 3 or any later version
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License as
  14. * published by the Free Software Foundation, either version 3 of the
  15. * License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. *
  25. */
  26. namespace OCA\DAV\Tests\unit\CalDAV\Publishing;
  27. use OCA\DAV\CalDAV\Publishing\Xml\Publisher;
  28. use Sabre\Xml\Writer;
  29. use Test\TestCase;
  30. class PublisherTest extends TestCase {
  31. const NS_CALENDARSERVER = 'http://calendarserver.org/ns/';
  32. public function testSerializePublished() {
  33. $publish = new Publisher('urltopublish', true);
  34. $xml = $this->write([
  35. '{' . self::NS_CALENDARSERVER . '}publish-url' => $publish,
  36. ]);
  37. $this->assertEquals('urltopublish', $publish->getValue());
  38. $this->assertXmlStringEqualsXmlString(
  39. '<?xml version="1.0"?>
  40. <x1:publish-url xmlns:d="DAV:" xmlns:x1="' . self::NS_CALENDARSERVER . '">
  41. <d:href>urltopublish</d:href>
  42. </x1:publish-url>', $xml);
  43. }
  44. public function testSerializeNotPublished() {
  45. $publish = new Publisher('urltopublish', false);
  46. $xml = $this->write([
  47. '{' . self::NS_CALENDARSERVER . '}pre-publish-url' => $publish,
  48. ]);
  49. $this->assertEquals('urltopublish', $publish->getValue());
  50. $this->assertXmlStringEqualsXmlString(
  51. '<?xml version="1.0"?>
  52. <x1:pre-publish-url xmlns:d="DAV:" xmlns:x1="' . self::NS_CALENDARSERVER . '">urltopublish</x1:pre-publish-url>', $xml);
  53. }
  54. protected $elementMap = [];
  55. protected $namespaceMap = ['DAV:' => 'd'];
  56. protected $contextUri = '/';
  57. private function write($input) {
  58. $writer = new Writer();
  59. $writer->contextUri = $this->contextUri;
  60. $writer->namespaceMap = $this->namespaceMap;
  61. $writer->openMemory();
  62. $writer->setIndent(true);
  63. $writer->write($input);
  64. return $writer->outputMemory();
  65. }
  66. }