Auto-formatted by Laravel Pint (default Laravel preset): string concatenation spacing, anonymous class brace placement, constructor body shorthand, import ordering, and assertion indentation.
108 lines
3.6 KiB
PHP
108 lines
3.6 KiB
PHP
<?php
|
|
|
|
use App\Services\ChurchToolsService;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
beforeEach(function () {
|
|
ensureSyncControllerTables();
|
|
});
|
|
|
|
test('sync controller propagiert Fehlermeldung bei Sync-Fehler', function () {
|
|
// Create and authenticate user
|
|
$user = \App\Models\User::factory()->create();
|
|
$this->actingAs($user);
|
|
|
|
// Mock ChurchToolsService to throw exception
|
|
$mockService = Mockery::mock(ChurchToolsService::class);
|
|
$mockService->shouldReceive('sync')
|
|
->once()
|
|
->andThrow(new \Exception('Agenda for event [823] not found.'));
|
|
|
|
app()->instance(ChurchToolsService::class, $mockService);
|
|
|
|
// Call sync endpoint
|
|
$response = $this->post(route('sync'));
|
|
|
|
// Verify error message is propagated
|
|
$response->assertSessionHas('error', 'Sync fehlgeschlagen: Agenda for event [823] not found.');
|
|
});
|
|
|
|
test('sync controller zeigt Erfolgsmeldung bei erfolgreichem Sync', function () {
|
|
// Create and authenticate user
|
|
$user = \App\Models\User::factory()->create();
|
|
$this->actingAs($user);
|
|
|
|
// Mock ChurchToolsService to return success
|
|
$mockService = Mockery::mock(ChurchToolsService::class);
|
|
$mockService->shouldReceive('sync')
|
|
->once()
|
|
->andReturn([
|
|
'services_count' => 1,
|
|
'songs_count' => 2,
|
|
'matched_songs_count' => 1,
|
|
'unmatched_songs_count' => 1,
|
|
'catalog_songs_count' => 5,
|
|
]);
|
|
|
|
app()->instance(ChurchToolsService::class, $mockService);
|
|
|
|
// Call sync endpoint
|
|
$response = $this->post(route('sync'));
|
|
|
|
// Verify success message
|
|
$response->assertSessionHas('success', 'Daten wurden aktualisiert');
|
|
});
|
|
|
|
function ensureSyncControllerTables(): void
|
|
{
|
|
if (! Schema::hasTable('services')) {
|
|
Schema::create('services', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('cts_event_id')->unique();
|
|
$table->string('title');
|
|
$table->date('date')->nullable();
|
|
$table->string('preacher_name')->nullable();
|
|
$table->string('beamer_tech_name')->nullable();
|
|
$table->timestamp('last_synced_at')->nullable();
|
|
$table->json('cts_data')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
if (! Schema::hasTable('songs')) {
|
|
Schema::create('songs', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('title');
|
|
$table->string('ccli_id')->nullable()->unique();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
if (! Schema::hasTable('service_songs')) {
|
|
Schema::create('service_songs', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('service_id')->constrained('services')->cascadeOnDelete();
|
|
$table->foreignId('song_id')->nullable()->constrained('songs')->nullOnDelete();
|
|
$table->string('cts_song_name');
|
|
$table->string('cts_ccli_id')->nullable();
|
|
$table->unsignedInteger('order')->default(0);
|
|
$table->timestamp('matched_at')->nullable();
|
|
$table->timestamps();
|
|
$table->unique(['service_id', 'order']);
|
|
});
|
|
}
|
|
|
|
if (! Schema::hasTable('cts_sync_log')) {
|
|
Schema::create('cts_sync_log', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->timestamp('synced_at')->nullable();
|
|
$table->unsignedInteger('events_count')->default(0);
|
|
$table->unsignedInteger('songs_count')->default(0);
|
|
$table->string('status');
|
|
$table->text('error')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
}
|