use of org.mamute.model.QuestionInformation in project mamute by caelum.
the class QuestionTest method should_be_touched_by_original_author_after_edit.
@Test
public void should_be_touched_by_original_author_after_edit() throws Exception {
User artur = user("artur", "artur@x.com");
artur.setId(1l);
Question comoFaz = question.withTitle("titulo").withDescription("descricao").withAuthor(artur).build();
User leo = user("leo", "leo@x.com");
leo.setId(2l);
QuestionInformation info = new QuestionInformationBuilder().with(leo).build();
comoFaz.updateWith(info, updater);
assertEquals(comoFaz.getLastTouchedBy().getId(), artur.getId());
}
use of org.mamute.model.QuestionInformation in project mamute by caelum.
the class UpdaterTest method should_update_if_is_the_author.
@Test
public void should_update_if_is_the_author() {
QuestionInformation newInformation = new QuestionInformation("title", notMarked("description"), new LoggedUser(author, null));
UpdateStatus update = updater.update(myQuestion, newInformation);
assertEquals(UpdateStatus.NO_NEED_TO_APPROVE, update);
assertTrue(myQuestion.getHistory().contains(newInformation));
}
use of org.mamute.model.QuestionInformation in project mamute by caelum.
the class UpdaterTest method should_update_if_is_moderator.
@Test
public void should_update_if_is_moderator() {
User moderator = user("moderator", "moderator@brutal", nextId()).asModerator();
QuestionInformation newInformation = new QuestionInformation("title", notMarked("description"), new LoggedUser(moderator, null));
UpdateStatus update = updater.update(myQuestion, newInformation);
assertEquals(UpdateStatus.NO_NEED_TO_APPROVE, update);
assertTrue(myQuestion.getHistory().contains(newInformation));
}
Aggregations