Compare commits

...

2 Commits

Author SHA1 Message Date
aslan 7206bab9c2 fix test update news with picture
Tests & Lint & Deploy to Railway / build (2.7.6, 20.x, 8.3) (push) Successful in 2m35s Details
Tests & Lint & Deploy to Railway / deploy (push) Successful in 32s Details
2024-06-11 10:39:24 +03:00
aslan 18df25c6a8 fix edit picture news 2024-06-11 10:37:39 +03:00
4 changed files with 21 additions and 1 deletions

View File

@ -46,9 +46,11 @@ class NewsController extends Controller
public function update(UpdateNewsRequest $request, News $news)
{
$validated = $request->validated();
$urlPhoto = Storage::put('public', $request->file('photo'));
$news->name = $validated['name'];
$news->text = $validated['text'];
$news->photo = Storage::url($urlPhoto);
$news->save();
return redirect()->route('news.index');
}

View File

@ -16,6 +16,7 @@ class UpdateNewsRequest extends FormRequest
return [
'name' => 'required|string|max:255',
'text' => 'string',
'photo' => 'required|file',
];
}
}

View File

@ -40,6 +40,22 @@
@endif
</div>
<div class="mt-2">
{{ Form::label('photo', 'Путь к фото') }}
<span class="text-danger">*</span>
</div>
<div class="mt-2">
{{ Form::file('photo', ['class' => 'form-control', 'data-bs-toggle' => "tooltip", 'data-bs-title' => __('tooltips.news.photo'), 'required']) }}
<div class="invalid-feedback">
Поле "Путь к фото" обязательно!
</div>
</div>
<div class="text-danger">
@if ($errors->any())
{{ $errors->first('photo') }}
@endif
</div>
<div class="mt-3">
{{ Form::submit('Изменить', ['class' => 'btn btn-primary']) }}
</div>

View File

@ -79,9 +79,10 @@ class NewsTest extends TestCase
public function testUpdateNews(): void
{
$file = UploadedFile::fake()->create('fake.jpg', 100);
$response = $this->actingAs($this->user)
->withSession(['banned' => false])
->patch(route('news.update', $this->news), $this->data);
->patch(route('news.update', $this->news), [...$this->data, 'photo' => $file]);
$response->assertRedirect(route('news.index'));