First Local Commit - After Clean up.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
77
tests/_support/Controllers/Popcorn.php
Normal file
77
tests/_support/Controllers/Popcorn.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
namespace Tests\Support\Controllers;
|
||||
|
||||
use CodeIgniter\API\ResponseTrait;
|
||||
use CodeIgniter\Controller;
|
||||
use CodeIgniter\HTTP\Exceptions\HTTPException;
|
||||
|
||||
/**
|
||||
* This is a testing only controller, intended to blow up in multiple
|
||||
* ways to make sure we catch them.
|
||||
*/
|
||||
class Popcorn extends Controller
|
||||
{
|
||||
|
||||
use ResponseTrait;
|
||||
|
||||
public function index()
|
||||
{
|
||||
return 'Hi there';
|
||||
}
|
||||
|
||||
public function pop()
|
||||
{
|
||||
$this->respond('Oops', 567, 'Surprise');
|
||||
}
|
||||
|
||||
public function popper()
|
||||
{
|
||||
throw new \RuntimeException('Surprise', 500);
|
||||
}
|
||||
|
||||
public function weasel()
|
||||
{
|
||||
$this->respond('', 200);
|
||||
}
|
||||
|
||||
public function oops()
|
||||
{
|
||||
$this->failUnauthorized();
|
||||
}
|
||||
|
||||
public function goaway()
|
||||
{
|
||||
return redirect()->to('/');
|
||||
}
|
||||
|
||||
// @see https://github.com/codeigniter4/CodeIgniter4/issues/1834
|
||||
public function index3()
|
||||
{
|
||||
$response = $this->response->setJSON([
|
||||
'lang' => $this->request->getLocale(),
|
||||
]);
|
||||
|
||||
// echo var_dump($this->response->getBody());
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function canyon()
|
||||
{
|
||||
echo 'Hello-o-o';
|
||||
}
|
||||
|
||||
public function cat()
|
||||
{
|
||||
}
|
||||
|
||||
public function json()
|
||||
{
|
||||
$this->responsd(['answer' => 42]);
|
||||
}
|
||||
|
||||
public function xml()
|
||||
{
|
||||
$this->respond('<my><pet>cat</pet></my>');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user