Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/24/2014 09:59:17 PM (10 years ago)
Author:
boonebgorges
Message:

Update bp_last_activity cache when fetching user last_activity.

The cache doesn't do much when it's not set :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/testcases/core/class-bp-core-user.php

    r8290 r8320  
    160160     * @group last_activity
    161161     */
     162    public function test_get_last_activity_store_in_cache() {
     163        $u = $this->create_user();
     164        $time = bp_core_current_time();
     165
     166        // Cache is set during user creation. Clear to reflect actual
     167        // pageload
     168        wp_cache_delete( $u, 'bp_last_activity' );
     169
     170        // prime cache
     171        $a = BP_Core_User::get_last_activity( $u );
     172
     173        $this->assertNotEmpty( wp_cache_get( $u, 'bp_last_activity' ) );
     174    }
     175
     176    /**
     177     * @group last_activity
     178     */
    162179    public function test_update_last_activity() {
    163180        $u = $this->create_user();
Note: See TracChangeset for help on using the changeset viewer.