nextcloud-gallery/tests/_support/Step/Api/Anonymous.php

28 lines
550 B
PHP

<?php
/**
* Nextcloud - Gallery
*
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Olivier Paroz <galleryapps@oparoz.com>
*
* @copyright Olivier Paroz 2017
*/
namespace Step\Api;
class Anonymous extends \ApiTester {
public function connectToTheApi($apiUrl, $description) {
$I = $this;
$I->am('an app');
$I->wantTo('connect to ' . $description . ' without credentials');
$I->sendGET($apiUrl);
$I->seeResponseCodeIs(401);
$I->seeResponseIsJson();
}
}