Compare commits

..

No commits in common. "c6aecc25e526a520b90fbf6528f9d49a2e568f9e" and "7e5524e0dde2db6e0a852144acc870074ffd85bd" have entirely different histories.

2 changed files with 23 additions and 47 deletions

23
tests/ExampleTest.php Normal file
View file

@ -0,0 +1,23 @@
<?php
namespace Tests;
use Laravel\Lumen\Testing\DatabaseMigrations;
use Laravel\Lumen\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_that_base_endpoint_returns_a_successful_response()
{
$this->get('/');
$this->assertEquals(
$this->app->version(), $this->response->getContent()
);
}
}

View file

@ -1,47 +0,0 @@
<?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()
);
}
}