trypost/tests/Feature/Automation/Command/ProcessAutomationDelaysTest.php
Paulo Castellano 4efaa0bf99 Harden automations module: full-post generation, reliable runs, editor UX
Generation
- Generate node now produces the full post (text + AI image + carousel)
  via a shared PostImagePipeline extracted from StreamPostCreation
- Generate config UI mirrors the /posts/create wizard (carousel slide
  count, include-image toggle); drop the decorative format/unsplash keys

Flow correctness
- RSS/HTTP nodes expose named has-items (default) and no-items output
  handles, labeled and colored like the Condition node
- AdvanceAutomationRun records a no_matching_edge terminal instead of
  completing silently; "0 new items" feedback in the test panel
- Manual/test runs no longer persist the production dedup watermark

Run reliability
- Pause truly halts in-flight runs (production only; manual test runs
  always run regardless of automation status)
- ProcessAutomationNode::failed() marks the run failed
- automation:recover-stuck-runs and automation:prune-dry-runs commands

Webhook / HTTP
- Branded User-Agent (config-driven) on outbound webhook + http_request
- Webhook fails on invalid JSON instead of silently sending {}
- HTTP custom headers editor; CodeMirror-based CodeEditor for JSON

Editor UX
- Header Test button only opens the panel; the panel has a Run button
  (saves first) and owns the with-real-data toggle
- Clicking a node closes the test panel and opens its config
- Node cards: max-width + truncate so long URLs don't grow the node
2026-06-10 20:45:01 -03:00

50 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
use App\Enums\Automation\Run\Status;
use App\Jobs\Automation\ProcessAutomationNode;
use App\Models\Automation;
use App\Models\AutomationRun;
use Illuminate\Support\Facades\Queue;
it('wakes runs whose next_action_at is in the past', function () {
Queue::fake();
$automation = Automation::factory()->active()->create([
'nodes' => [
['id' => 't', 'type' => 'trigger', 'position' => ['x' => 0, 'y' => 0], 'data' => []],
['id' => 'g', 'type' => 'generate', 'position' => ['x' => 1, 'y' => 0], 'data' => []],
],
'connections' => [['id' => 'e1', 'source' => 't', 'target' => 'g']],
]);
$run = AutomationRun::factory()->for($automation)->create([
'status' => Status::Waiting,
'current_node_id' => 't',
'next_action_at' => now()->subMinutes(5),
]);
$this->artisan('automation:process-delays')->assertSuccessful();
$fresh = $run->fresh();
expect($fresh->status)->toBe(Status::Running);
expect($fresh->next_action_at)->toBeNull();
Queue::assertPushed(ProcessAutomationNode::class);
});
it('does not wake runs whose next_action_at is in the future', function () {
Queue::fake();
$automation = Automation::factory()->create();
$run = AutomationRun::factory()->for($automation)->create([
'status' => Status::Waiting,
'next_action_at' => now()->addMinutes(5),
]);
$this->artisan('automation:process-delays')->assertSuccessful();
expect($run->fresh()->status)->toBe(Status::Waiting);
Queue::assertNotPushed(ProcessAutomationNode::class);
});