You are here

public function RelationViewsTest::testReverseDirectionalDifferentEntityRelations in Relation 8.2

Same name and namespace in other branches
  1. 8 src/Tests/RelationViewsTest.php \Drupal\relation\Tests\RelationViewsTest::testReverseDirectionalDifferentEntityRelations()

Tests views with reverse directional relations.

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

File

src/Tests/RelationViewsTest.php, line 434

Class

RelationViewsTest
Relation Views test

Namespace

Drupal\relation\Tests

Code

public function testReverseDirectionalDifferentEntityRelations() {

  /*
  for ($delta = -1; $delta < 2; $delta++) {
    $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']['delta'] = $delta;
    $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 ($delta) {
      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;
    }
  }
  */
}