CommentVoterTest.php
2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
namespace FootyRoom\Tests\Integration\Comment;
use FootyRoom\Core\Comment\CommentVoter;
use FootyRoom\Core\Comment\UpDownVote;
use FootyRoom\Core\Vote\VotingManager;
use FootyRoom\Queries\Vote\VoteQueryHandler;
use FootyRoom\Repositories\CommentRepository;
use FootyRoom\Tests\TestCase;
class CommentVoterTest extends TestCase
{
public function setUp()
{
$this->mockVotingManager = $this->getMockBuilder(VotingManager::class)
->disableOriginalConstructor()
->setMethods(['vote'])
->getMock();
$this->mockVoteQueryHandler = $this->getMockBuilder(VoteQueryHandler::class)
->disableOriginalConstructor()
->setMethods(['voteCount'])
->getMock();
$this->mockCommentRepository = $this->getMockBuilder(CommentRepository::class)
->disableOriginalConstructor()
->setMethods(['incrementKarma', 'decrementKarma'])
->getMock();
$this->commentVoter = new CommentVoter($this->mockVotingManager, $this->mockVoteQueryHandler, $this->mockCommentRepository);
}
/**
* @expectedException \FootyRoom\Core\CoreException
*/
public function testCanNotVoteIfVoteTodayHaveBeenCountedMoreThanTwenty()
{
$commentId = 1234;
$voteValue = -1;
$tracker = '1234abcde';
$userId = 41301;
$this->mockVoteQueryHandler->method('voteCount')
->will($this->returnValue(21));
$this->commentVoter->vote(
$commentId,
new UpDownVote($voteValue),
$tracker,
$userId
);
}
public function testIncrementKarmaWasCalledIfVotingIsUp()
{
$commentId = 1234;
$voteValue = 1;
$tracker = '1234abcde';
$userId = 41301;
$this->mockCommentRepository->expects($this->once())
->method('incrementKarma');
$this->commentVoter->vote(
$commentId,
new UpDownVote($voteValue),
$tracker,
$userId
);
}
public function testDecrementKarmaWasCalledIfVotingIsDown()
{
$commentId = 1234;
$voteValue = -1;
$tracker = '1234abcde';
$userId = 41301;
$this->mockCommentRepository->expects($this->once())
->method('decrementKarma');
$this->commentVoter->vote(
$commentId,
new UpDownVote($voteValue),
$tracker,
$userId
);
}
}