|
|
|
@ -33,15 +33,15 @@ class CrudApiMakeCommandTest extends TestCase |
|
|
|
} |
|
|
|
|
|
|
|
/** @test */ |
|
|
|
public function it_cannot_generate_crud_files_if_model_exists() |
|
|
|
public function it_generate_api_crud_files_even_if_model_exists() |
|
|
|
{ |
|
|
|
$this->artisan('make:model', ['name' => $this->model_name, '--no-interaction' => true]); |
|
|
|
$this->artisan('make:crud', ['name' => $this->model_name, '--no-interaction' => true]); |
|
|
|
$this->artisan('make:crud-api', ['name' => $this->model_name, '--no-interaction' => true]); |
|
|
|
|
|
|
|
$this->assertContains("{$this->model_name} model already exists.", app(Kernel::class)->output()); |
|
|
|
$this->assertContains("We will use existing {$this->model_name} model.", app(Kernel::class)->output()); |
|
|
|
|
|
|
|
$this->assertFileExists(app_path($this->model_name.'.php')); |
|
|
|
$this->assertFileNotExists(app_path("Http/Controllers/Api/{$this->plural_model_name}Controller.php")); |
|
|
|
$this->assertFileExists(app_path("Http/Controllers/Api/{$this->plural_model_name}Controller.php")); |
|
|
|
|
|
|
|
$migrationFilePath = database_path('migrations/'.date('Y_m_d_His').'_create_'.$this->table_name.'_table.php'); |
|
|
|
$this->assertFileNotExists($migrationFilePath); |
|
|
|
@ -53,7 +53,7 @@ class CrudApiMakeCommandTest extends TestCase |
|
|
|
$this->assertFileNotExists(app_path("Policies/{$this->model_name}Policy.php")); |
|
|
|
$this->assertFileNotExists(database_path("factories/{$this->model_name}Factory.php")); |
|
|
|
$this->assertFileNotExists(base_path("tests/Unit/Models/{$this->model_name}Test.php")); |
|
|
|
$this->assertFileNotExists(base_path("tests/Feature/Api/Manage{$this->plural_model_name}Test.php")); |
|
|
|
$this->assertFileExists(base_path("tests/Feature/Api/Manage{$this->plural_model_name}Test.php")); |
|
|
|
} |
|
|
|
|
|
|
|
/** @test */ |
|
|
|
@ -62,10 +62,10 @@ class CrudApiMakeCommandTest extends TestCase |
|
|
|
$this->artisan('make:model', ['name' => 'Entities/Projects/Problem', '--no-interaction' => true]); |
|
|
|
$this->artisan('make:crud-api', ['name' => 'Entities/Projects/Problem', '--no-interaction' => true]); |
|
|
|
|
|
|
|
$this->assertContains("Problem model already exists.", app(Kernel::class)->output()); |
|
|
|
$this->assertContains("We will use existing Problem model.", app(Kernel::class)->output()); |
|
|
|
|
|
|
|
$this->assertFileExists(app_path('Entities/Projects/Problem.php')); |
|
|
|
$this->assertFileNotExists(app_path("Http/Controllers/Api/ProblemsController.php")); |
|
|
|
$this->assertFileExists(app_path("Http/Controllers/Api/ProblemsController.php")); |
|
|
|
|
|
|
|
$migrationFilePath = database_path('migrations/'.date('Y_m_d_His').'_create_problems_table.php'); |
|
|
|
$this->assertFileNotExists($migrationFilePath); |
|
|
|
@ -79,7 +79,7 @@ class CrudApiMakeCommandTest extends TestCase |
|
|
|
$this->assertFileNotExists(app_path("Policies/ProblemPolicy.php")); |
|
|
|
$this->assertFileNotExists(database_path("factories/ProblemFactory.php")); |
|
|
|
$this->assertFileNotExists(base_path("tests/Unit/Models/ProblemTest.php")); |
|
|
|
$this->assertFileNotExists(base_path("tests/Feature/Api/ManageProblemsTest.php")); |
|
|
|
$this->assertFileExists(base_path("tests/Feature/Api/ManageProblemsTest.php")); |
|
|
|
|
|
|
|
$this->removeFileOrDir(app_path('Entities/Projects')); |
|
|
|
$this->removeFileOrDir(resource_path('views/problems')); |
|
|
|
|