75fbd60a54
and add splits test
78 lines
2.1 KiB
PHP
78 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Portfolio;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Transaction>
|
|
*/
|
|
class TransactionFactory extends Factory
|
|
{
|
|
protected static ?string $transaction_type;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
$transaction_type = $this->faker->randomElement(['BUY', 'SELL']);
|
|
|
|
return [
|
|
'symbol' => $this->faker->randomElement(['AAPL', 'GOOG', 'AMZN']),
|
|
'transaction_type' => $transaction_type,
|
|
'portfolio_id' => Portfolio::factory()->create()->id,
|
|
'date' => $this->faker->date('Y-m-d'),
|
|
'quantity' => 1,
|
|
'cost_basis' => $transaction_type == 'BUY'
|
|
? $this->faker->randomFloat(2, 10, 500)
|
|
: null,
|
|
'sale_price' => $transaction_type == 'SELL'
|
|
? $this->faker->randomFloat(2, 10, 500)
|
|
: null,
|
|
];
|
|
}
|
|
|
|
public function yearsAgo(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'date' => $this->faker->date('Y-m-d', '-3 years'),
|
|
]);
|
|
}
|
|
|
|
public function symbol($symbol): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'symbol' => $symbol,
|
|
]);
|
|
}
|
|
|
|
public function portfolio($portfolio_id): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'portfolio_id' => $portfolio_id,
|
|
]);
|
|
}
|
|
|
|
public function buy(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'transaction_type' => 'BUY',
|
|
'cost_basis' => $this->faker->randomFloat(2, 10, 500),
|
|
'sale_price' => null
|
|
]);
|
|
}
|
|
|
|
public function sell(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'transaction_type' => 'SELL',
|
|
'sale_price' => $this->faker->randomFloat(2, 10, 500),
|
|
'cost_basis' => null,
|
|
]);
|
|
}
|
|
}
|