app->make(EloquentFactory::class); if (isset($attributes['user_id'])) { $attributes['owner_id'] = $attributes['user_id']; } if (! isset($attributes['owner_id'])) { $user = $factory->of(User::class)->create(); $attributes['owner_id'] = $user->id; } if (! isset($attributes['node_id'])) { if (! isset($attributes['location_id'])) { $location = $factory->of(Location::class)->create(); $attributes['location_id'] = $location->id; } $node = $factory->of(Node::class)->create(['location_id' => $attributes['location_id']]); $attributes['node_id'] = $node->id; } if (! isset($attributes['allocation_id'])) { $allocation = $factory->of(Allocation::class)->create(['node_id' => $attributes['node_id']]); $attributes['allocation_id'] = $allocation->id; } if (! isset($attributes['nest_id'])) { $nest = Nest::with('eggs')->first(); $attributes['nest_id'] = $nest->id; if (! isset($attributes['egg_id'])) { $attributes['egg_id'] = $nest->getRelation('eggs')->first()->id; } } if (! isset($attributes['egg_id'])) { $egg = Egg::where('nest_id', $attributes['nest_id'])->first(); $attributes['egg_id'] = $egg->id; } unset($attributes['user_id'], $attributes['location_id']); $server = $factory->of(Server::class)->create($attributes); Allocation::query()->where('id', $server->allocation_id)->update(['server_id' => $server->id]); return Server::with([ 'location', 'user', 'node', 'allocation', 'nest', 'egg', ])->findOrFail($server->id); } /** * Clones a given egg allowing us to make modifications that don't affect other * tests that rely on the egg existing in the correct state. * * @param \Pterodactyl\Models\Egg $egg * @return \Pterodactyl\Models\Egg */ protected function cloneEggAndVariables(Egg $egg): Egg { $model = $egg->replicate(['id', 'uuid']); $model->uuid = Uuid::uuid4()->toString(); $model->push(); /** @var \Pterodactyl\Models\Egg $model */ $model = $model->fresh(); foreach ($egg->variables as $variable) { $variable->replicate(['id', 'egg_id'])->forceFill(['egg_id' => $model->id])->push(); } return $model->fresh(); } }