Make WordPress Core


Ignore:
Timestamp:
04/20/2015 05:41:37 AM (10 years ago)
Author:
pento
Message:

Clean up some edge cases in sanitize_sql_orderby().

Props vortfu, dd32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/formatting/SanitizeOrderby.php

    r25002 r32164  
    11<?php
    22
    3 /* // @todo These tests need to be rewritten for sanitize_sql_orderby
     3/**
     4 * @group sanitize_sql_orderby
     5 */
    46class Tests_Formatting_SanitizeOrderby extends WP_UnitTestCase {
    5     function test_empty() {
    6         $cols = array('a' => 'a');
    7         $this->assertEquals( '', sanitize_sql_orderby('', $cols) );
    8         $this->assertEquals( '', sanitize_sql_orderby('  ', $cols) );
    9         $this->assertEquals( '', sanitize_sql_orderby("\t", $cols) );
    10         $this->assertEquals( '', sanitize_sql_orderby(null, $cols) );
    11         $this->assertEquals( '', sanitize_sql_orderby(0, $cols) );
    12         $this->assertEquals( '', sanitize_sql_orderby('+', $cols) );
    13         $this->assertEquals( '', sanitize_sql_orderby('-', $cols) );
     7
     8    /**
     9     * @covers ::sanitize_sql_orderby
     10     * @dataProvider valid_orderbys
     11     */
     12    function test_valid( $orderby ) {
     13        $this->assertEquals( $orderby, sanitize_sql_orderby( $orderby ) );
     14    }
     15    function valid_orderbys() {
     16        return array(
     17            array( '1' ),
     18            array( '1 ASC' ),
     19            array( '1 ASC, 2' ),
     20            array( '1 ASC, 2 DESC' ),
     21            array( '1 ASC, 2 DESC, 3' ),
     22            array( '       1      DESC' ),
     23            array( 'field ASC' ),
     24            array( 'field1 ASC, field2' ),
     25            array( 'field_1 ASC, field_2 DESC' ),
     26            array( 'field1, field2 ASC' ),
     27            array( '`field1`' ),
     28            array( '`field1` ASC' ),
     29            array( '`field` ASC, `field2`' ),
     30            array( 'RAND()' ),
     31            array( '   RAND(  )   ' ),
     32        );
    1433    }
    1534
    16     function test_unknown_column() {
    17         $cols = array('name' => 'post_name', 'date' => 'post_date');
    18         $this->assertEquals( '', sanitize_sql_orderby('unknown_column', $cols) );
    19         $this->assertEquals( '', sanitize_sql_orderby('+unknown_column', $cols) );
    20         $this->assertEquals( '', sanitize_sql_orderby('-unknown_column', $cols) );
    21         $this->assertEquals( '', sanitize_sql_orderby('-unknown1,+unknown2,unknown3', $cols) );
    22         $this->assertEquals( 'post_name ASC', sanitize_sql_orderby('name,unknown_column', $cols) );
    23         $this->assertEquals( '', sanitize_sql_orderby('!@#$%^&*()_=~`\'",./', $cols) );
     35    /**
     36     * @covers ::sanitize_sql_orderby
     37     * @dataProvider invalid_orderbys
     38     */
     39    function test_invalid( $orderby ) {
     40        $this->assertFalse( sanitize_sql_orderby( $orderby ) );
    2441    }
    25 
    26     function test_valid() {
    27         $cols = array('name' => 'post_name', 'date' => 'post_date', 'random' => 'rand()');
    28         $this->assertEquals( 'post_name ASC', sanitize_sql_orderby('name', $cols) );
    29         $this->assertEquals( 'post_name ASC', sanitize_sql_orderby('+name', $cols) );
    30         $this->assertEquals( 'post_name DESC', sanitize_sql_orderby('-name', $cols) );
    31         $this->assertEquals( 'post_date ASC, post_name ASC', sanitize_sql_orderby('date,name', $cols) );
    32         $this->assertEquals( 'post_date ASC, post_name ASC', sanitize_sql_orderby(' date , name ', $cols) );
    33         $this->assertEquals( 'post_name DESC, post_date ASC', sanitize_sql_orderby('-name,date', $cols) );
    34         $this->assertEquals( 'post_name ASC, post_date ASC', sanitize_sql_orderby('name ,+ date', $cols) );
    35         $this->assertEquals( 'rand() ASC', sanitize_sql_orderby('random', $cols) );
     42    function invalid_orderbys() {
     43        return array(
     44            array( '' ),
     45            array( '1 2' ),
     46            array( '1, 2 3' ),
     47            array( '1 DESC, ' ),
     48            array( 'field-1' ),
     49            array( 'field DESC,' ),
     50            array( 'field1 field2' ),
     51            array( 'field RAND()' ),
     52            array( 'RAND() ASC' ),
     53            array( '`field1` ASC, `field2' ),
     54            array( 'field, !@#$%^' ),
     55        );
    3656    }
    3757}
    38 */
Note: See TracChangeset for help on using the changeset viewer.