use of org.eclipse.egit.ui.internal.synchronize.model.GitModelCache in project egit by eclipse.
the class GitChangeSetSorter method compare.
@Override
public int compare(Viewer viewer, Object e1, Object e2) {
if (e1 instanceof GitModelBlob && !(e2 instanceof GitModelBlob))
return 1;
if (e2 instanceof GitModelBlob && !(e1 instanceof GitModelBlob))
return -1;
if (e1 instanceof GitModelWorkingTree)
return -1;
if (e2 instanceof GitModelWorkingTree)
return 1;
if (e1 instanceof GitModelCache)
return -2;
if (e2 instanceof GitModelCache)
return 2;
if ((e1 instanceof GitModelTree && e2 instanceof GitModelTree) || (e1 instanceof GitModelBlob && e2 instanceof GitModelBlob))
return super.compare(viewer, e1, e2);
if (e1 instanceof GitModelTree && e2 instanceof GitModelCommit)
return 1;
if (e1 instanceof GitModelCommit && e2 instanceof GitModelCommit) {
Commit rc1 = ((GitModelCommit) e1).getCachedCommitObj();
Commit rc2 = ((GitModelCommit) e2).getCachedCommitObj();
return rc2.getCommitDate().compareTo(rc1.getCommitDate());
}
return super.compare(viewer, e1, e2);
}
use of org.eclipse.egit.ui.internal.synchronize.model.GitModelCache in project egit by eclipse.
the class GitChangeSetSorterTest method commitTreeShouldBeGreaterThanCache.
@Test
public void commitTreeShouldBeGreaterThanCache() {
// given
Viewer viewer = mock(Viewer.class);
GitChangeSetSorter sorter = new GitChangeSetSorter();
GitModelCommit commit = mock(GitModelCommit.class);
GitModelCache cache = mock(GitModelCache.class);
// when
int actual = sorter.compare(viewer, commit, cache);
// then
assertTrue(actual > 0);
}
use of org.eclipse.egit.ui.internal.synchronize.model.GitModelCache in project egit by eclipse.
the class GitChangeSetSorterTest method cacheTreeShouldBeLessThanCommit.
@Test
public void cacheTreeShouldBeLessThanCommit() {
// given
Viewer viewer = mock(Viewer.class);
GitChangeSetSorter sorter = new GitChangeSetSorter();
GitModelCache cache = mock(GitModelCache.class);
GitModelCommit commit = mock(GitModelCommit.class);
// when
int actual = sorter.compare(viewer, cache, commit);
// then
assertTrue(actual < 0);
}
use of org.eclipse.egit.ui.internal.synchronize.model.GitModelCache in project egit by eclipse.
the class GitChangeSetSorterTest method cacheTreeShouldBeGreaterThanWorkingTree.
/*
* Tests for GitModelCache
*/
@Test
public void cacheTreeShouldBeGreaterThanWorkingTree() {
// given
Viewer viewer = mock(Viewer.class);
GitChangeSetSorter sorter = new GitChangeSetSorter();
GitModelCache cache = mock(GitModelCache.class);
GitModelWorkingTree workingTree = mock(GitModelWorkingTree.class);
// when
int actual = sorter.compare(viewer, cache, workingTree);
// then
assertTrue(actual > 0);
}
use of org.eclipse.egit.ui.internal.synchronize.model.GitModelCache in project egit by eclipse.
the class GitChangeSetSorterTest method cacheTreeShouldBeLessThanTree.
@Test
public void cacheTreeShouldBeLessThanTree() {
// given
Viewer viewer = mock(Viewer.class);
GitChangeSetSorter sorter = new GitChangeSetSorter();
GitModelCache cache = mock(GitModelCache.class);
GitModelTree tree = mock(GitModelTree.class);
// when
int actual = sorter.compare(viewer, cache, tree);
// then
assertTrue(actual < 0);
}
Aggregations