Blame view
tests/integration/Vote/VotingManagerTest.php
4.78 KB
e77200db5 Initial commit |
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
<?php namespace FootyRoom\Tests\Integration\Vote; use FootyRoom\Core\Vote\Choice; use FootyRoom\Core\Vote\VotingManager; use FootyRoom\Queries\VoteQuery; use FootyRoom\Repositories\VoteRepository; use FootyRoom\Tests\TestCase; use Illuminate\Contracts\Events\Dispatcher; class VotingManagerTest extends TestCase { public function setUp() { $this->mockVoteRepo = $this->getMockBuilder(VoteRepository::class) ->disableOriginalConstructor() ->setMethods(['deleteBy', 'createMany']) ->getMock(); $this->mockVoteQuery = $this->getMockBuilder(VoteQuery::class) ->disableOriginalConstructor() ->setMethods(['findByUserId', 'findByTrackerOnly']) ->getMock(); $this->mockDispactcher = $this->getMockBuilder(Dispatcher::class) ->disableOriginalConstructor() ->getMock(); $this->voteManager = new VotingManager($this->mockVoteRepo, $this->mockVoteQuery, $this->mockDispactcher); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function pollIdMustNotBeEmpty() { $pollId = null; $choices = [new Choice('1')]; $tracker = 'test'; $userId = null; $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function ChoiceMustNotLessThanOne() { $pollId = 'poll-1234'; $choices = []; $tracker = 'test'; $userId = null; $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function CookiesMustBeEnabled_TrackerMustNotBeEmpty() { $pollId = 'poll-1234'; $choices = [new Choice('1')]; $tracker = ''; $userId = null; $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test */ public function deleteWasCalledIfUpdateablePollVoteWasUpdated() { $pollId = 'poll-1234'; $choices = [new Choice('1')]; $tracker = 'test'; $userId = 41301; $this->mockVoteRepo->expects($this->once()) ->method('deleteBy'); $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test */ public function deleteWasCalledIfOtherUpdateablePollVoteWasUpdated() { $pollId = 'motm-1234'; $choices = [new Choice('1')]; $tracker = 'test'; $userId = 41301; $this->mockVoteRepo->expects($this->once()) ->method('deleteBy'); $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function cantUpdateImmutablePollVotes() { $pollId = 'not-updatable-poll-1234'; $choices = [new Choice('1')]; $tracker = 'test'; $userId = 41301; $this->mockVoteQuery->method('findByUserId') ->will($this->returnValue([[]])); $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function hasVoted() { $pollId = 'not-updatable-poll-1234'; $choices = [new Choice('1')]; $tracker = 'test'; $userId = 41301; $this->mockVoteQuery->method('findByUserId') ->will($this->returnValue([[]])); $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function ifUserVotingThenCountByUserId() { $pollId = 'not-updatable-poll-1234'; $choices = [new Choice('1')]; $tracker = 'test'; $userId = 41301; $this->mockVoteQuery->method('findByUserId') ->will($this->returnValue([[]])); $this->voteManager->vote($pollId, $choices, $tracker, $userId); } /** * @test * @expectedException \FootyRoom\Core\CoreException */ public function ifGuestVotingThenCountByTracker() { $pollId = 'not-updatable-poll-1234'; $choices = [new Choice('1')]; $tracker = 'test'; $userId = ''; $this->mockVoteQuery->method('findByTrackerOnly') ->will($this->returnValue([[]])); $this->voteManager->vote($pollId, $choices, $tracker, $userId); } } |