mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-14 03:19:51 +00:00
1a603a10ed
Replace all uses of `forceFill`, `forceCreate`, and `forceFill` with their non-force equivalents across models, actions, controllers, and Livewire components. Add explicit `$fillable` arrays to all affected Eloquent models to enforce mass assignment protection. Add ModelFillableCreationTest and ModelFillableRegressionTest to verify that model creation respects fillable constraints and prevent regressions.
78 lines
3.0 KiB
PHP
78 lines
3.0 KiB
PHP
<?php
|
|
|
|
use App\Livewire\Project\Database\Dragonfly\General as DragonflyGeneral;
|
|
use App\Livewire\Project\Database\Keydb\General as KeydbGeneral;
|
|
use App\Livewire\Project\Database\Mariadb\General as MariadbGeneral;
|
|
use App\Livewire\Project\Database\Mongodb\General as MongodbGeneral;
|
|
use App\Livewire\Project\Database\Mysql\General as MysqlGeneral;
|
|
use App\Livewire\Project\Database\Postgresql\General as PostgresqlGeneral;
|
|
use App\Livewire\Project\Database\Redis\General as RedisGeneral;
|
|
use App\Models\Environment;
|
|
use App\Models\Project;
|
|
use App\Models\Server;
|
|
use App\Models\StandaloneDocker;
|
|
use App\Models\StandaloneMysql;
|
|
use App\Models\Team;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
beforeEach(function () {
|
|
$this->team = Team::factory()->create();
|
|
$this->user = User::factory()->create();
|
|
$this->team->members()->attach($this->user->id, ['role' => 'owner']);
|
|
|
|
$this->actingAs($this->user);
|
|
session(['currentTeam' => $this->team]);
|
|
});
|
|
|
|
dataset('ssl-aware-database-general-components', [
|
|
MysqlGeneral::class,
|
|
MariadbGeneral::class,
|
|
MongodbGeneral::class,
|
|
RedisGeneral::class,
|
|
PostgresqlGeneral::class,
|
|
KeydbGeneral::class,
|
|
DragonflyGeneral::class,
|
|
]);
|
|
|
|
it('maps database status broadcasts to refresh for ssl-aware database general components', function (string $componentClass) {
|
|
$component = app($componentClass);
|
|
$listeners = $component->getListeners();
|
|
|
|
expect($listeners["echo-private:user.{$this->user->id},DatabaseStatusChanged"])->toBe('refresh')
|
|
->and($listeners["echo-private:team.{$this->team->id},ServiceChecked"])->toBe('refresh');
|
|
})->with('ssl-aware-database-general-components');
|
|
|
|
it('reloads the mysql database model when refreshing so ssl controls follow the latest status', function () {
|
|
$server = Server::factory()->create(['team_id' => $this->team->id]);
|
|
$destination = StandaloneDocker::where('server_id', $server->id)->first();
|
|
$project = Project::factory()->create(['team_id' => $this->team->id]);
|
|
$environment = Environment::factory()->create(['project_id' => $project->id]);
|
|
|
|
$database = StandaloneMysql::create([
|
|
'name' => 'test-mysql',
|
|
'image' => 'mysql:8',
|
|
'mysql_root_password' => 'password',
|
|
'mysql_user' => 'coolify',
|
|
'mysql_password' => 'password',
|
|
'mysql_database' => 'coolify',
|
|
'status' => 'exited:unhealthy',
|
|
'enable_ssl' => true,
|
|
'is_log_drain_enabled' => false,
|
|
'environment_id' => $environment->id,
|
|
'destination_id' => $destination->id,
|
|
'destination_type' => $destination->getMorphClass(),
|
|
]);
|
|
|
|
$component = Livewire::test(MysqlGeneral::class, ['database' => $database])
|
|
->assertDontSee('Database should be stopped to change this settings.');
|
|
|
|
$database->fill(['status' => 'running:healthy'])->save();
|
|
|
|
$component->call('refresh')
|
|
->assertSee('Database should be stopped to change this settings.');
|
|
});
|