You are here

function NotificationsCustomTests::testCustomSubscriptions in Notifications 6.4

Same name and namespace in other branches
  1. 7 tests/notifications_custom.test \NotificationsCustomTests::testCustomSubscriptions()

File

tests/notifications_custom.test, line 21

Class

NotificationsCustomTests

Code

function testCustomSubscriptions() {

  // Create regular user and admin user who will create some custom subscription
  $author = $this
    ->drupalCreateUser(array(
    'create story content',
    'create page content',
  ));

  //$user2 = $this->drupalCreateUser('subscribe to author', 'subscribe to content', 'subscribe to content type')
  $admin = $this
    ->drupalCreateUser(array(
    'administer notifications',
  ));
  $this
    ->drupalLogin($admin);

  // Subscription to story/author visible for user registration
  $data = array(
    'event_type' => 'node',
    'visibility' => 1,
    'register' => 1,
  );
  $fields = array(
    array(
      'type' => 'type',
      'value' => 'story',
    ),
    array(
      'type' => 'author',
      'value' => $author->name,
    ),
  );
  $subs1 = $this
    ->createCustomSubscription($data, $fields);

  // Subscription to all node creations, not visible for registration
  $data['register'] = FALSE;
  $fields = array(
    array(
      'type' => 'event-action',
      'value' => 'insert',
    ),
  );
  $subs2 = $this
    ->createCustomSubscription($data, $fields);
  $this
    ->drupalLogout();
  $this
    ->drupalGet('user/register');
  $this
    ->assertText($subs1->name, 'First subscription is available for user registration.');
  $this
    ->assertNoText($subs2->name, 'Second subscription not available for user registration.');

  // Create a third user and subscribe to both
  $user = $this
    ->drupalCreateUser(array(
    'maintain own subscriptions',
  ));
  $this
    ->drupalLogin($user);
  $edit = array(
    "notifications_custom[{$subs1->type}]" => 1,
    "notifications_custom[{$subs2->type}]" => 1,
  );
  $this
    ->drupalPost("user/{$user->uid}/notifications", $edit, t('Update'));
  $this
    ->assertText("Your subscriptions have been updated");
  $this
    ->assertUserRows('notifications', 2, $user->uid);

  // Create story and page node and check the user gets just two notifications (3 rows in queue though)
  // Enable this content type for thread/author/type subscriptions

  //variable_set('notifications_content_type', array('thread', 'nodetype', 'author'));
  $story = $this
    ->drupalCreateNode(array(
    'type' => 'story',
    'uid' => $author->uid,
  ));
  $page = $this
    ->drupalCreateNode(array(
    'type' => 'page',
    'uid' => $author->uid,
  ));
  $this
    ->assertUserRows('notifications_queue', 3, $user->uid);
  $this
    ->notificationsProcessQueue(3, 0);
  $this
    ->assertUserRows('notifications_queue', 0, $user->uid, 'All rows in queue have been processed');
  $messages = messaging_simple_get_messages(array(
    'uid' => $user->uid,
  ));
  $this
    ->assertTrue(count($messages), 2, 'Two messages have been sent to the user.');
  $this
    ->drupalGet("user/{$user->uid}/messages");
  $this
    ->assertText("New Story: {$story->title}", 'A notification for the story has been received.');
  $this
    ->assertText("New Page: {$page->title}", 'A notification for the page has been received.');
}