Search in sources :

Example 1 with MassiveVote

use of org.mamute.model.vote.MassiveVote in project mamute by caelum.

the class VoteDAOTest method beforeTest.

@Before
public void beforeTest() {
    votes = new VoteDAO(session);
    currentUser = user("Current User", "currentUser@email.com");
    otherUser = user("Other User", "otherUser@email.com");
    session.save(otherUser);
    session.save(currentUser);
    tags.add(tag("bla"));
    for (Tag tag : tags) {
        session.save(tag);
    }
    InvisibleForUsersRule invisibleRule = new InvisibleForUsersRule(new LoggedUser(currentUser, null));
    votingMachine = new VotingMachine(votes, new KarmaCalculator(), new ReputationEventDAO(session, invisibleRule), new MassiveVote(), new RetrieveKarmaDownvote());
}
Also used : VotingMachine(org.mamute.model.vote.VotingMachine) RetrieveKarmaDownvote(org.mamute.controllers.RetrieveKarmaDownvote) ReputationEventDAO(org.mamute.dao.ReputationEventDAO) KarmaCalculator(org.mamute.reputation.rules.KarmaCalculator) LoggedUser(org.mamute.model.LoggedUser) MassiveVote(org.mamute.model.vote.MassiveVote) SuspectMassiveVote(org.mamute.dto.SuspectMassiveVote) VoteDAO(org.mamute.dao.VoteDAO) Tag(org.mamute.model.Tag) InvisibleForUsersRule(org.mamute.dao.InvisibleForUsersRule) Before(org.junit.Before)

Example 2 with MassiveVote

use of org.mamute.model.vote.MassiveVote in project mamute by caelum.

the class VotingMachineTest method setUp.

@Before
public void setUp() {
    votes = mock(VoteDAO.class);
    ReputationEventDAO reputationEvents = mock(ReputationEventDAO.class);
    votingMachine = new VotingMachine(votes, new KarmaCalculator(), reputationEvents, new MassiveVote(), new RetrieveKarmaDownvote());
    voter = user("chico", "chico@brutal.com", 1l);
    author = user("author", "author@brutal.com", 2l);
    votable = question.withTitle("title").withDescription("description").withAuthor(author).build();
}
Also used : VotingMachine(org.mamute.model.vote.VotingMachine) RetrieveKarmaDownvote(org.mamute.controllers.RetrieveKarmaDownvote) ReputationEventDAO(org.mamute.dao.ReputationEventDAO) KarmaCalculator(org.mamute.reputation.rules.KarmaCalculator) MassiveVote(org.mamute.model.vote.MassiveVote) VoteDAO(org.mamute.dao.VoteDAO) Before(org.junit.Before)

Example 3 with MassiveVote

use of org.mamute.model.vote.MassiveVote in project mamute by caelum.

the class MassiveVoteTest method setUp.

@Before
public void setUp() throws Exception {
    massiveVote = new MassiveVote();
    author = user("Felipe", "gato-sem-gata@lalala.bla");
    massiveVoter = user("MassiveWolter", "massive-wolter@bla.bla");
}
Also used : MassiveVote(org.mamute.model.vote.MassiveVote) Before(org.junit.Before)

Aggregations

Before (org.junit.Before)3 MassiveVote (org.mamute.model.vote.MassiveVote)3 RetrieveKarmaDownvote (org.mamute.controllers.RetrieveKarmaDownvote)2 ReputationEventDAO (org.mamute.dao.ReputationEventDAO)2 VoteDAO (org.mamute.dao.VoteDAO)2 VotingMachine (org.mamute.model.vote.VotingMachine)2 KarmaCalculator (org.mamute.reputation.rules.KarmaCalculator)2 InvisibleForUsersRule (org.mamute.dao.InvisibleForUsersRule)1 SuspectMassiveVote (org.mamute.dto.SuspectMassiveVote)1 LoggedUser (org.mamute.model.LoggedUser)1 Tag (org.mamute.model.Tag)1