summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/entity_crud.test
blob: be15977902a8ce0e93802d355a0862fe1ea9b3ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

/**
 * @file
 * Tests for the Entity CRUD API.
 */

/**
 * Tests the entity_load() function.
 */
class EntityLoadTestCase extends DrupalWebTestCase {
  protected $profile = 'testing';

  public static function getInfo() {
    return array(
      'name' => 'Entity loading',
      'description' => 'Tests the entity_load() function.',
      'group' => 'Entity API',
    );
  }

  /**
   * Tests the functionality for loading entities matching certain conditions.
   */
  public function testEntityLoadConditions() {
    // Create a few nodes. One of them is given an edge-case title of "Array",
    // because loading entities by an array of conditions is subject to PHP
    // array-to-string conversion issues and we want to test those.
    $node_1 = $this->drupalCreateNode(array('title' => 'Array'));
    $node_2 = $this->drupalCreateNode(array('title' => 'Node 2'));
    $node_3 = $this->drupalCreateNode(array('title' => 'Node 3'));

    // Load all entities so that they are statically cached.
    $all_nodes = entity_load('node', FALSE);

    // Check that the first node can be loaded by title.
    $nodes_loaded = entity_load('node', FALSE, array('title' => 'Array'));
    $this->assertEqual(array_keys($nodes_loaded), array($node_1->nid));

    // Check that the second and third nodes can be loaded by title using an
    // array of conditions, and that the first node is not loaded from the
    // cache along with them.
    $nodes_loaded = entity_load('node', FALSE, array('title' => array('Node 2', 'Node 3')));
    ksort($nodes_loaded);
    $this->assertEqual(array_keys($nodes_loaded), array($node_2->nid, $node_3->nid));
    $this->assertIdentical($nodes_loaded[$node_2->nid], $all_nodes[$node_2->nid], 'Loaded node 2 is identical to cached node.');
    $this->assertIdentical($nodes_loaded[$node_3->nid], $all_nodes[$node_3->nid], 'Loaded node 3 is identical to cached node.');
  }
}