Skip to content

Commit 297df9e

Browse files
committed
if models-count use a scope ( and scope value ) , add the scope (and the scope value) to the metric label
1 parent 1f7111e commit 297df9e

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

src/Commands/ModelsCount.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,18 @@ public function performModelCount(array $models, CarbonPeriod $period, string $e
4545
}
4646

4747
$count = $query->count();
48-
$this->verbose("Counting $model - count: ".$count);
49-
$metrics[] = (object) ['label' => $model, 'count' => $count];
48+
49+
$label = $model;
50+
if ($scope && $scopeValue) {
51+
$label .= '::'.$scope.'('.$scopeValue.')';
52+
} else if ($scope) {
53+
$label .= '::'.$scope;
54+
}
55+
56+
57+
58+
$this->verbose("Counting $label - count: ".$count);
59+
$metrics[] = (object) ['label' => $label, 'count' => $count];
5060

5161
}
5262

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
use App\Testing\Models\Bill;
4+
use App\Testing\Models\User;
5+
use Illuminate\Console\Command;
6+
use Illuminate\Support\Facades\Http;
7+
use Illuminate\Support\Facades\Artisan;
8+
use Symfony\Component\Console\Output\BufferedOutput;
9+
10+
it('ensure models-count is callable', function () {
11+
// Http::fake([
12+
// config('eloquentize.api_url').'/api/metrics/models' => Http::response(['status' => 'ok'], 200),
13+
// ]);
14+
15+
// $this->artisan('eloquentize:models-count --modelsPath=Testing/Models -v --scope=PriceOver --scopeValue=1 ')
16+
// ->assertExitCode(Command::SUCCESS);
17+
18+
$this->output = new BufferedOutput();
19+
Artisan::call('eloquentize:models-count --modelsPath=Testing/Models -v --models=Bill --scope=PriceOver --scopeValue=1 -v',[], $this->output);
20+
$outputContent = $this->output->fetch();
21+
echo "out :".$outputContent;
22+
})->with([
23+
fn () => Bill::factory()->create(['ref' => 'BILL_0000001', 'price' => 1000]),
24+
fn () => Bill::factory()->create(['ref' => 'BILL_0000002', 'price' => 500]),
25+
])->only();

0 commit comments

Comments
 (0)