You are here

public function AnswersUserPointsTestCase::testUpVoteAnswer in Answers 7.4

Tests UpVoting an Answer.

File

answers_userpoints/answers_userpoints.test, line 202
Tests for answers_userpoints.module.

Class

AnswersUserPointsTestCase
Tests the functionality of the answers_userpoints module admin settings.

Code

public function testUpVoteAnswer() {
  $langcode = LANGUAGE_NONE;
  $this
    ->drupalLogin($this->questionUser);
  $this
    ->drupalGet('node/add/answers-question');
  $question = array();
  $question['title'] = 'Woodchucks';
  $question["body[{$langcode}][0][value]"] = "How much wood could a woodchuck chuck?";
  $this
    ->drupalPost('node/add/answers-question', $question, 'Save');
  $this
    ->drupalLogout();
  $this
    ->drupalLogin($this->answerUser);
  $this
    ->drupalGet('node/1');
  $answer = array();
  $answer["body[{$langcode}][0][value]"] = "42 cords of wood.";
  $this
    ->drupalPost('node/1', $answer, 'Save');
  $this
    ->drupalLogout();
  $this
    ->drupalLogin($this->questionUser);
  $this
    ->drupalGet('node/1');
  $this
    ->clickLink('1', 0, 'UpVote Answer');
  $this
    ->assertEqual(10, userpoints_get_current_points($this->answerUser->uid), 'Answer author\'s points = ' . userpoints_get_current_points($this->answerUser->uid));
  $this
    ->clickLink('1', 0, 'Cancel UpVote Answer');
  $this
    ->assertEqual(0, userpoints_get_current_points($this->answerUser->uid), 'Answer author\'s points = ' . userpoints_get_current_points($this->answerUser->uid));
}