Spaces:
No application file
No application file
mautic
/
app
/bundles
/CampaignBundle
/Tests
/Executioner
/ContactFinder
/Limiter
/ContactLimiterTest.php
namespace Mautic\CampaignBundle\Tests\Executioner\ContactFinder\Limiter; | |
use Mautic\CampaignBundle\Executioner\ContactFinder\Limiter\ContactLimiter; | |
use Mautic\CampaignBundle\Executioner\Exception\NoContactsFoundException; | |
class ContactLimiterTest extends \PHPUnit\Framework\TestCase | |
{ | |
public function testGetters(): void | |
{ | |
$limiter = new ContactLimiter(1, 2, 3, 4, [1, 2, 3]); | |
$this->assertEquals(1, $limiter->getBatchLimit()); | |
$this->assertEquals(2, $limiter->getContactId()); | |
$this->assertEquals(3, $limiter->getMinContactId()); | |
$this->assertEquals(4, $limiter->getMaxContactId()); | |
$this->assertEquals([1, 2, 3], $limiter->getContactIdList()); | |
} | |
public function testBatchMinContactIsReturned(): void | |
{ | |
$limiter = new ContactLimiter(1, 2, 3, 10, [1, 2, 3]); | |
$limiter->setBatchMinContactId(5); | |
$this->assertEquals(5, $limiter->getMinContactId()); | |
} | |
public function testNoContactsFoundExceptionThrownIfIdIsLessThanMin(): void | |
{ | |
$this->expectException(NoContactsFoundException::class); | |
$limiter = new ContactLimiter(1, 2, 3, 10, [1, 2, 3]); | |
$limiter->setBatchMinContactId(1); | |
} | |
public function testNoContactsFoundExceptionThrownIfIdIsMoreThanMax(): void | |
{ | |
$this->expectException(NoContactsFoundException::class); | |
$limiter = new ContactLimiter(1, 2, 3, 10, [1, 2, 3]); | |
$limiter->setBatchMinContactId(11); | |
} | |
public function testNoContactsFoundExceptionThrownIfIdIsTheSameAsLastBatch(): void | |
{ | |
$this->expectException(NoContactsFoundException::class); | |
$limiter = new ContactLimiter(1, 2, 3, 10, [1, 2, 3]); | |
$limiter->setBatchMinContactId(5); | |
$limiter->setBatchMinContactId(5); | |
} | |
public function testExceptionNotThrownIfIdEqualsMinSoThatItsIsIncluded(): void | |
{ | |
$limiter = new ContactLimiter(1, 2, 3, 10, [1, 2, 3]); | |
$this->assertSame($limiter, $limiter->setBatchMinContactId(3)); | |
} | |
public function testExceptionNotThrownIfIdEqualsMaxSoThatItsIsIncluded(): void | |
{ | |
$limiter = new ContactLimiter(1, 2, 3, 10, [1, 2, 3]); | |
$this->assertSame($limiter, $limiter->setBatchMinContactId(10)); | |
} | |
public function testExceptionThrownIfThreadIdLargerThanMaxThreads(): void | |
{ | |
$this->expectException(\InvalidArgumentException::class); | |
new ContactLimiter(1, null, null, null, [], 5, 3); | |
} | |
} | |