added export/ bulk action export and import feature test for customers..

This commit is contained in:
Cüneyt Şentürk 2021-02-12 13:09:56 +03:00
parent eab1ccc60f
commit 053fb1a7ba

View File

@ -2,9 +2,12 @@
namespace Tests\Feature\Sales; namespace Tests\Feature\Sales;
use App\Exports\Sales\Customers as Export;
use App\Jobs\Common\CreateContact; use App\Jobs\Common\CreateContact;
use App\Models\Auth\User; use App\Models\Auth\User;
use App\Models\Common\Contact; use App\Models\Common\Contact;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\File;
use Tests\Feature\FeatureTestCase; use Tests\Feature\FeatureTestCase;
class CustomersTest extends FeatureTestCase class CustomersTest extends FeatureTestCase
@ -123,6 +126,69 @@ class CustomersTest extends FeatureTestCase
return Contact::factory()->customer()->enabled()->raw(); return Contact::factory()->customer()->enabled()->raw();
} }
public function testItShouldExportCustomers()
{
$count = 5;
Contact::factory()->customer()->count($count)->create();
\Excel::fake();
$this->loginAs()
->get(route('customers.export'))
->assertStatus(200);
\Excel::assertDownloaded(
\Str::filename(trans_choice('general.customers', 2)) . '.xlsx',
function (Export $export) use ($count) {
// Assert that the correct export is downloaded.
return $export->collection()->count() === $count;
}
);
}
public function testItShouldExportSelectedCustomers()
{
$count = 5;
$customers = Contact::factory()->customer()->count($count)->create();
\Excel::fake();
$this->loginAs()
->post(
route('bulk-actions.action', ['group' => 'purchases', 'type' => 'customers']),
['handle' => 'export', 'selected' => [$customers->random()->id]]
)
->assertStatus(200);
\Excel::assertDownloaded(
\Str::filename(trans_choice('general.customers', 2)) . '.xlsx',
function (Export $export) {
return $export->collection()->count() === 1;
}
);
}
public function testItShouldImportCustomers()
{
\Excel::fake();
$this->loginAs()
->post(
route('customers.import'),
[
'import' => UploadedFile::fake()->createWithContent(
'customers.xlsx',
File::get(public_path('files/import/customers.xlsx'))
),
]
)
->assertStatus(200);
\Excel::assertImported('customers.xlsx');
$this->assertFlashLevel('success');
}
public function getRequestWithUser() public function getRequestWithUser()
{ {
$password = $this->faker->password; $password = $this->faker->password;