You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConfigTest.java 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. /*
  2. * Copyright (C) 2007, Dave Watson <dwatson@mimvista.com>
  3. * Copyright (C) 2009-2010, Google Inc.
  4. * Copyright (C) 2008, Marek Zawirski <marek.zawirski@gmail.com>
  5. * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
  6. * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
  7. * Copyright (C) 2010, Mathias Kinzler <mathias.kinzler@sap.com>
  8. * and other copyright owners as documented in the project's IP log.
  9. *
  10. * This program and the accompanying materials are made available
  11. * under the terms of the Eclipse Distribution License v1.0 which
  12. * accompanies this distribution, is reproduced below, and is
  13. * available at http://www.eclipse.org/org/documents/edl-v10.php
  14. *
  15. * All rights reserved.
  16. *
  17. * Redistribution and use in source and binary forms, with or
  18. * without modification, are permitted provided that the following
  19. * conditions are met:
  20. *
  21. * - Redistributions of source code must retain the above copyright
  22. * notice, this list of conditions and the following disclaimer.
  23. *
  24. * - Redistributions in binary form must reproduce the above
  25. * copyright notice, this list of conditions and the following
  26. * disclaimer in the documentation and/or other materials provided
  27. * with the distribution.
  28. *
  29. * - Neither the name of the Eclipse Foundation, Inc. nor the
  30. * names of its contributors may be used to endorse or promote
  31. * products derived from this software without specific prior
  32. * written permission.
  33. *
  34. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  35. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  36. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  38. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  39. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  41. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  42. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  43. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  44. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  45. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  46. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47. */
  48. package org.eclipse.jgit.lib;
  49. import static org.junit.Assert.assertEquals;
  50. import static org.junit.Assert.assertFalse;
  51. import static org.junit.Assert.assertNotNull;
  52. import static org.junit.Assert.assertNull;
  53. import static org.junit.Assert.assertSame;
  54. import static org.junit.Assert.assertTrue;
  55. import static org.junit.Assert.fail;
  56. import java.text.MessageFormat;
  57. import java.util.Arrays;
  58. import java.util.Iterator;
  59. import java.util.LinkedList;
  60. import java.util.Set;
  61. import org.eclipse.jgit.errors.ConfigInvalidException;
  62. import org.eclipse.jgit.junit.MockSystemReader;
  63. import org.eclipse.jgit.util.FS;
  64. import org.eclipse.jgit.util.SystemReader;
  65. import org.junit.Test;
  66. /**
  67. * Test reading of git config
  68. */
  69. public class ConfigTest {
  70. @Test
  71. public void test001_ReadBareKey() throws ConfigInvalidException {
  72. final Config c = parse("[foo]\nbar\n");
  73. assertEquals(true, c.getBoolean("foo", null, "bar", false));
  74. assertEquals("", c.getString("foo", null, "bar"));
  75. }
  76. @Test
  77. public void test002_ReadWithSubsection() throws ConfigInvalidException {
  78. final Config c = parse("[foo \"zip\"]\nbar\n[foo \"zap\"]\nbar=false\nn=3\n");
  79. assertEquals(true, c.getBoolean("foo", "zip", "bar", false));
  80. assertEquals("", c.getString("foo","zip", "bar"));
  81. assertEquals(false, c.getBoolean("foo", "zap", "bar", true));
  82. assertEquals("false", c.getString("foo", "zap", "bar"));
  83. assertEquals(3, c.getInt("foo", "zap", "n", 4));
  84. assertEquals(4, c.getInt("foo", "zap","m", 4));
  85. }
  86. @Test
  87. public void test003_PutRemote() {
  88. final Config c = new Config();
  89. c.setString("sec", "ext", "name", "value");
  90. c.setString("sec", "ext", "name2", "value2");
  91. final String expText = "[sec \"ext\"]\n\tname = value\n\tname2 = value2\n";
  92. assertEquals(expText, c.toText());
  93. }
  94. @Test
  95. public void test004_PutGetSimple() {
  96. Config c = new Config();
  97. c.setString("my", null, "somename", "false");
  98. assertEquals("false", c.getString("my", null, "somename"));
  99. assertEquals("[my]\n\tsomename = false\n", c.toText());
  100. }
  101. @Test
  102. public void test005_PutGetStringList() {
  103. Config c = new Config();
  104. final LinkedList<String> values = new LinkedList<String>();
  105. values.add("value1");
  106. values.add("value2");
  107. c.setStringList("my", null, "somename", values);
  108. final Object[] expArr = values.toArray();
  109. final String[] actArr = c.getStringList("my", null, "somename");
  110. assertTrue(Arrays.equals(expArr, actArr));
  111. final String expText = "[my]\n\tsomename = value1\n\tsomename = value2\n";
  112. assertEquals(expText, c.toText());
  113. }
  114. @Test
  115. public void test006_readCaseInsensitive() throws ConfigInvalidException {
  116. final Config c = parse("[Foo]\nBar\n");
  117. assertEquals(true, c.getBoolean("foo", null, "bar", false));
  118. assertEquals("", c.getString("foo", null, "bar"));
  119. }
  120. @Test
  121. public void test007_readUserConfig() {
  122. final MockSystemReader mockSystemReader = new MockSystemReader();
  123. SystemReader.setInstance(mockSystemReader);
  124. final String hostname = mockSystemReader.getHostname();
  125. final Config userGitConfig = mockSystemReader.openUserConfig(null,
  126. FS.DETECTED);
  127. final Config localConfig = new Config(userGitConfig);
  128. mockSystemReader.clearProperties();
  129. String authorName;
  130. String authorEmail;
  131. // no values defined nowhere
  132. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  133. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  134. assertEquals(Constants.UNKNOWN_USER_DEFAULT, authorName);
  135. assertEquals(Constants.UNKNOWN_USER_DEFAULT + "@" + hostname, authorEmail);
  136. // the system user name is defined
  137. mockSystemReader.setProperty(Constants.OS_USER_NAME_KEY, "os user name");
  138. localConfig.uncache(UserConfig.KEY);
  139. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  140. assertEquals("os user name", authorName);
  141. if (hostname != null && hostname.length() != 0) {
  142. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  143. assertEquals("os user name@" + hostname, authorEmail);
  144. }
  145. // the git environment variables are defined
  146. mockSystemReader.setProperty(Constants.GIT_AUTHOR_NAME_KEY, "git author name");
  147. mockSystemReader.setProperty(Constants.GIT_AUTHOR_EMAIL_KEY, "author@email");
  148. localConfig.uncache(UserConfig.KEY);
  149. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  150. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  151. assertEquals("git author name", authorName);
  152. assertEquals("author@email", authorEmail);
  153. // the values are defined in the global configuration
  154. userGitConfig.setString("user", null, "name", "global username");
  155. userGitConfig.setString("user", null, "email", "author@globalemail");
  156. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  157. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  158. assertEquals("global username", authorName);
  159. assertEquals("author@globalemail", authorEmail);
  160. // the values are defined in the local configuration
  161. localConfig.setString("user", null, "name", "local username");
  162. localConfig.setString("user", null, "email", "author@localemail");
  163. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  164. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  165. assertEquals("local username", authorName);
  166. assertEquals("author@localemail", authorEmail);
  167. authorName = localConfig.get(UserConfig.KEY).getCommitterName();
  168. authorEmail = localConfig.get(UserConfig.KEY).getCommitterEmail();
  169. assertEquals("local username", authorName);
  170. assertEquals("author@localemail", authorEmail);
  171. }
  172. @Test
  173. public void testReadBoolean_TrueFalse1() throws ConfigInvalidException {
  174. final Config c = parse("[s]\na = true\nb = false\n");
  175. assertEquals("true", c.getString("s", null, "a"));
  176. assertEquals("false", c.getString("s", null, "b"));
  177. assertTrue(c.getBoolean("s", "a", false));
  178. assertFalse(c.getBoolean("s", "b", true));
  179. }
  180. @Test
  181. public void testReadBoolean_TrueFalse2() throws ConfigInvalidException {
  182. final Config c = parse("[s]\na = TrUe\nb = fAlSe\n");
  183. assertEquals("TrUe", c.getString("s", null, "a"));
  184. assertEquals("fAlSe", c.getString("s", null, "b"));
  185. assertTrue(c.getBoolean("s", "a", false));
  186. assertFalse(c.getBoolean("s", "b", true));
  187. }
  188. @Test
  189. public void testReadBoolean_YesNo1() throws ConfigInvalidException {
  190. final Config c = parse("[s]\na = yes\nb = no\n");
  191. assertEquals("yes", c.getString("s", null, "a"));
  192. assertEquals("no", c.getString("s", null, "b"));
  193. assertTrue(c.getBoolean("s", "a", false));
  194. assertFalse(c.getBoolean("s", "b", true));
  195. }
  196. @Test
  197. public void testReadBoolean_YesNo2() throws ConfigInvalidException {
  198. final Config c = parse("[s]\na = yEs\nb = NO\n");
  199. assertEquals("yEs", c.getString("s", null, "a"));
  200. assertEquals("NO", c.getString("s", null, "b"));
  201. assertTrue(c.getBoolean("s", "a", false));
  202. assertFalse(c.getBoolean("s", "b", true));
  203. }
  204. @Test
  205. public void testReadBoolean_OnOff1() throws ConfigInvalidException {
  206. final Config c = parse("[s]\na = on\nb = off\n");
  207. assertEquals("on", c.getString("s", null, "a"));
  208. assertEquals("off", c.getString("s", null, "b"));
  209. assertTrue(c.getBoolean("s", "a", false));
  210. assertFalse(c.getBoolean("s", "b", true));
  211. }
  212. @Test
  213. public void testReadBoolean_OnOff2() throws ConfigInvalidException {
  214. final Config c = parse("[s]\na = ON\nb = OFF\n");
  215. assertEquals("ON", c.getString("s", null, "a"));
  216. assertEquals("OFF", c.getString("s", null, "b"));
  217. assertTrue(c.getBoolean("s", "a", false));
  218. assertFalse(c.getBoolean("s", "b", true));
  219. }
  220. static enum TestEnum {
  221. ONE_TWO;
  222. }
  223. @Test
  224. public void testGetEnum() throws ConfigInvalidException {
  225. Config c = parse("[s]\na = ON\nb = input\nc = true\nd = off\n");
  226. assertSame(CoreConfig.AutoCRLF.TRUE, c.getEnum("s", null, "a",
  227. CoreConfig.AutoCRLF.FALSE));
  228. assertSame(CoreConfig.AutoCRLF.INPUT, c.getEnum("s", null, "b",
  229. CoreConfig.AutoCRLF.FALSE));
  230. assertSame(CoreConfig.AutoCRLF.TRUE, c.getEnum("s", null, "c",
  231. CoreConfig.AutoCRLF.FALSE));
  232. assertSame(CoreConfig.AutoCRLF.FALSE, c.getEnum("s", null, "d",
  233. CoreConfig.AutoCRLF.TRUE));
  234. c = new Config();
  235. assertSame(CoreConfig.AutoCRLF.FALSE, c.getEnum("s", null, "d",
  236. CoreConfig.AutoCRLF.FALSE));
  237. c = parse("[s \"b\"]\n\tc = one two\n");
  238. assertSame(TestEnum.ONE_TWO, c.getEnum("s", "b", "c", TestEnum.ONE_TWO));
  239. }
  240. @Test
  241. public void testSetEnum() {
  242. final Config c = new Config();
  243. c.setEnum("s", "b", "c", TestEnum.ONE_TWO);
  244. assertEquals("[s \"b\"]\n\tc = one two\n", c.toText());
  245. }
  246. @Test
  247. public void testReadLong() throws ConfigInvalidException {
  248. assertReadLong(1L);
  249. assertReadLong(-1L);
  250. assertReadLong(Long.MIN_VALUE);
  251. assertReadLong(Long.MAX_VALUE);
  252. assertReadLong(4L * 1024 * 1024 * 1024, "4g");
  253. assertReadLong(3L * 1024 * 1024, "3 m");
  254. assertReadLong(8L * 1024, "8 k");
  255. try {
  256. assertReadLong(-1, "1.5g");
  257. fail("incorrectly accepted 1.5g");
  258. } catch (IllegalArgumentException e) {
  259. assertEquals("Invalid integer value: s.a=1.5g", e.getMessage());
  260. }
  261. }
  262. @Test
  263. public void testBooleanWithNoValue() throws ConfigInvalidException {
  264. Config c = parse("[my]\n\tempty\n");
  265. assertEquals("", c.getString("my", null, "empty"));
  266. assertEquals(1, c.getStringList("my", null, "empty").length);
  267. assertEquals("", c.getStringList("my", null, "empty")[0]);
  268. assertTrue(c.getBoolean("my", "empty", false));
  269. assertEquals("[my]\n\tempty\n", c.toText());
  270. }
  271. @Test
  272. public void testEmptyString() throws ConfigInvalidException {
  273. Config c = parse("[my]\n\tempty =\n");
  274. assertNull(c.getString("my", null, "empty"));
  275. String[] values = c.getStringList("my", null, "empty");
  276. assertNotNull(values);
  277. assertEquals(1, values.length);
  278. assertNull(values[0]);
  279. // always matches the default, because its non-boolean
  280. assertTrue(c.getBoolean("my", "empty", true));
  281. assertFalse(c.getBoolean("my", "empty", false));
  282. assertEquals("[my]\n\tempty =\n", c.toText());
  283. c = new Config();
  284. c.setStringList("my", null, "empty", Arrays.asList(values));
  285. assertEquals("[my]\n\tempty =\n", c.toText());
  286. }
  287. @Test
  288. public void testUnsetBranchSection() throws ConfigInvalidException {
  289. Config c = parse("" //
  290. + "[branch \"keep\"]\n"
  291. + " merge = master.branch.to.keep.in.the.file\n"
  292. + "\n"
  293. + "[branch \"remove\"]\n"
  294. + " merge = this.will.get.deleted\n"
  295. + " remote = origin-for-some-long-gone-place\n"
  296. + "\n"
  297. + "[core-section-not-to-remove-in-test]\n"
  298. + " packedGitLimit = 14\n");
  299. c.unsetSection("branch", "does.not.exist");
  300. c.unsetSection("branch", "remove");
  301. assertEquals("" //
  302. + "[branch \"keep\"]\n"
  303. + " merge = master.branch.to.keep.in.the.file\n"
  304. + "\n"
  305. + "[core-section-not-to-remove-in-test]\n"
  306. + " packedGitLimit = 14\n", c.toText());
  307. }
  308. @Test
  309. public void testUnsetSingleSection() throws ConfigInvalidException {
  310. Config c = parse("" //
  311. + "[branch \"keep\"]\n"
  312. + " merge = master.branch.to.keep.in.the.file\n"
  313. + "\n"
  314. + "[single]\n"
  315. + " merge = this.will.get.deleted\n"
  316. + " remote = origin-for-some-long-gone-place\n"
  317. + "\n"
  318. + "[core-section-not-to-remove-in-test]\n"
  319. + " packedGitLimit = 14\n");
  320. c.unsetSection("single", null);
  321. assertEquals("" //
  322. + "[branch \"keep\"]\n"
  323. + " merge = master.branch.to.keep.in.the.file\n"
  324. + "\n"
  325. + "[core-section-not-to-remove-in-test]\n"
  326. + " packedGitLimit = 14\n", c.toText());
  327. }
  328. @Test
  329. public void test008_readSectionNames() throws ConfigInvalidException {
  330. final Config c = parse("[a]\n [B]\n");
  331. Set<String> sections = c.getSections();
  332. assertTrue("Sections should contain \"a\"", sections.contains("a"));
  333. assertTrue("Sections should contain \"b\"", sections.contains("b"));
  334. }
  335. @Test
  336. public void test009_readNamesInSection() throws ConfigInvalidException {
  337. String configString = "[core]\n" + "repositoryFormatVersion = 0\n"
  338. + "filemode = false\n" + "logAllRefUpdates = true\n";
  339. final Config c = parse(configString);
  340. Set<String> names = c.getNames("core");
  341. assertEquals("Core section size", 3, names.size());
  342. assertTrue("Core section should contain \"filemode\"", names
  343. .contains("filemode"));
  344. assertTrue("Core section should contain \"repositoryFormatVersion\"",
  345. names.contains("repositoryFormatVersion"));
  346. assertTrue("Core section should contain \"repositoryformatversion\"",
  347. names.contains("repositoryformatversion"));
  348. Iterator<String> itr = names.iterator();
  349. assertEquals("repositoryFormatVersion", itr.next());
  350. assertEquals("filemode", itr.next());
  351. assertEquals("logAllRefUpdates", itr.next());
  352. assertFalse(itr.hasNext());
  353. }
  354. @Test
  355. public void test010_readNamesInSubSection() throws ConfigInvalidException {
  356. String configString = "[a \"sub1\"]\n"//
  357. + "x = 0\n" //
  358. + "y = false\n"//
  359. + "z = true\n"//
  360. + "[a \"sub2\"]\n"//
  361. + "a=0\n"//
  362. + "b=1\n";
  363. final Config c = parse(configString);
  364. Set<String> names = c.getNames("a", "sub1");
  365. assertEquals("Subsection size", 3, names.size());
  366. assertTrue("Subsection should contain \"x\"", names.contains("x"));
  367. assertTrue("Subsection should contain \"y\"", names.contains("y"));
  368. assertTrue("Subsection should contain \"z\"", names.contains("z"));
  369. names = c.getNames("a", "sub2");
  370. assertEquals("Subsection size", 2, names.size());
  371. assertTrue("Subsection should contain \"a\"", names.contains("a"));
  372. assertTrue("Subsection should contain \"b\"", names.contains("b"));
  373. }
  374. @Test
  375. public void testQuotingForSubSectionNames() {
  376. String resultPattern = "[testsection \"{0}\"]\n\ttestname = testvalue\n";
  377. String result;
  378. Config config = new Config();
  379. config.setString("testsection", "testsubsection", "testname",
  380. "testvalue");
  381. result = MessageFormat.format(resultPattern, "testsubsection");
  382. assertEquals(result, config.toText());
  383. config.clear();
  384. config.setString("testsection", "#quotable", "testname", "testvalue");
  385. result = MessageFormat.format(resultPattern, "#quotable");
  386. assertEquals(result, config.toText());
  387. config.clear();
  388. config.setString("testsection", "with\"quote", "testname", "testvalue");
  389. result = MessageFormat.format(resultPattern, "with\\\"quote");
  390. assertEquals(result, config.toText());
  391. }
  392. private void assertReadLong(long exp) throws ConfigInvalidException {
  393. assertReadLong(exp, String.valueOf(exp));
  394. }
  395. private void assertReadLong(long exp, String act)
  396. throws ConfigInvalidException {
  397. final Config c = parse("[s]\na = " + act + "\n");
  398. assertEquals(exp, c.getLong("s", null, "a", 0L));
  399. }
  400. private Config parse(final String content) throws ConfigInvalidException {
  401. final Config c = new Config(null);
  402. c.fromText(content);
  403. return c;
  404. }
  405. }