refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
47
tests/Helpers/CommandCallerFake.php
Normal file
47
tests/Helpers/CommandCallerFake.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Helpers;
|
||||
|
||||
use PHPUnit\Framework\Assert;
|
||||
use App\Console\Commands\Helpers\CommandCallerContract;
|
||||
|
||||
class CommandCallerFake implements CommandCallerContract
|
||||
{
|
||||
/**
|
||||
* @var \Illuminate\Support\Collection
|
||||
*/
|
||||
public $buffer;
|
||||
|
||||
/**
|
||||
* Create a new CommandCallerTester.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->buffer = collect([]);
|
||||
}
|
||||
|
||||
public function exec($command, $message, $commandline): void
|
||||
{
|
||||
$this->buffer->push(['message' => $message, 'command' => $commandline]);
|
||||
}
|
||||
|
||||
public function artisan($command, $message, $commandline, array $arguments = []): void
|
||||
{
|
||||
$info = '';
|
||||
foreach ($arguments as $key => $value) {
|
||||
$info = $info.' '.$key.'='.$value;
|
||||
}
|
||||
$this->buffer->push(['message' =>$message, 'command' => 'php artisan '.$commandline.$info]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert the command identified by a message has been launched.
|
||||
*/
|
||||
public function assertContainsMessage(string $message): void
|
||||
{
|
||||
$messages = $this->buffer->map(function ($line) {
|
||||
return $line['message'];
|
||||
});
|
||||
Assert::assertContains($message, $messages);
|
||||
}
|
||||
}
|
||||
362
tests/Helpers/DavTester.php
Normal file
362
tests/Helpers/DavTester.php
Normal file
@@ -0,0 +1,362 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Helpers;
|
||||
|
||||
use Tests\TestCase;
|
||||
use Illuminate\Http\Client\Request;
|
||||
use Illuminate\Http\Client\Response;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use GuzzleHttp\Promise\PromiseInterface;
|
||||
use App\Services\DavClient\Utils\Dav\DavClient;
|
||||
|
||||
class DavTester extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $responses;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $current;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $baseUri;
|
||||
|
||||
public $container;
|
||||
|
||||
public function __construct(string $baseUri = 'https://test')
|
||||
{
|
||||
$this->current = 0;
|
||||
$this->baseUri = $baseUri;
|
||||
$this->responses = [];
|
||||
}
|
||||
|
||||
public function client(): DavClient
|
||||
{
|
||||
return (new DavClient())->setBaseUri($this->baseUri);
|
||||
}
|
||||
|
||||
public function fake()
|
||||
{
|
||||
Http::fake(function ($request) {
|
||||
return $this->responses[$this->current++]['response'];
|
||||
});
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function assert()
|
||||
{
|
||||
Http::assertSentInOrder(array_map(function ($data) {
|
||||
return function (Request $request, Response $response) use ($data) {
|
||||
$srequest = $request->method().' '.$request->url();
|
||||
$this->assertEquals($data['method'], $request->method(), "method for request $srequest differs");
|
||||
$this->assertEquals($data['uri'], $request->url(), "uri for request $srequest differs");
|
||||
if (isset($data['body'])) {
|
||||
$this->assertEquals($data['body'], $request->body(), "body for request $srequest differs");
|
||||
}
|
||||
if (isset($data['headers'])) {
|
||||
foreach ($data['headers'] as $key => $value) {
|
||||
$this->assertArrayHasKey($key, $request->headers(), "header $key for request $srequest is missing");
|
||||
$this->assertEquals($value, $request->header($key), "header $key for request $srequest differs");
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
}, $this->responses));
|
||||
|
||||
// $this->assertCount(count($this->responses), $this->container, 'the number of response do not match the number of requests');
|
||||
// foreach ($this->container as $index => $request) {
|
||||
// $srequest = $request->getMethod().' '.(string) $request->getUri();
|
||||
// $this->assertEquals($this->responses[$index]['method'], $request->getMethod(), "method for request $srequest differs");
|
||||
// $this->assertEquals($this->responses[$index]['uri'], (string) $request->getUri(), "uri for request $srequest differs");
|
||||
// if (isset($this->responses[$index]['body'])) {
|
||||
// $this->assertEquals($this->responses[$index]['body'], (string) $request->getBody(), "body for request $srequest differs");
|
||||
// }
|
||||
// if (isset($this->responses[$index]['headers'])) {
|
||||
// foreach ($this->responses[$index]['headers'] as $key => $value) {
|
||||
// $this->assertArrayHasKey($key, $request->getHeaders(), "header $key for request $srequest is missing");
|
||||
// $this->assertEquals($value, $request->getHeaderLine($key), "header $key for request $srequest differs");
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
public function addressBookBaseUri()
|
||||
{
|
||||
return $this->userPrincipal('https://test')
|
||||
->optionsOk('https://test/dav/principals/user@test.com/')
|
||||
->userPrincipal('https://test/dav/principals/user@test.com/')
|
||||
->addressbookHome()
|
||||
->resourceTypeAddressBook()
|
||||
->optionsOk('https://test/dav/addressbooks/user@test.com/contacts/');
|
||||
}
|
||||
|
||||
public function capabilities()
|
||||
{
|
||||
return $this->supportedReportSet()
|
||||
->supportedAddressData();
|
||||
}
|
||||
|
||||
public function addResponse(string $uri, PromiseInterface $response, string $body = null, string $method = 'PROPFIND', array $headers = null)
|
||||
{
|
||||
$this->responses[] = [
|
||||
'uri' => $uri,
|
||||
'response' => $response,
|
||||
'method' => $method,
|
||||
'body' => $body,
|
||||
'headers' => $headers,
|
||||
];
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function serviceUrl()
|
||||
{
|
||||
return $this->addResponse('https://test/.well-known/carddav', Http::response(null, 301, ['Location' => $this->baseUri.'/dav/']), null, 'GET');
|
||||
}
|
||||
|
||||
public function nonStandardServiceUrl()
|
||||
{
|
||||
return $this->addResponse('https://test/.well-known/carddav', Http::response(null, 301, ['Location' => '/dav/']), null, 'PROPFIND');
|
||||
}
|
||||
|
||||
public function optionsOk(string $url = 'https://test/dav/')
|
||||
{
|
||||
return $this->addResponse($url, Http::response(null, 200, ['Dav' => '1, 3, addressbook']), null, 'OPTIONS');
|
||||
}
|
||||
|
||||
public function optionsFail()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/', Http::response(null, 200, ['Dav' => 'bad']), null, 'OPTIONS');
|
||||
}
|
||||
|
||||
public function userPrincipal(string $url = 'https://test/dav/')
|
||||
{
|
||||
return $this->addResponse($url, Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<d:current-user-principal>'.
|
||||
'<d:href>/dav/principals/user@test.com/</d:href>'.
|
||||
'</d:current-user-principal>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function userPrincipalEmpty()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<d:current-user-principal/>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function addressbookHome()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/principals/user@test.com/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/principals/user@test.com/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<card:addressbook-home-set>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/</d:href>'.
|
||||
'</card:addressbook-home-set>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function addressbookEmpty()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/principals/user@test.com/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/principals/user@test.com/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<card:addressbook-home-set/>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function resourceTypeAddressBook()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/contacts/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<d:resourcetype>'.
|
||||
'<card:addressbook/>'.
|
||||
'</d:resourcetype>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function resourceTypeHomeOnly()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<d:resourcetype/>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function resourceTypeEmpty()
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/contacts/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<d:resourcetype/>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function supportedReportSet(array $reportSet = ['card:addressbook-multiget', 'card:addressbook-query', 'd:sync-collection'])
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/contacts/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<d:supported-report-set>'.
|
||||
implode('', array_map(function ($report) {
|
||||
return "<d:supported-report><d:report><$report/></d:report></d:supported-report>";
|
||||
}, $reportSet)).
|
||||
'</d:supported-report-set>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function supportedAddressData(array $list = ['card:address-data-type content-type="text/vcard" version="4.0"'])
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/contacts/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
'<card:supported-address-data>'.
|
||||
implode('', array_map(function ($item) {
|
||||
return "<$item/>";
|
||||
}, $list)).
|
||||
'</card:supported-address-data>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function displayName(string $name = 'Test')
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/contacts/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
"<d:displayname>$name</d:displayname>".
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function getSynctoken(string $synctoken = '"test"')
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>/dav/addressbooks/user@test.com/contacts/</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
"<d:sync-token>$synctoken</d:sync-token>".
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'));
|
||||
}
|
||||
|
||||
public function getSyncCollection(string $synctoken = 'token', string $etag = '"etag"')
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>https://test/dav/addressbooks/user@test.com/contacts/uuid</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
"<d:getetag>$etag</d:getetag>".
|
||||
'<d:getcontenttype>text/vcard</d:getcontenttype>'.
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
"<d:sync-token>$synctoken</d:sync-token>".
|
||||
'</d:multistatus>'), null, 'REPORT');
|
||||
}
|
||||
|
||||
public function addressMultiGet($etag, $card, $url)
|
||||
{
|
||||
return $this->addResponse('https://test/dav/addressbooks/user@test.com/contacts/', Http::response($this->multistatusHeader().
|
||||
'<d:response>'.
|
||||
'<d:href>https://test/dav/addressbooks/user@test.com/contacts/uuid</d:href>'.
|
||||
'<d:propstat>'.
|
||||
'<d:prop>'.
|
||||
"<d:getetag>$etag</d:getetag>".
|
||||
"<card:address-data>$card</card:address-data>".
|
||||
'</d:prop>'.
|
||||
'<d:status>HTTP/1.1 200 OK</d:status>'.
|
||||
'</d:propstat>'.
|
||||
'</d:response>'.
|
||||
'</d:multistatus>'), '<?xml version="1.0" encoding="UTF-8"?>'."\n".
|
||||
'<card:addressbook-multiget xmlns:card="urn:ietf:params:xml:ns:carddav" xmlns:d="DAV:">'.
|
||||
'<d:prop>'.
|
||||
'<d:getetag/>'.
|
||||
'<card:address-data content-type="text/vcard" version="4.0"/>'.
|
||||
'</d:prop>'.
|
||||
"<d:href>$url</d:href>".
|
||||
"</card:addressbook-multiget>\n", 'REPORT');
|
||||
}
|
||||
|
||||
public static function multistatusHeader()
|
||||
{
|
||||
return '<d:multistatus xmlns:d="DAV:" xmlns:card="urn:ietf:params:xml:ns:carddav">';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user