- Issue created by @vidorado
- ๐บ๐ธUnited States smustgrave
Should probably get a test showing this problem.
- ๐ช๐ธSpain vidorado Logroรฑo (La Rioja)
@smustgrave I'm not pretty sure about what you mean by getting a test. A Kernel test to prove this would be rather complex, as we would have to mock the
EntityRepository
and make it return a spy-mock of aFile
for some uuid.Besides that, we couldn't directly spy calls to
setPermanent()
as thesetPermanent()
method is really not called twice, thanks to a guard that calls first toisPermanent()
, but the intention to set the file as permanent is there.class FileUsageBase { ... public function add(FileInterface $file, $module, $type, $id, $count = 1) { // Make sure that a used file is permanent. if (!$file->isPermanent()) { $file->setPermanent(); $file->save(); } ... }
I've done an "empirical" test and taken a screenshot so the issue can be checked:
As you can see in the last three items in the call stack:
- First
_editor_record_file_usage()
is called. - Then
DatabaseFileUsageBackend::add()
is called - Finally FileUsageBase::add() is called, where the intention is performed the second time. At this point,
isPermanent()
already returns TRUE, since it was set by_editor_record_file_usage()
.
Is this enough to check the issue?
- First
- ๐ง๐ชBelgium BramDriesen Belgium ๐ง๐ช
Maybe we can just add a test (if it's not existing yet) that when we create a file using the Editor module, it ends up being permanent on the end. Not specifically checking if setPermanent is called twice, but just the end result.
Also sorry for the commit and not applying the code suggestion, totally missed that.
- ๐ง๐ชBelgium BramDriesen Belgium ๐ง๐ช
Ok, I actually think this is already being tested.
https://git.drupalcode.org/issue/drupal-3496195/-/blob/3496195-editor-mo...
- ๐ช๐ธSpain vidorado Logroรฑo (La Rioja)
That makes sense to me, @bramdriesen. The risk I noticed here lies with the file.usage service and the module editor potentially interfering with each other when setting a file to permanent. It feels like a case of duplicated code.
Ultimately, as for the tests, you're right that the final outcome and the critical functionality are what matter most (and youโve confirmed those are already being tested).
So, I suppose that if we remove the code and the test
EditorFileUsageTest::testFileSaveOperations()
doesnโt break, then it should be fine, right? :) - ๐ง๐ชBelgium BramDriesen Belgium ๐ง๐ช
Correct ๐ a core maintainer can probably verify best if the current test is sufficient. But to me it looks to be the case. Latest test run is 100% green as wel after a random test failure.
So I think we can actually set this as RTBC.
- ๐ณ๐ฟNew Zealand quietone
I read the IS, comments and the MR. When removing code, even if it looks wrong, we should check the original issue to see if there is a reason this was done. I have not done that for this issue. The if block being removed was added in #1932652: Add image uploading to WYSIWYGs through editor.module โ .
If this change is accepted there is a comment that would need to be changed. I left a comment in the MR.
Updated the IS to mention that this is relying on existing tests.
- ๐ช๐ธSpain vidorado Logroรฑo (La Rioja)
The subject code in #1932652 was developed on August 2013 (although it was commited later). In that moment, the code setting the file as permanent in
FileUsageBase::add()
already existed. So I don't really know why this was done twice...@quietone, additionally I don't see your comment in the MR 10700 about a comment that has to be changed.
- Status changed to Needs work
23 days ago 5:29pm 13 March 2025 - ๐บ๐ธUnited States smustgrave
So what are the steps to reproduce this bug?
Also as test coverage goes if this is a bug then the current test isn't catching it right.
- ๐ณ๐ฟNew Zealand quietone
I forgot to save my comment and when I reread it I am not sure what I was referring to, so I have deleted it.