2023-10-12 10:29:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Tests\TestCase;
|
|
|
|
use Laravel\Lumen\Testing\DatabaseMigrations;
|
|
|
|
use Laravel\Lumen\Testing\DatabaseTransactions;
|
|
|
|
|
|
|
|
class PagesTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A basic test example.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function test_homepage_is_reacheble()
|
|
|
|
{
|
|
|
|
$res = $this->get('/');
|
|
|
|
|
|
|
|
$res->assertResponseOk();
|
|
|
|
$res->assertStringContainsString(
|
|
|
|
'organization', $this->response->getContent()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_backend_is_not_reachable_for_guests_and_redirect_to_login()
|
|
|
|
{
|
|
|
|
$home = $this->get('/');
|
|
|
|
$res = $this->get('/backend');
|
|
|
|
|
|
|
|
$res->assertResponseStatus(302);
|
|
|
|
$res->assertEquals(
|
|
|
|
$home->response->getContent(), $this->response->getContent()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_backend_is_reachable_for_logged_in_users()
|
|
|
|
{
|
|
|
|
$res = $this->post('/backend', array(
|
|
|
|
'organization' => 'GruppoCO',
|
|
|
|
'password' => getenv('APP_PASSWORD')
|
|
|
|
));
|
|
|
|
|
|
|
|
$res->assertResponseOk();
|
|
|
|
$res->assertStringContainsString(
|
|
|
|
__('File exporter'), $this->response->getContent()
|
|
|
|
);
|
|
|
|
}
|
2023-10-12 16:38:13 +02:00
|
|
|
|
|
|
|
public function test_export_endpoint_is_not_reachable_for_guests_and_redirect_to_login()
|
|
|
|
{
|
|
|
|
$home = $this->get('/');
|
|
|
|
$res = $this->get('/export');
|
|
|
|
|
|
|
|
$res->assertResponseStatus(302);
|
|
|
|
$res->assertEquals(
|
|
|
|
$home->response->getContent(), $this->response->getContent()
|
|
|
|
);
|
|
|
|
}
|
2023-10-12 10:29:12 +02:00
|
|
|
}
|