You are here

public function AnswersUserPointsTestCase::testUpVoteQuestion in Answers 7.4

Tests UpVoting a Question.

File

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

Class

AnswersUserPointsTestCase
Tests the functionality of the answers_userpoints module admin settings.

Code

public function testUpVoteQuestion() {
  $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');
  $this
    ->clickLink('1', 0, 'UpVote Question');
  $this
    ->assertEqual(5, userpoints_get_current_points($this->questionUser->uid), 'Question author\'s points = ' . userpoints_get_current_points($this->questionUser->uid));
  $this
    ->clickLink('1', 0, 'Cancel UpVote Question');
  $this
    ->assertEqual(0, userpoints_get_current_points($this->questionUser->uid), 'Question author\'s points = ' . userpoints_get_current_points($this->questionUser->uid));
}