MINI Sh3ll
<?php
namespace MongoDB\Tests\Operation;
use MongoDB\Exception\InvalidArgumentException;
use MongoDB\Operation\Delete;
use function array_merge;
class DeleteTest extends TestCase
{
/**
* @dataProvider provideInvalidDocumentValues
*/
public function testConstructorFilterArgumentTypeCheck($filter): void
{
$this->expectException(InvalidArgumentException::class);
new Delete($this->getDatabaseName(), $this->getCollectionName(), $filter, 0);
}
/**
* @dataProvider provideInvalidLimitValues
*/
public function testConstructorLimitArgumentMustBeOneOrZero($limit): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('$limit must be 0 or 1');
new Delete($this->getDatabaseName(), $this->getCollectionName(), [], $limit);
}
public function provideInvalidLimitValues()
{
return $this->wrapValuesForDataProvider(array_merge($this->getInvalidIntegerValues(), [-1, 2]));
}
/**
* @dataProvider provideInvalidConstructorOptions
*/
public function testConstructorOptionTypeChecks(array $options): void
{
$this->expectException(InvalidArgumentException::class);
new Delete($this->getDatabaseName(), $this->getCollectionName(), [], 1, $options);
}
public function provideInvalidConstructorOptions()
{
$options = [];
foreach ($this->getInvalidDocumentValues() as $value) {
$options[][] = ['collation' => $value];
}
foreach ($this->getInvalidSessionValues() as $value) {
$options[][] = ['session' => $value];
}
foreach ($this->getInvalidWriteConcernValues() as $value) {
$options[][] = ['writeConcern' => $value];
}
return $options;
}
}
OHA YOOOO