You are here

public function AuthcacheUbercartTest::testUbercartAddToCartWithFormCache in Authenticated User Page Caching (Authcache) 7.2

Test that products are added to the proper cart.

File

modules/authcache_ubercart/authcache_ubercart.test, line 82
Test cases for the Authcache Ubercart module.

Class

AuthcacheUbercartTest
Tests for markup substitution.

Code

public function testUbercartAddToCartWithFormCache() {
  $this->stubmod
    ->hook('authcache_p13n_client', array(
    'authcache_p13n_test' => array(
      'title' => t('Test Client'),
      'enabled' => TRUE,
    ),
  ));

  // Create a clone of customer with the same set of roles.
  $cloned_customer = $this
    ->drupalCreateUser();
  $cloned_customer->roles = $this->customer->roles;
  user_save($cloned_customer);
  $this
    ->drupalLogin($this->customer);

  // Customer 1: Visit the product display in order to warm the form cache.
  $excluded_stub = $this->stubmod
    ->hook('authcache_excluded');
  $canceled_stub = $this->stubmod
    ->hook('authcache_canceled');
  $this
    ->drupalGet('node/' . $this->product->nid);
  $this
    ->assertStub($excluded_stub, HookStub::never());
  $this
    ->assertStub($canceled_stub, HookStub::never());
  $content = $this
    ->drupalGetContent();
  $url = $this
    ->getUrl();

  // Customer 2: Add one product to the cart.
  $this
    ->drupalLogin($cloned_customer);

  // Simulate a cache-hit by restoring the content and url from
  // customer.
  $this
    ->drupalSetContent($content, $url);

  // Compute CSRF token and supply it via the extra_post parameter.
  $token = $this
    ->drupalGetToken('uc_product_add_to_cart_form');
  $extra_post = '&form_token=' . urlencode($token);
  $this
    ->drupalPost(NULL, array(), 'Add to cart', array(), array(), NULL, $extra_post);

  // Ensure that we are not running into CSRF protection.
  $this
    ->assertNoText('The form has become outdated.');

  // Ensure the add to cart message is displayed.
  $message = t('<strong>@title</strong> added to <a href="!cart-url">your shopping cart</a>.', array(
    '@title' => $this->product->title,
    '!cart-url' => url('cart'),
  ));
  $this
    ->assertRaw($message, t('Product add to cart message displayed.'));

  // Go to cart url.
  $this
    ->drupalGet('cart');

  // Test if the page resolves and there is something in the cart.
  $this
    ->assertResponse(200);
  $this
    ->assertNoText(t('There are no products in your shopping cart.'), t('Cart is not empty'));
  $this
    ->assertText($this->product->title, t('Product was added to the cart'));
  $this
    ->drupalLogout();
}