-
Notifications
You must be signed in to change notification settings - Fork 266
PHPLIB-1568 Add GridFS\Bucket::deleteByName(filename)
and renameByName(filename, newFilename)
#1504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,7 @@ public function deleteChunksByFilesId(mixed $id): void | |
/** | ||
* Delete all GridFS files and chunks for a given filename. | ||
*/ | ||
public function deleteFileAndChunksByFilename(string $filename): ?int | ||
public function deleteFileAndChunksByFilename(string $filename): int | ||
|
||
{ | ||
/** @var iterable<array{_id: mixed}> $files */ | ||
$files = $this->findFiles(['filename' => $filename], [ | ||
|
@@ -150,9 +150,6 @@ public function findChunksByFileId(mixed $id, int $fromChunk = 0) | |
*/ | ||
public function findFileByFilenameAndRevision(string $filename, int $revision): ?object | ||
{ | ||
$filename = $filename; | ||
$revision = $revision; | ||
Comment on lines
-153
to
-154
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought I had already removed that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Noted that this remained when 1b29a6d introduced type hints on the method. |
||
|
||
if ($revision < 0) { | ||
$skip = abs($revision) - 1; | ||
$sortOrder = -1; | ||
|
@@ -266,7 +263,7 @@ public function insertFile(array|object $file): void | |
/** | ||
* Updates the filename field in the file document for all the files with a given filename. | ||
*/ | ||
public function updateFilenameForFilename(string $filename, string $newFilename): ?int | ||
public function updateFilenameForFilename(string $filename, string $newFilename): int | ||
|
||
{ | ||
return $this->filesCollection->updateMany( | ||
['filename' => $filename], | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,6 +160,34 @@ public function testDeleteStillRemovesChunksIfFileDoesNotExist($input, $expected | |
$this->assertCollectionCount($this->chunksCollection, 0); | ||
} | ||
|
||
public function testDeleteByName(): void | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this Pr block on spec changes for DRIVERS-2807 and DRIVERS-2808? Also, will the PR(s) for those tickets include spec tests to be synced? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spec tests added in mongodb/specifications#1702 |
||
{ | ||
$this->bucket->uploadFromStream('filename', self::createStream('foobar1')); | ||
$this->bucket->uploadFromStream('filename', self::createStream('foobar2')); | ||
$this->bucket->uploadFromStream('filename', self::createStream('foobar3')); | ||
|
||
$this->bucket->uploadFromStream('other', self::createStream('foobar')); | ||
|
||
$this->assertCollectionCount($this->filesCollection, 4); | ||
$this->assertCollectionCount($this->chunksCollection, 4); | ||
|
||
$this->bucket->deleteByName('filename'); | ||
|
||
$this->assertCollectionCount($this->filesCollection, 1); | ||
$this->assertCollectionCount($this->chunksCollection, 1); | ||
|
||
$this->bucket->deleteByName('other'); | ||
|
||
$this->assertCollectionCount($this->filesCollection, 0); | ||
$this->assertCollectionCount($this->chunksCollection, 0); | ||
} | ||
|
||
public function testDeleteByNameShouldRequireFileToExist(): void | ||
{ | ||
$this->expectException(FileNotFoundException::class); | ||
$this->bucket->deleteByName('nonexistent-name'); | ||
} | ||
|
||
public function testDownloadingFileWithMissingChunk(): void | ||
{ | ||
$id = $this->bucket->uploadFromStream('filename', self::createStream('foobar')); | ||
|
@@ -723,6 +751,24 @@ public function testRenameShouldRequireFileToExist(): void | |
$this->bucket->rename('nonexistent-id', 'b'); | ||
} | ||
|
||
public function testRenameByName(): void | ||
{ | ||
$this->bucket->uploadFromStream('filename', self::createStream('foo')); | ||
$this->bucket->uploadFromStream('filename', self::createStream('foo')); | ||
$this->bucket->uploadFromStream('filename', self::createStream('foo')); | ||
|
||
$this->bucket->renameByName('filename', 'newname'); | ||
|
||
$this->assertNull($this->bucket->findOne(['filename' => 'filename']), 'No file has the old name'); | ||
$this->assertStreamContents('foo', $this->bucket->openDownloadStreamByName('newname')); | ||
} | ||
|
||
public function testRenameByNameShouldRequireFileToExist(): void | ||
{ | ||
$this->expectException(FileNotFoundException::class); | ||
$this->bucket->renameByName('nonexistent-name', 'b'); | ||
} | ||
|
||
public function testUploadFromStream(): void | ||
{ | ||
$options = [ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Boths additions will be removed in v2.x, thanks to #1454