mirror of
https://github.com/e107inc/e107.git
synced 2025-05-31 16:14:17 +02:00
101 lines
1.6 KiB
PHP
101 lines
1.6 KiB
PHP
<?php
|
|
|
|
|
|
class notifyTest extends \Codeception\Test\Unit
|
|
{
|
|
|
|
/** @var notify */
|
|
protected $nt;
|
|
|
|
protected function _before()
|
|
{
|
|
e107::getPlugin()->install('_blank');
|
|
|
|
try
|
|
{
|
|
$this->nt = $this->make('notify');
|
|
}
|
|
|
|
catch(Exception $e)
|
|
{
|
|
$this->fail($e->getMessage());
|
|
}
|
|
|
|
$this->nt->__construct();
|
|
|
|
}
|
|
|
|
function _after()
|
|
{
|
|
e107::getPlugin()->uninstall('_blank');
|
|
}
|
|
|
|
public function testSendCustom()
|
|
{
|
|
// Simulate saved pref
|
|
$this->nt->notify_prefs['event'] = array (
|
|
'custom_event' => array (
|
|
'class' => '_blank::other_type', // _blank plugin e_notify.php router()
|
|
'recipient' => 'exampleAccount',
|
|
'include' => '',
|
|
'legacy' => '0',
|
|
),
|
|
);
|
|
|
|
$expected = array (
|
|
'id' => 'custom_event',
|
|
'subject' => 'Test subject',
|
|
'message' => 'Test message',
|
|
'recipient' => 'exampleAccount',
|
|
);
|
|
|
|
$result = $this->nt->send('custom_event','Test subject','Test message');
|
|
$this->assertSame($expected, $result);
|
|
|
|
}
|
|
/*
|
|
public function testSendEmail()
|
|
{
|
|
$this->nt->notify_prefs['event'] = array (
|
|
'custom_event' => array (
|
|
'class' => 'email',
|
|
'email' => 'my@email.com',
|
|
'include' => '',
|
|
'legacy' => '0',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function testSend()
|
|
{
|
|
$this->nt->notify_prefs['event'] = array (
|
|
'custom_event' =>
|
|
array (
|
|
'class' => '254', // Admin class.
|
|
'include' => '',
|
|
'legacy' => '0',
|
|
),
|
|
);
|
|
|
|
|
|
}
|
|
*/
|
|
/*
|
|
public function test__construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function testRegisterEvents()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGeneric()
|
|
{
|
|
|
|
}*/
|
|
|
|
|
|
}
|