xref: /webtrees/tests/app/Http/RequestHandlers/UserEditActionTest.php (revision 5a8afed46297e8105e3e5a33ce37e6a8e88bc79d)
14c3563c0SGreg Roach<?php
24c3563c0SGreg Roach
34c3563c0SGreg Roach/**
44c3563c0SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
64c3563c0SGreg Roach * This program is free software: you can redistribute it and/or modify
74c3563c0SGreg Roach * it under the terms of the GNU General Public License as published by
84c3563c0SGreg Roach * the Free Software Foundation, either version 3 of the License, or
94c3563c0SGreg Roach * (at your option) any later version.
104c3563c0SGreg Roach * This program is distributed in the hope that it will be useful,
114c3563c0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
124c3563c0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
134c3563c0SGreg Roach * GNU General Public License for more details.
144c3563c0SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
164c3563c0SGreg Roach */
174c3563c0SGreg Roach
184c3563c0SGreg Roachdeclare(strict_types=1);
194c3563c0SGreg Roach
204c3563c0SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
214c3563c0SGreg Roach
224c3563c0SGreg Roachuse Fig\Http\Message\RequestMethodInterface;
234c3563c0SGreg Roachuse Fig\Http\Message\StatusCodeInterface;
244c3563c0SGreg Roachuse Fisharebest\Webtrees\Services\EmailService;
252c685d76SGreg Roachuse Fisharebest\Webtrees\Services\GedcomImportService;
264c3563c0SGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
274c3563c0SGreg Roachuse Fisharebest\Webtrees\Services\UserService;
284c3563c0SGreg Roachuse Fisharebest\Webtrees\TestCase;
29*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
304c3563c0SGreg Roach
31*202c018bSGreg Roach#[CoversClass(UserEditAction::class)]
324c3563c0SGreg Roachclass UserEditActionTest extends TestCase
334c3563c0SGreg Roach{
34cd94ca66SGreg Roach    protected static bool $uses_database = true;
354c3563c0SGreg Roach
364c3563c0SGreg Roach    public function testHandler(): void
374c3563c0SGreg Roach    {
384c3563c0SGreg Roach        $mail_service = new EmailService();
392c685d76SGreg Roach        $tree_service = new TreeService(new GedcomImportService());
404c3563c0SGreg Roach        $user_service = new UserService();
414c3563c0SGreg Roach        $user         = $user_service->create('user', 'real', 'email', 'pass');
424c3563c0SGreg Roach        $handler      = new UserEditAction($mail_service, $tree_service, $user_service);
434c3563c0SGreg Roach        $request      = self::createRequest(RequestMethodInterface::METHOD_POST, [], [
444c3563c0SGreg Roach            'user_id'        => $user->id(),
454c3563c0SGreg Roach            'username'       => '',
464c3563c0SGreg Roach            'real_name'      => '',
474c3563c0SGreg Roach            'email'          => '',
484c3563c0SGreg Roach            'theme'          => '',
494c3563c0SGreg Roach            'password'       => '',
504c3563c0SGreg Roach            'language'       => '',
514c3563c0SGreg Roach            'timezone'       => '',
524c3563c0SGreg Roach            'comment'        => '',
534c3563c0SGreg Roach            'contact-method' => '',
544c3563c0SGreg Roach            'auto_accept'    => '',
554c3563c0SGreg Roach            'canadmin'       => '',
564c3563c0SGreg Roach            'visible-online' => '',
574c3563c0SGreg Roach            'verified'       => '',
584c3563c0SGreg Roach            'approved'       => '',
594c3563c0SGreg Roach        ])
604c3563c0SGreg Roach            ->withAttribute('user', $user);
614c3563c0SGreg Roach        $response     = $handler->handle($request);
624c3563c0SGreg Roach
634c3563c0SGreg Roach        self::assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
644c3563c0SGreg Roach    }
654c3563c0SGreg Roach}
66