Ejemplo n.º 1
0
 public function testCreateAllSpool()
 {
     $this->importDataSet(ORIGINAL_ROOT . 'typo3/sysext/core/Tests/Functional/Fixtures/tt_content.xml');
     $db = $this->getDatabaseConnection();
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_newsletter', 'begin_time != 0 AND end_time != 0');
     $this->assertSame(0, $count);
     Tools::createAllSpool();
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_newsletter', 'begin_time != 0 AND end_time != 0');
     $this->assertSame(1, $count, 'newsletter should be marked as spooled');
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_email', 'newsletter = 20 AND begin_time = 0');
     $this->assertSame(2, $count, 'two emails must have been created but not sent yet');
     $lastInsertedEmail = $db->exec_SELECTgetSingleRow('*', 'tx_newsletter_domain_model_email', 'newsletter = 20 AND begin_time = 0');
     $this->assertNotSame(md5('0' . $lastInsertedEmail['recipient_address']), $lastInsertedEmail['auth_code'], 'the UID used in authCode must never be 0');
     $this->assertSame(md5($lastInsertedEmail['uid'] . $lastInsertedEmail['recipient_address']), $lastInsertedEmail['auth_code'], 'the UID used in authCode should be the real value');
     // Prepare a mock to always validate content
     /** @var \Ecodev\Newsletter\Utility\Validator|\PHPUnit_Framework_MockObject_MockObject $mockValidator */
     $mockValidator = $this->getMock(\Ecodev\Newsletter\Utility\Validator::class, ['validate'], [], '', false);
     $mockValidator->method('validate')->will($this->returnValue(['content' => 'some very interesting content <a href="http://example.com/fake-content">link</a>', 'errors' => [], 'warnings' => [], 'infos' => []]));
     // Force email to NOT be sent
     global $TYPO3_CONF_VARS;
     $TYPO3_CONF_VARS['MAIL']['transport'] = 'Swift_NullTransport';
     /** @var \Ecodev\Newsletter\Domain\Repository\NewsletterRepository $newsletterRepository */
     $newsletterRepository = $this->objectManager->get(\Ecodev\Newsletter\Domain\Repository\NewsletterRepository::class);
     $newsletter = $newsletterRepository->findByUid(20);
     $newsletter->setValidator($mockValidator);
     Tools::runSpool($newsletter);
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_email', 'newsletter = 20 AND begin_time != 0 AND end_time != 0 AND recipient_data != ""');
     $this->assertSame(2, $count, 'should have sent two emails');
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_link', 'newsletter = 20');
     $this->assertSame(1, $count, 'should have on1 new link');
 }
Ejemplo n.º 2
0
 public function testCreateAllSpool()
 {
     $this->importDataSet(ORIGINAL_ROOT . 'typo3/sysext/core/Tests/Functional/Fixtures/tt_content.xml');
     $db = $this->getDatabaseConnection();
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_newsletter', 'begin_time != 0 AND end_time != 0');
     $this->assertEquals(0, $count);
     \Ecodev\Newsletter\Tools::createAllSpool();
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_newsletter', 'begin_time != 0 AND end_time != 0');
     $this->assertEquals(1, $count, 'newsletter should be marked as spooled');
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_email', 'newsletter = 20 AND begin_time = 0');
     $this->assertEquals(2, $count, 'two emails must have been created but not sent yet');
     // Prepare a mock to always validate content
     $mockValidator = $this->getMock('Ecodev\\Newsletter\\Utility\\Validator', array('validate'), array(), '', false);
     $mockValidator->method('validate')->will($this->returnValue(array('content' => 'some very interesting content <a href="http://example.com/fake-content">link</a>', 'errors' => array(), 'warnings' => array(), 'infos' => array())));
     // Force email to NOT be sent
     global $TYPO3_CONF_VARS;
     $TYPO3_CONF_VARS['MAIL']['transport'] = 'Swift_NullTransport';
     $newsletterRepository = $this->objectManager->get('Ecodev\\Newsletter\\Domain\\Repository\\NewsletterRepository');
     $newsletter = $newsletterRepository->findByUid(20);
     $newsletter->setValidator($mockValidator);
     \Ecodev\Newsletter\Tools::runSpool($newsletter);
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_email', 'newsletter = 20 AND begin_time != 0 AND end_time != 0 AND recipient_data != ""');
     $this->assertEquals(2, $count, 'should have sent two emails');
     $count = $db->exec_SELECTcountRows('*', 'tx_newsletter_domain_model_link', 'newsletter = 20');
     $this->assertEquals(1, $count, 'should have on1 new link');
 }
Ejemplo n.º 3
0
 /**
  * Sends emails for queued newsletter
  *
  * @return bool	Returns true on successful execution, false on error
  */
 public function execute()
 {
     Tools::createAllSpool();
     Tools::runAllSpool();
     return true;
 }