RangeQueryTest.php

Same filename in other branches
  1. 8.9.x core/tests/Drupal/KernelTests/Core/Database/RangeQueryTest.php
  2. 10 core/tests/Drupal/KernelTests/Core/Database/RangeQueryTest.php
  3. 11.x core/tests/Drupal/KernelTests/Core/Database/RangeQueryTest.php

Namespace

Drupal\KernelTests\Core\Database

File

core/tests/Drupal/KernelTests/Core/Database/RangeQueryTest.php

View source
<?php

namespace Drupal\KernelTests\Core\Database;


/**
 * Tests the Range query functionality.
 *
 * @group Database
 */
class RangeQueryTest extends DatabaseTestBase {
    
    /**
     * Confirms that range queries work and return the correct result.
     */
    public function testRangeQuery() {
        // Test if return correct number of rows.
        $range_rows = $this->connection
            ->queryRange("SELECT [name] FROM {test} ORDER BY [name]", 1, 3)
            ->fetchAll();
        $this->assertCount(3, $range_rows, 'Range query work and return correct number of rows.');
        // Test if return target data.
        $raw_rows = $this->connection
            ->query('SELECT [name] FROM {test} ORDER BY [name]')
            ->fetchAll();
        $raw_rows = array_slice($raw_rows, 1, 3);
        $this->assertEquals($range_rows, $raw_rows);
    }

}

Classes

Title Deprecated Summary
RangeQueryTest Tests the Range query functionality.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.