/******************************************************************************* * Copyright (C) 2011, Dariusz Luksza <dariusz@luksza.org> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.eclipse.egit.ui.internal.synchronize.model; import static org.eclipse.jgit.lib.Constants.HEAD; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; import java.io.File; import org.eclipse.egit.ui.Activator; import org.junit.Before; import org.junit.Test; public class GitModelCommitTest extends GitModelTestCase { @Test public void shouldReturnEqualForSameInstance() throws Exception { // given GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); // when boolean actual = left.equals(left); // then assertTrue(actual); } @Test public void shouldReturnNotEqualForDifferentCommits() throws Exception { // given GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); GitModelCommit right = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD + "~1"), null); // when boolean actual = left.equals(right); // then assertFalse(actual); } @Test public void shouldReturnNotEqualForDifferentParents() throws Exception { // given File localRightRepoFile = createProjectAndCommitToRepository(REPO2); GitModelRepository rightGsd = new GitModelRepository( getGSD(lookupRepository(localRightRepoFile))); GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); GitModelCommit right = new GitModelCommit(rightGsd, lookupRepository(leftRepoFile), getCommit(localRightRepoFile, HEAD), null); // when boolean actual = left.equals(right); // then assertFalse(actual); } @Test public void shouldReturnEqualForSameCommits() throws Exception { // given GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); GitModelCommit right = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); // when boolean actual = left.equals(right); // then assertTrue(actual); } @Test public void shouldReturnNotEqualWhenCommitTreeAndCache() throws Exception { // given GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); GitModelCache right = mock(GitModelCache.class); // when boolean actual = left.equals(right); // then assertFalse(actual); } @Test public void shouldReturnNotEqualWhenCommitTreeAndTree() throws Exception { // given GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); GitModelTree right = mock(GitModelTree.class); // when boolean actual = left.equals(right); // then assertFalse(actual); } @Test public void shouldReturnNotEqualWhenCommitTreeAndBlob() throws Exception { // given GitModelCommit left = new GitModelCommit(createModelRepository(), lookupRepository(leftRepoFile), getCommit(leftRepoFile, HEAD), null); GitModelBlob right = mock(GitModelBlob.class); // when boolean actual = left.equals(right); // then assertFalse(actual); } @Before public void setupEnvironment() throws Exception { leftRepoFile = createProjectAndCommitToRepository(); Activator.getDefault().getRepositoryUtil() .addConfiguredRepository(leftRepoFile); } }