You are here

function RelationViewsTestCase::testReverseDirectionalDifferentEntityRelations in Relation 7

Tests views with reverse directional relations to source, to target and to both with different entities types.

File

tests/relation.views.test, line 381
Tests for Views support in the Relation module.

Class

RelationViewsTestCase
Functional test of Relation's integration with Views.

Code

function testReverseDirectionalDifferentEntityRelations() {
  for ($r_index = -1; $r_index < 2; $r_index++) {
    $view = new view();
    $view->base_table = 'node';
    $handler = $view
      ->new_display('default');
    $handler->display->display_options['relationships']['relation_directional_entitydifferent_user']['id'] = 'relation_directional_entitydifferent_user';
    $handler->display->display_options['relationships']['relation_directional_entitydifferent_user']['table'] = 'node';
    $handler->display->display_options['relationships']['relation_directional_entitydifferent_user']['field'] = 'relation_directional_entitydifferent_user';
    $handler->display->display_options['relationships']['relation_directional_entitydifferent_user']['required'] = 1;
    $handler->display->display_options['relationships']['relation_directional_entitydifferent_user']['r_index'] = $r_index;
    $handler->display->display_options['fields']['nid']['id'] = 'nid';
    $handler->display->display_options['fields']['nid']['table'] = 'node';
    $handler->display->display_options['fields']['nid']['field'] = 'nid';
    $handler->display->display_options['arguments']['uid']['id'] = 'uid';
    $handler->display->display_options['arguments']['uid']['table'] = 'users';
    $handler->display->display_options['arguments']['uid']['field'] = 'uid';
    $handler->display->display_options['arguments']['uid']['relationship'] = 'relation_directional_entitydifferent_user';
    $view
      ->set_arguments(array(
      $this->user1->uid,
    ));
    $view
      ->execute();
    switch ($r_index) {
      case -1:

        // Directional, both ways.
        $this
          ->assertEqual(count($view->result), 2);
        $matches = array(
          $this->node3->nid => TRUE,
          $this->node4->nid => TRUE,
        );
        foreach ($view->result as $result) {
          unset($matches[$result->nid]);
        }
        $this
          ->assertFalse($matches);
        break;
      case 0:

        // Source. This finds no relations.
        $this
          ->assertEqual(count($view->result), 0);
        $matches = array();
        foreach ($view->result as $result) {
          unset($matches[$result->nid]);
        }
        $this
          ->assertFalse($matches);
        break;
      case 1:

        // Target. This finds the u1->p3 and u1->p4 relation.
        $this
          ->assertEqual(count($view->result), 2);
        $matches = array(
          $this->node3->nid => TRUE,
          $this->node4->nid => TRUE,
        );
        foreach ($view->result as $result) {
          unset($matches[$result->nid]);
        }
        $this
          ->assertFalse($matches);
        break;
    }
  }
}