Add catalog sync trigger, metrics, and shipping label actions to integrations.
Deploy Ladill Woo Manager / deploy (push) Successful in 1m5s

Surfaces actionable controls in Ladill instead of status-only cards: sync catalogs via the plugin proxy, show channel metrics, and link to orders/labels for fulfillment.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-08 11:28:42 +00:00
co-authored by Cursor
parent 1e97f129e9
commit 644c3d9cde
7 changed files with 305 additions and 2 deletions
+99
View File
@@ -66,6 +66,7 @@ class WooIntegrationsTest extends TestCase
'manage_url' => 'https://shop.example.com/wp-admin/admin.php?page=wc-admin&path=/google/start',
'summary' => 'Installed — finish setup in WordPress.',
'details' => [],
'metrics' => ['available' => true, 'published_products' => 42],
],
'pinterest' => [
'state' => 'not_installed',
@@ -170,4 +171,102 @@ class WooIntegrationsTest extends TestCase
->assertRedirect(route('woo.integrations.index'))
->assertSessionHas('success');
}
public function test_catalog_sync_posts_to_plugin_and_refreshes_cache(): void
{
$user = User::factory()->create();
$store = WooStore::create([
'user_id' => $user->id,
'site_url' => 'https://shop.example.com',
'site_name' => 'Example Shop',
'status' => WooStore::STATUS_ACTIVE,
'connected_at' => now(),
'public_id' => 'store-public-id',
]);
Cache::put('woo.integrations.'.$store->id, ['integrations' => []], 300);
Http::fake([
'https://shop.example.com/wp-json/ladill-woo/v1/integrations/google/sync' => Http::response([
'success' => true,
'message' => 'Catalog sync started on your store.',
], 200),
]);
$this->actingAs($user)
->from(route('woo.integrations.index'))
->post(route('woo.integrations.sync', 'google'))
->assertRedirect(route('woo.integrations.index'))
->assertSessionHas('success', 'Catalog sync started on your store.');
$this->assertFalse(Cache::has('woo.integrations.'.$store->id));
Http::assertSent(function ($request) {
return $request->url() === 'https://shop.example.com/wp-json/ladill-woo/v1/integrations/google/sync'
&& $request->method() === 'POST'
&& $request->hasHeader('X-Ladill-Store', 'store-public-id');
});
}
public function test_integrations_page_shows_catalog_metrics(): void
{
$user = User::factory()->create();
WooStore::create([
'user_id' => $user->id,
'site_url' => 'https://shop.example.com',
'site_name' => 'Example Shop',
'status' => WooStore::STATUS_ACTIVE,
'connected_at' => now(),
'public_id' => 'store-public-id',
]);
Http::fake([
'https://shop.example.com/wp-json/ladill-woo/v1/integrations/status' => Http::response([
'integrations' => [
'google' => [
'state' => 'connected',
'installed' => true,
'connected' => true,
'manage_url' => 'https://shop.example.com/wp-admin/admin.php?page=wc-admin&path=/google/start',
'summary' => 'Connected and ready.',
'details' => [],
'metrics' => [
'available' => true,
'published_products' => 42,
'synced_products' => 40,
'pending_products' => 2,
'catalog_sync_status' => 'synced',
],
],
'shipping' => [
'state' => 'connected',
'installed' => true,
'connected' => true,
'manage_url' => 'https://shop.example.com/wp-admin/admin.php?page=wc-settings&tab=shipping',
'summary' => '1 zone, 2 methods',
'details' => [
'woocommerce_shipping' => true,
'labels_ready' => true,
'labels_manage_url' => 'https://shop.example.com/wp-admin/admin.php?page=wc-settings&tab=shipping&section=woocommerce-services',
],
'metrics' => [
'available' => true,
'orders_awaiting_fulfillment' => 5,
'labeled_orders' => 12,
],
],
],
], 200),
]);
$this->actingAs($user)
->get(route('woo.integrations.index'))
->assertOk()
->assertSee('Published products')
->assertSee('42')
->assertSee('Awaiting fulfillment')
->assertSee('Sync catalog')
->assertSee('View orders')
->assertSee('Manage labels');
}
}