use of com.google.security.zynamics.binnavi.Gui.Users.Interfaces.IUser in project binnavi by google.
the class FunctionTest method testAppendFunctionComment.
@Test
public void testAppendFunctionComment() throws CouldntSaveDataException, com.google.security.zynamics.binnavi.Database.Exceptions.CouldntSaveDataException, CouldntLoadDataException {
final MockFunctionListener listener = new MockFunctionListener();
final Function function = new Function(ModuleFactory.get(), m_internalFunction2);
function.addListener(listener);
final CUserManager userManager = CUserManager.get(m_provider);
final IUser user = userManager.addUser(" SET FUNCTION COMMENT TEST ");
userManager.setCurrentActiveUser(user);
final List<IComment> appendedComments = function.appendComment("Hannes");
assertEquals(appendedComments, function.getComment());
assertEquals(appendedComments, m_internalFunction2.getGlobalComment());
assertEquals("appendedComment;", listener.events);
final ArrayList<IComment> comments = Lists.newArrayList();
comments.add(new CComment(12345, CommonTestObjects.TEST_USER_1, null, "FOO"));
m_internalFunction2.initializeGlobalComment(comments);
assertEquals(comments.get(0), function.getComment().get(0));
assertEquals(comments.get(0), m_internalFunction2.getGlobalComment().get(0));
assertEquals("appendedComment;initializedComments;", listener.events);
function.removeListener(listener);
}
use of com.google.security.zynamics.binnavi.Gui.Users.Interfaces.IUser in project binnavi by google.
the class PostgreSQLGlobalCodeNodeCommentTests method editGlobalCodeNodeComment5.
@Test
public void editGlobalCodeNodeComment5() throws CouldntLoadDataException, CouldntSaveDataException {
final List<IComment> comments = codeNode.getComments().getGlobalCodeNodeComment() == null ? new ArrayList<IComment>() : codeNode.getComments().getGlobalCodeNodeComment();
final IComment lastComment = comments.size() == 0 ? null : Iterables.getLast(comments);
final IUser user = new UniqueTestUserGenerator(getProvider()).nextActiveUser();
final String commentText = " CODE NODE COMMENT TEST BEFORE EDIT ";
final Integer commentId = getProvider().appendGlobalCodeNodeComment(codeNode, commentText, user.getUserId());
final IComment newComment = new CComment(commentId, user, lastComment, commentText);
final ArrayList<IComment> newComments = getProvider().loadCommentById(commentId);
assertNotNull(newComments);
assertEquals(comments.size() + 1, newComments.size());
assertEquals(newComment, Iterables.getLast(newComments));
final String commentAfterEdit = " CODE NODE COMMENT TEST AFTER EDIT ";
getProvider().editGlobalCodeNodeComment(codeNode, commentId, user.getUserId(), commentAfterEdit);
final ArrayList<IComment> commentsAfterEdit = PostgreSQLCommentFunctions.loadCommentByCommentId(getProvider(), commentId);
assertEquals(commentAfterEdit, Iterables.getLast(commentsAfterEdit).getComment());
assertEquals(commentsAfterEdit.size(), newComments.size());
}
use of com.google.security.zynamics.binnavi.Gui.Users.Interfaces.IUser in project binnavi by google.
the class PostgreSQLGlobalCodeNodeCommentTests method deleteGlobalCodeNodeComment4.
@Test
public void deleteGlobalCodeNodeComment4() throws CouldntLoadDataException, CouldntSaveDataException, CouldntDeleteException {
final List<IComment> comments = codeNode.getComments().getGlobalCodeNodeComment() == null ? new ArrayList<IComment>() : codeNode.getComments().getGlobalCodeNodeComment();
final IComment lastComment = comments.size() == 0 ? null : Iterables.getLast(comments);
final String commentString = " TEST DELETE GLOBAL CODE NODE COMMENT ";
final IUser user = new UniqueTestUserGenerator(getProvider()).nextActiveUser();
final int commentId = getProvider().appendGlobalCodeNodeComment(codeNode, commentString, user.getUserId());
final IComment newComment = new CComment(commentId, user, lastComment, commentString);
final ArrayList<IComment> storedComments = getProvider().loadCommentById(commentId);
assertNotNull(storedComments);
assertEquals(comments.size() + 1, storedComments.size());
assertEquals(newComment, Iterables.getLast(storedComments));
getProvider().deleteGlobalCodeNodeComment(codeNode, commentId, newComment.getUser().getUserId());
final ArrayList<IComment> commentsAfterDelete = getProvider().loadCommentById(commentId);
assertNotNull(commentsAfterDelete);
assertTrue(commentsAfterDelete.isEmpty());
}
use of com.google.security.zynamics.binnavi.Gui.Users.Interfaces.IUser in project binnavi by google.
the class PostgreSQLGlobalCodeNodeCommentTests method appendGlobalCodeNodeComment4.
@Test
public void appendGlobalCodeNodeComment4() throws CouldntSaveDataException {
final IUser user = new UniqueTestUserGenerator(getProvider()).nextActiveUser();
getProvider().appendGlobalCodeNodeComment(codeNode, " PASS GLOBAL CODE NODE COMMENT ", user.getUserId());
}
use of com.google.security.zynamics.binnavi.Gui.Users.Interfaces.IUser in project binnavi by google.
the class PostgreSQLGlobalCodeNodeCommentTests method deleteGlobalCodeNodeComment7.
/**
* This test checks if the delete of a comment in a series of comments works if the comment is the
* first comment.
*
* <pre>
* Comment 1:
* Comment 2: -> Comment 2:
* Comment 3: Comment 3:
* </pre>
*/
@Test
public void deleteGlobalCodeNodeComment7() throws CouldntLoadDataException, CouldntSaveDataException, CouldntDeleteException {
final IUser user = new UniqueTestUserGenerator(getProvider()).nextActiveUser();
final List<IComment> storedComments = codeNode.getComments().getGlobalCodeNodeComment() == null ? new ArrayList<IComment>() : codeNode.getComments().getGlobalCodeNodeComment();
final IComment lastComment = storedComments.isEmpty() ? null : Iterables.getLast(storedComments);
final String comment1String = " Comment 1: ";
final int comment1Id = getProvider().appendGlobalCodeNodeComment(codeNode, comment1String, user.getUserId());
final IComment comment1 = new CComment(comment1Id, user, lastComment, comment1String);
final String comment2String = " Comment 2: ";
final int comment2Id = getProvider().appendGlobalCodeNodeComment(codeNode, comment2String, user.getUserId());
final IComment comment2 = new CComment(comment2Id, user, comment1, comment2String);
final String comment3String = " Comment 3: ";
final int comment3Id = getProvider().appendGlobalCodeNodeComment(codeNode, comment3String, user.getUserId());
final IComment comment3 = new CComment(comment3Id, user, comment2, comment3String);
final ArrayList<IComment> commentsBeforeDelete = getProvider().loadCommentById(comment3Id);
assertNotNull(commentsBeforeDelete);
assertEquals(storedComments.size() + 3, commentsBeforeDelete.size());
assertTrue(commentsBeforeDelete.contains(comment1));
assertTrue(commentsBeforeDelete.contains(comment2));
assertTrue(commentsBeforeDelete.contains(comment3));
assertEquals(comment3, Iterables.getLast(commentsBeforeDelete));
assertEquals(comment2, commentsBeforeDelete.get(commentsBeforeDelete.size() - 2));
assertEquals(comment1, commentsBeforeDelete.get(commentsBeforeDelete.size() - 3));
getProvider().deleteGlobalCodeNodeComment(codeNode, comment1Id, user.getUserId());
final ArrayList<IComment> commentsAfterDelete1 = getProvider().loadCommentById(comment1Id);
assertNotNull(commentsAfterDelete1);
assertTrue(commentsAfterDelete1.isEmpty());
final ArrayList<IComment> commentsAfterDelete2 = getProvider().loadCommentById(comment3Id);
final IComment comment2AfterDelete = new CComment(comment2Id, user, lastComment, comment2String);
final IComment comment3AfterDelete = new CComment(comment3Id, user, comment2AfterDelete, comment3String);
assertNotNull(commentsAfterDelete2);
assertEquals(storedComments.size() + 2, commentsAfterDelete2.size());
assertTrue(commentsAfterDelete2.contains(comment3AfterDelete));
assertTrue(commentsAfterDelete2.contains(comment2AfterDelete));
assertEquals(comment3AfterDelete, Iterables.getLast(commentsAfterDelete2));
assertEquals(comment2AfterDelete, commentsAfterDelete2.get(commentsAfterDelete2.size() - 2));
}
Aggregations