HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux newsites.squeezer-software.com 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/sites/orpis/modules/simpletest/tests/entity_crud.test
<?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.');
  }
}