Skip to:
Content

BuddyPress.org

Changeset 8012


Ignore:
Timestamp:
03/01/2014 02:48:42 AM (11 years ago)
Author:
boonebgorges
Message:

Use correct date() format throughout unit tests

Also fix incorrect value reference in xprofile/activity tests. Props DJPaul

Location:
trunk/tests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/includes/testcase.php

    r7988 r8012  
    220220        $r = wp_parse_args( $args, array(
    221221            'role' => 'subscriber',
    222             'last_activity' => date( 'Y-m-d h:i:s', strtotime( bp_core_current_time() ) - 60*60*24*365 ),
     222            'last_activity' => date( 'Y-m-d H:i:s', strtotime( bp_core_current_time() ) - 60*60*24*365 ),
    223223        ) );
    224224
  • trunk/tests/testcases/activity/class.BP_Activity_Activity.php

    r7951 r8012  
    429429        $now = time();
    430430        $a1 = $this->factory->activity->create( array(
    431             'recorded_time' => date( 'Y-m-d h:i:s', $now - 500 ),
    432         ) );
    433         $a2 = $this->factory->activity->create( array(
    434             'recorded_time' => date( 'Y-m-d h:i:s', $now - 100 ),
     431            'recorded_time' => date( 'Y-m-d H:i:s', $now - 500 ),
     432        ) );
     433        $a2 = $this->factory->activity->create( array(
     434            'recorded_time' => date( 'Y-m-d H:i:s', $now - 100 ),
    435435        ) );
    436436        $a3 = $this->factory->activity->create( array(
    437             'recorded_time' => date( 'Y-m-d h:i:s', $now - 300 ),
    438         ) );
    439 
    440         $this->assertSame( date( 'Y-m-d h:i:s', $now - 100 ), BP_Activity_Activity::get_last_updated() );
     437            'recorded_time' => date( 'Y-m-d H:i:s', $now - 300 ),
     438        ) );
     439
     440        $this->assertSame( date( 'Y-m-d H:i:s', $now - 100 ), BP_Activity_Activity::get_last_updated() );
    441441    }
    442442}
  • trunk/tests/testcases/members/template.php

    r7846 r8012  
    105105        global $members_template;
    106106
    107         $time = date( 'Y-m-d h:i:s', time() - 24*60*60 );
     107        $time = date( 'Y-m-d H:i:s', time() - 24*60*60 );
    108108        $members_template = new stdClass;
    109109        $members_template->member = new stdClass;
     
    120120        global $members_template;
    121121
    122         $time = date( 'Y-m-d h:i:s', time() - 24*60*60 );
     122        $time = date( 'Y-m-d H:i:s', time() - 24*60*60 );
    123123        $members_template = new stdClass;
    124124        $members_template->member = new stdClass;
     
    135135        global $members_template;
    136136
    137         $time = date( 'Y-m-d h:i:s', time() - 24*60*60 );
     137        $time = date( 'Y-m-d H:i:s', time() - 24*60*60 );
    138138        $members_template = new stdClass;
    139139        $members_template->member = new stdClass;
  • trunk/tests/testcases/xprofile/activity.php

    r7998 r8012  
    1616        // Fake new/old values to ensure a change
    1717        $old_values = array(
    18             $this->updated_profile_data['f']->id => array(
    19                 'value'      => 'foo',
    20                 'visibility' => 'public',
    21             ),
    22         );
    23         $new_values = array(
    24             $this->updated_profile_data['f']->id => array(
    25                 'value'      => 'foo2',
    26                 'visibility' => 'public',
    27             ),
    28         );
    29 
    30         $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), true ) );
     18            $this->updated_profile_data['f'] => array(
     19                'value'      => 'foo',
     20                'visibility' => 'public',
     21            ),
     22        );
     23        $new_values = array(
     24            $this->updated_profile_data['f'] => array(
     25                'value'      => 'foo2',
     26                'visibility' => 'public',
     27            ),
     28        );
     29
     30        $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), true ) );
    3131    }
    3232
     
    3838
    3939        $time = time();
    40         $prev_time = date( 'Y-m-d h:i:s', $time - ( 119 * 60 ) );
    41         $now_time = date( 'Y-m-d h:i:s', $time );
     40        $prev_time = date( 'Y-m-d H:i:s', $time - ( 119 * 60 ) );
     41        $now_time = date( 'Y-m-d H:i:s', $time );
    4242
    4343        $this->factory->activity->create( array(
     
    5050        // Fake new/old values to ensure a change
    5151        $old_values = array(
    52             $this->updated_profile_data['f']->id => array(
    53                 'value'      => 'foo',
    54                 'visibility' => 'public',
    55             ),
    56         );
    57         $new_values = array(
    58             $this->updated_profile_data['f']->id => array(
    59                 'value'      => 'foo2',
    60                 'visibility' => 'public',
    61             ),
    62         );
    63 
    64         $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false ) );
     52            $this->updated_profile_data['f'] => array(
     53                'value'      => 'foo',
     54                'visibility' => 'public',
     55            ),
     56        );
     57        $new_values = array(
     58            $this->updated_profile_data['f'] => array(
     59                'value'      => 'foo2',
     60                'visibility' => 'public',
     61            ),
     62        );
     63
     64        $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false ) );
    6565    }
    6666
     
    7171        $d = $this->setup_updated_profile_data();
    7272
    73         $time = time();
    74         $prev_time = date( 'Y-m-d h:i:s', $time - ( 121 * 60 ) );
    75         $now_time = date( 'Y-m-d h:i:s', $time );
     73        $time = strtotime( bp_core_current_time() );
     74        $prev_time = date( 'Y-m-d H:i:s', $time - ( 121 * 60 ) );
     75        $now_time = date( 'Y-m-d H:i:s', $time );
    7676
    7777        $this->factory->activity->create( array(
     
    8484        // Fake new/old values to ensure a change
    8585        $old_values = array(
    86             $this->updated_profile_data['f']->id => array(
    87                 'value'      => 'foo',
    88                 'visibility' => 'public',
    89             ),
    90         );
    91         $new_values = array(
    92             $this->updated_profile_data['f']->id => array(
    93                 'value'      => 'foo2',
    94                 'visibility' => 'public',
    95             ),
    96         );
    97 
    98         $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     86            $this->updated_profile_data['f'] => array(
     87                'value'      => 'foo',
     88                'visibility' => 'public',
     89            ),
     90        );
     91        $new_values = array(
     92            $this->updated_profile_data['f'] => array(
     93                'value'      => 'foo2',
     94                'visibility' => 'public',
     95            ),
     96        );
     97
     98        $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    9999
    100100        $existing = bp_activity_get( array(
     
    118118        // Fake new/old values to ensure a change
    119119        $old_values = array(
    120             $this->updated_profile_data['f']->id => array(
    121                 'value'      => 'foo',
    122                 'visibility' => 'public',
    123             ),
    124         );
    125         $new_values = array(
    126             $this->updated_profile_data['f']->id => array(
    127                 'value'      => 'foo2',
    128                 'visibility' => 'public',
    129             ),
    130         );
    131 
    132         $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     120            $this->updated_profile_data['f'] => array(
     121                'value'      => 'foo',
     122                'visibility' => 'public',
     123            ),
     124        );
     125        $new_values = array(
     126            $this->updated_profile_data['f'] => array(
     127                'value'      => 'foo2',
     128                'visibility' => 'public',
     129            ),
     130        );
     131
     132        $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    133133
    134134        $existing = bp_activity_get( array(
     
    151151
    152152        $old_values = array(
    153             $this->updated_profile_data['f']->id => array(
    154                 'value'      => 'foo',
    155                 'visibility' => 'public',
    156             ),
    157         );
    158         $new_values = array(
    159             $this->updated_profile_data['f']->id => array(
    160                 'value'      => 'foo',
    161                 'visibility' => 'public',
    162             ),
    163         );
    164 
    165         $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     153            $this->updated_profile_data['f'] => array(
     154                'value'      => 'foo',
     155                'visibility' => 'public',
     156            ),
     157        );
     158        $new_values = array(
     159            $this->updated_profile_data['f'] => array(
     160                'value'      => 'foo',
     161                'visibility' => 'public',
     162            ),
     163        );
     164
     165        $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    166166    }
    167167
     
    173173
    174174        $old_values = array(
    175             $this->updated_profile_data['f']->id => array(
    176                 'value'      => 'foo',
    177                 'visibility' => 'loggedin',
    178             ),
    179         );
    180         $new_values = array(
    181             $this->updated_profile_data['f']->id => array(
    182                 'value'      => 'bar',
    183                 'visibility' => 'loggedin',
    184             ),
    185         );
    186 
    187         $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     175            $this->updated_profile_data['f'] => array(
     176                'value'      => 'foo',
     177                'visibility' => 'loggedin',
     178            ),
     179        );
     180        $new_values = array(
     181            $this->updated_profile_data['f'] => array(
     182                'value'      => 'bar',
     183                'visibility' => 'loggedin',
     184            ),
     185        );
     186
     187        $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    188188    }
    189189
     
    195195
    196196        $old_values = array(
    197             $this->updated_profile_data['f']->id => array(
    198                 'value'      => 'foo',
    199                 'visibility' => 'public',
    200             ),
    201         );
    202         $new_values = array(
    203             $this->updated_profile_data['f']->id => array(
    204                 'value'      => 'bar',
    205                 'visibility' => 'loggedin',
    206             ),
    207         );
    208 
    209         $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     197            $this->updated_profile_data['f'] => array(
     198                'value'      => 'foo',
     199                'visibility' => 'public',
     200            ),
     201        );
     202        $new_values = array(
     203            $this->updated_profile_data['f'] => array(
     204                'value'      => 'bar',
     205                'visibility' => 'loggedin',
     206            ),
     207        );
     208
     209        $this->assertFalse( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    210210    }
    211211
     
    217217
    218218        $old_values = array(
    219             $this->updated_profile_data['f']->id => array(
    220                 'value'      => 'foo',
    221                 'visibility' => 'loggedin',
    222             ),
    223         );
    224         $new_values = array(
    225             $this->updated_profile_data['f']->id => array(
    226                 'value'      => 'foo',
    227                 'visibility' => 'public',
    228             ),
    229         );
    230 
    231         $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     219            $this->updated_profile_data['f'] => array(
     220                'value'      => 'foo',
     221                'visibility' => 'loggedin',
     222            ),
     223        );
     224        $new_values = array(
     225            $this->updated_profile_data['f'] => array(
     226                'value'      => 'foo',
     227                'visibility' => 'public',
     228            ),
     229        );
     230
     231        $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    232232    }
    233233
     
    240240        $old_values = array();
    241241        $new_values = array(
    242             $this->updated_profile_data['f']->id => array(
    243                 'value'      => 'bar',
    244                 'visibility' => 'public',
    245             ),
    246         );
    247 
    248         $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     242            $this->updated_profile_data['f'] => array(
     243                'value'      => 'bar',
     244                'visibility' => 'public',
     245            ),
     246        );
     247
     248        $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    249249    }
    250250
     
    256256
    257257        $old_values = array(
    258             $this->updated_profile_data['f']->id => array(
    259                 'value'      => 'foo',
    260                 'visibility' => 'public',
    261             ),
    262         );
    263         $new_values = array(
    264             $this->updated_profile_data['f']->id => array(
    265                 'value'      => 'bar',
    266                 'visibility' => 'public',
    267             ),
    268         );
    269 
    270         $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f']->id ), false, $old_values, $new_values ) );
     258            $this->updated_profile_data['f'] => array(
     259                'value'      => 'foo',
     260                'visibility' => 'public',
     261            ),
     262        );
     263        $new_values = array(
     264            $this->updated_profile_data['f'] => array(
     265                'value'      => 'bar',
     266                'visibility' => 'public',
     267            ),
     268        );
     269
     270        $this->assertTrue( bp_xprofile_updated_profile_activity( $d['u'], array( $d['f'] ), false, $old_values, $new_values ) );
    271271    }
    272272
     
    277277        $this->updated_profile_data['f'] = $this->factory->xprofile_field->create( array(
    278278            'type' => 'textbox',
    279             'field_group_id' => $this->updated_profile_data['g']->id,
     279            'field_group_id' => $this->updated_profile_data['g'],
    280280        ) );
    281281
  • trunk/tests/testcases/xprofile/class-bp-xprofile-profiledata.php

    r7882 r8012  
    146146     */
    147147    public function test_get_value_byid_multipleusers_uncached() {
    148         $time = date( 'Y-m-d h:i:s', time() - 60*60*24 );
     148        $time = date( 'Y-m-d H:i:s', time() - 60*60*24 );
    149149
    150150        $u1 = $this->create_user();
     
    226226     */
    227227    public function test_get_value_byid_multipleusers_cached() {
    228         $time = date( 'Y-m-d h:i:s', time() - 60*60*24 );
     228        $time = date( 'Y-m-d H:i:s', time() - 60*60*24 );
    229229
    230230        $u1 = $this->create_user();
Note: See TracChangeset for help on using the changeset viewer.