framework/tests/_support/ApiHelper.php

36 lines
803 B
PHP
Raw Normal View History

2015-01-19 18:16:14 +08:00
<?php
namespace Codeception\Module;
2015-01-22 12:14:33 +08:00
use Laracasts\TestDummy\Factory;
use Auth;
use DB;
2015-01-19 18:16:14 +08:00
class ApiHelper extends \Codeception\Module
{
2015-01-22 12:14:33 +08:00
public function haveAnAccount($data = [])
{
return Factory::create('Flarum\Core\Users\User', $data);
}
2015-01-19 18:16:14 +08:00
2015-01-23 12:54:38 +08:00
public function login($identification, $password)
2015-01-22 12:14:33 +08:00
{
2015-01-23 12:54:38 +08:00
$this->getModule('REST')->sendPOST('/api/auth/login', ['identification' => $identification, 'password' => $password]);
2015-01-22 12:14:33 +08:00
$response = json_decode($this->getModule('REST')->grabResponse(), true);
if ($response && is_array($response) && isset($response['token'])) {
return $response['token'];
}
return false;
}
public function amAuthenticated()
{
$user = $this->haveAnAccount();
$user->groups()->attach(3); // Add member group
Auth::onceUsingId($user->id);
return $user;
}
2015-01-19 18:16:14 +08:00
}