70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace Database\Factories\Form\Models;
|
|
|
|
use App\Form\Models\Form;
|
|
use Database\Factories\Traits\FakesMedia;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Tests\Feature\Form\FormtemplateSectionRequest;
|
|
|
|
/**
|
|
* @extends Factory<Form>
|
|
* @method self name(string $name)
|
|
* @method self from(string $from)
|
|
* @method self to(string $to)
|
|
* @method self mailTop(string $content)
|
|
* @method self mailBottom(string $content)
|
|
* @method self excerpt(string $excerpt)
|
|
* @method self description(string $description)
|
|
* @method self registrationFrom(string|null $date)
|
|
* @method self registrationUntil(string|null $date)
|
|
*/
|
|
class FormFactory extends Factory
|
|
{
|
|
use FakesMedia;
|
|
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var class-string<Form>
|
|
*/
|
|
protected $model = Form::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'name' => $this->faker->words(4, true),
|
|
'description' => $this->faker->text(),
|
|
'excerpt' => $this->faker->words(10, true),
|
|
'config' => ['sections' => []],
|
|
'from' => $this->faker->dateTime()->format('Y-m-d H:i:s'),
|
|
'to' => $this->faker->dateTime()->format('Y-m-d H:i:s'),
|
|
'registration_from' => $this->faker->dateTimeBetween('-2 weeks', 'now')->format('Y-m-d H:i:s'),
|
|
'registration_until' => $this->faker->dateTimeBetween('now', '+2 weeks')->format('Y-m-d H:i:s'),
|
|
'mail_top' => $this->faker->text(),
|
|
'mail_bottom' => $this->faker->text(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param array<int, FormtemplateSectionRequest> $sections
|
|
*/
|
|
public function sections(array $sections): self
|
|
{
|
|
return $this->state(['config' => ['sections' => array_map(fn ($section) => $section->create(), $sections)]]);
|
|
}
|
|
|
|
/**
|
|
* @param mixed $parameters
|
|
*/
|
|
public function __call($method, $parameters): self
|
|
{
|
|
return $this->state([str($method)->snake()->toString() => $parameters[0]]);
|
|
}
|
|
}
|