diff hg4j/src/test/java/org/tmatesoft/hg/test/TestManifest.java @ 213:6ec4af642ba8 gradle

Project uses Gradle for build - actual changes
author Alexander Kitaev <kitaev@gmail.com>
date Tue, 10 May 2011 10:52:53 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hg4j/src/test/java/org/tmatesoft/hg/test/TestManifest.java	Tue May 10 10:52:53 2011 +0200
@@ -0,0 +1,120 @@
+/*
+ * Copyright (c) 2011 TMate Software Ltd
+ *  
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * For information on how to redistribute this software under
+ * the terms of a license other than GNU General Public License
+ * contact TMate Software at support@hg4j.com
+ */
+package org.tmatesoft.hg.test;
+
+import static org.hamcrest.CoreMatchers.equalTo;
+import static org.hamcrest.CoreMatchers.notNullValue;
+import static org.junit.Assert.assertTrue;
+import static org.tmatesoft.hg.repo.HgRepository.TIP;
+
+import java.util.Collections;
+import java.util.LinkedHashMap;
+import java.util.LinkedList;
+import java.util.Map;
+
+import org.junit.Rule;
+import org.junit.Test;
+import org.tmatesoft.hg.core.HgLogCommand.FileRevision;
+import org.tmatesoft.hg.core.HgManifestCommand;
+import org.tmatesoft.hg.core.Nodeid;
+import org.tmatesoft.hg.repo.HgLookup;
+import org.tmatesoft.hg.repo.HgRepository;
+import org.tmatesoft.hg.util.Path;
+
+
+/**
+ *
+ * @author Artem Tikhomirov
+ * @author TMate Software Ltd.
+ */
+public class TestManifest {
+
+	@Rule
+	public ErrorCollectorExt errorCollector = new ErrorCollectorExt();
+
+	private final HgRepository repo;
+	private ManifestOutputParser manifestParser;
+	private ExecHelper eh;
+	final LinkedList<FileRevision> revisions = new LinkedList<FileRevision>();
+	private HgManifestCommand.Handler handler  = new HgManifestCommand.Handler() {
+		
+		public void file(FileRevision fileRevision) {
+			revisions.add(fileRevision);
+		}
+		
+		public void end(Nodeid manifestRevision) {}
+		public void dir(Path p) {}
+		public void begin(Nodeid manifestRevision) {}
+	};
+
+	public static void main(String[] args) throws Throwable {
+		TestManifest tm = new TestManifest();
+		tm.testTip();
+		tm.testFirstRevision();
+		tm.testRevisionInTheMiddle();
+		tm.errorCollector.verify();
+	}
+	
+	public TestManifest() throws Exception {
+		this(new HgLookup().detectFromWorkingDir());
+	}
+
+	private TestManifest(HgRepository hgRepo) {
+		repo = hgRepo;
+		assertTrue(!repo.isInvalid());
+		eh = new ExecHelper(manifestParser = new ManifestOutputParser(), null);
+	}
+
+	@Test
+	public void testTip() throws Exception {
+		testRevision(TIP);
+	}
+
+	@Test
+	public void testFirstRevision() throws Exception {
+		testRevision(0);
+	}
+	
+	@Test
+	public void testRevisionInTheMiddle() throws Exception {
+		int rev = repo.getManifest().getRevisionCount() / 2;
+		if (rev == 0) {
+			throw new IllegalStateException("Need manifest with few revisions");
+		}
+		testRevision(rev);
+	}
+
+	private void testRevision(int rev) throws Exception {
+		manifestParser.reset();
+		eh.run("hg", "manifest", "--debug", "--rev", String.valueOf(rev == TIP ? -1 : rev));
+		revisions.clear();
+		new HgManifestCommand(repo).revision(rev).execute(handler);
+		report("manifest " + (rev == TIP ? "TIP:" : "--rev " + rev));
+	}
+
+	private void report(String what) throws Exception {
+		final Map<Path, Nodeid> cmdLineResult = new LinkedHashMap<Path, Nodeid>(manifestParser.getResult());
+		for (FileRevision fr : revisions) {
+			Nodeid nid = cmdLineResult.remove(fr.getPath());
+			errorCollector.checkThat("Extra " + fr.getPath() + " in Java result", nid, notNullValue());
+			if (nid != null) {
+				errorCollector.checkThat("Non-matching nodeid:" + nid, nid, equalTo(fr.getRevision()));
+			}
+		}
+		errorCollector.checkThat("Non-matched entries from command line:", cmdLineResult, equalTo(Collections.<Path,Nodeid>emptyMap()));
+	}
+}