Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 29a91a42070f965b2ba4f447a558ea24916b6ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*******************************************************************************
 * Copyright (c) 2006, 2007 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.tests.ccvs.core;

import java.lang.reflect.InvocationTargetException;
import java.util.*;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.core.client.Command;
import org.eclipse.team.internal.ccvs.core.client.RLog;
import org.eclipse.team.internal.ccvs.core.client.Command.LocalOption;
import org.eclipse.team.internal.ccvs.core.connection.CVSRepositoryLocation;
import org.eclipse.team.internal.ccvs.ui.operations.RemoteLogOperation;
import org.eclipse.ui.IWorkbenchPart;

public class FindCommittersTest extends EclipseTest {

	public class FindCommittersOperation extends RemoteLogOperation {
		private LogEntryCache cache;
		private Set<String> authors;

		public FindCommittersOperation(IWorkbenchPart part,
				ICVSRemoteResource[] remoteResources, CVSTag tag1, CVSTag tag2,
				LogEntryCache cache) {
			super(part, remoteResources, tag1, tag2, cache);
			this.cache = cache;
		}

		@Override
		protected LocalOption[] getLocalOptions(CVSTag tag1, CVSTag tag2) {
			return new Command.LocalOption[] {RLog.NO_TAGS, RLog.ONLY_INCLUDE_CHANGES, RLog.REVISIONS_ON_DEFAULT_BRANCH, new LocalOption("-d" + tag1.asDate() + "<" + tag2.asDate().toString(), null) {
				
			}};
		}

		@Override
		protected void execute(ICVSRepositoryLocation location,
				ICVSRemoteResource[] remoteResources, IProgressMonitor monitor)
				throws CVSException {
			super.execute(location, remoteResources, monitor);
			processAuthors();
		}

		private void processAuthors() {
			authors = getAuthors(cache);
		}
		
		private Set<String> getAuthors(RemoteLogOperation.LogEntryCache logEntryCache) {
			String[] paths = logEntryCache.getCachedFilePaths();
			Set<String> authors = new HashSet<>();
			for (int i = 0; i < paths.length; i++) {
				String path = paths[i];
				ILogEntry[] entries = logEntryCache.getLogEntries(path);
				for (int j = 0; j < entries.length; j++) {
					ILogEntry entry = entries[j];
					authors.add(entry.getAuthor());
				}
			}
			return authors;
		}

		public Set<String> getAuthors() {
			return authors;
		}
	}
	
	/**
	 * Constructor for CVSProviderTest
	 */
	public FindCommittersTest() {
		super();
	}

	/**
	 * Constructor for CVSProviderTest
	 */
	public FindCommittersTest(String name) {
		super(name);
	}

	public static Test suite() {
		return new TestSuite(FindCommittersTest.class);
	}
	
	public void testFetchLogs() throws CVSException, InvocationTargetException, InterruptedException {
		CVSRepositoryLocation location = CVSRepositoryLocation.fromString(":pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse");
		ICVSRemoteResource[] members = location.members(null, false, DEFAULT_MONITOR);
		Set<String> authors = fetchLogs(members);
		for (String name : authors) {
			System.out.println(name);
		}
	}

	private Set<String> fetchLogs(
			ICVSRemoteResource[] members) throws InvocationTargetException,
			InterruptedException {
		CVSTag tag1 = new CVSTag(new GregorianCalendar(2001, 10, 7).getTime());
		CVSTag tag2 = new CVSTag(new Date());
		RemoteLogOperation.LogEntryCache logEntryCache = new RemoteLogOperation.LogEntryCache();
		FindCommittersOperation op = new FindCommittersOperation(null, members, tag1, tag2, logEntryCache);
		op.run(DEFAULT_MONITOR);
		return op.getAuthors();
	}
}

Back to the top