PlannrCrm / laravel-fast-refresh-database by SamCarre

Refresh your database faster than you've ever seen before πŸš€
363,647
393
4
Package Data
Maintainer Username: SamCarre
Maintainer Contact: 29132017+Sammyjo20@users.noreply.github.com (Sam CarrΓ©)
Package Create Date: 2022-12-23
Package Last Update: 2024-03-13
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:17:11
Package Statistics
Total Downloads: 363,647
Monthly Downloads: 40,773
Daily Downloads: 1,990
Total Stars: 393
Total Watchers: 4
Total Forks: 15
Total Open Issues: 5

FastRefreshDatabase for Laravel πŸš€

Have you ever come across an issue where the traditional RefreshDatabase trait takes ages to run tests when you have lots of migrations? If so, you may be after this package!

The Problem

Traditionally, the RefreshDatabase trait will run php artisan migrate:fresh every time you run tests. After the first test, it will use transactions to roll back the data and run the next one, so subsequent tests are fast, but the initial test is slow. This can be really annoying if you are used to running a single test, as it could take seconds to run a single test.

The Solution

You don't need to run php artisan migrate:fresh every time you run tests, only when you add a new migration or change an old one. The FastRefreshDatabase trait will create a checksum of your migrations folder as well as your current Git branch. It will then create a checksum file in your application's storage/app directory. When your migrations change or your branch changes, the checksum won't match the cached one and php artisan migrate:fresh is run.

When you don't make any changes, it will continue to use the same database without refreshing, which can speed up the test time by 100x!

Benchmarks

Running a single test, with about 400 migrations.

| Processor | Before | After | |---------------|------------|-------| | Intel Core i5 | 30 seconds | 100 milliseconds | | Apple M1 Pro | 5 seconds | 100 milliseconds |

Installation

Install the package with Composer

composer require plannr/laravel-fast-refresh-database

Adding to your TestCase

Next, just replace the existing RefreshDatabase trait you are using in your TestCase file with the FastRefreshDatabase trait

<?php

namespace Tests;

use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
-use Illuminate\Foundation\Testing\RefreshDatabase;
+use Plannr\Laravel\FastRefreshDatabase\Traits\FastRefreshDatabase;

abstract class TestCase extends BaseTestCase
{
    use CreatesApplication;
-   use RefreshDatabase;
+   use FastRefreshDatabase;
}

Using Pest

Just replace the uses line in your Pest.php file

-use Illuminate\Foundation\Testing\RefreshDatabase;
+use Plannr\Laravel\FastRefreshDatabase\Traits\FastRefreshDatabase;

-uses(RefreshDatabase::class)->in(__DIR__);
+uses(FastRefreshDatabase::class)->in(__DIR__);

Deleting The Migration Checksum

Sometimes you may wish to force-update database migrations, to do this, locate the migrationChecksum.txt file within storage/app.

Customising the checksum file location

You may customise the migration checksum file location and name by extending the trait and overwriting the getMigrationChecksumFile() method.

protected function getMigrationChecksumFile(): string
{
    return storage_path('custom/some-other-file.txt');
}

Known Issues

ParaTest Databases

The trait is unaware of what database or environment your tests are running within. Sometimes when running a parallel test after running individual tests, the migration checksum file may not have been deleted. You may have to manually delete the checksum file before running parallel tests.