]> source.dussan.org Git - jgit.git/commitdiff
Don't crash if we try to load the config for a MockSystemReader 47/147/3
authorRobin Rosenberg <robin.rosenberg@dewire.com>
Mon, 14 Dec 2009 08:06:22 +0000 (09:06 +0100)
committerShawn O. Pearce <spearce@spearce.org>
Tue, 22 Dec 2009 00:36:53 +0000 (16:36 -0800)
Instead do nothing.  For now, save() will fail and the config
file is set to null, which may surprise some calling tests.

Change-Id: I1c65f8b1131569da01b4ef33678d813565521fbb
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/MockSystemReader.java

index 87125d280c204eef3be86b725bd9f5acf44dc324..306d432e63c1533181ee05eeeab98c7f9b36a4c4 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright (C) 2009, Google Inc.
+ * Copyright (C) 2009, Robin Rosenberg <robin.rosenberg@dewire.com>
  * Copyright (C) 2009, Yann Simon <yann.simon.fr@gmail.com>
  * and other copyright owners as documented in the project's IP log.
  *
 
 package org.eclipse.jgit.junit;
 
+import java.io.IOException;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.TimeZone;
 
+import org.eclipse.jgit.errors.ConfigInvalidException;
 import org.eclipse.jgit.lib.Constants;
 import org.eclipse.jgit.lib.FileBasedConfig;
 import org.eclipse.jgit.util.SystemReader;
@@ -63,7 +66,11 @@ public class MockSystemReader extends SystemReader {
                init(Constants.GIT_AUTHOR_EMAIL_KEY);
                init(Constants.GIT_COMMITTER_NAME_KEY);
                init(Constants.GIT_COMMITTER_EMAIL_KEY);
-               userGitConfig = new FileBasedConfig(null);
+               userGitConfig = new FileBasedConfig(null) {
+                       @Override
+                       public void load() throws IOException, ConfigInvalidException {
+                               // Do nothing
+                       }};
        }
 
        private void init(final String n) {