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 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  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.LinkedList;
  59. import java.util.Set;
  60. import org.eclipse.jgit.errors.ConfigInvalidException;
  61. import org.eclipse.jgit.junit.MockSystemReader;
  62. import org.eclipse.jgit.util.FS;
  63. import org.eclipse.jgit.util.SystemReader;
  64. import org.junit.Test;
  65. /**
  66. * Test reading of git config
  67. */
  68. public class ConfigTest {
  69. @Test
  70. public void test001_ReadBareKey() throws ConfigInvalidException {
  71. final Config c = parse("[foo]\nbar\n");
  72. assertEquals(true, c.getBoolean("foo", null, "bar", false));
  73. assertEquals("", c.getString("foo", null, "bar"));
  74. }
  75. @Test
  76. public void test002_ReadWithSubsection() throws ConfigInvalidException {
  77. final Config c = parse("[foo \"zip\"]\nbar\n[foo \"zap\"]\nbar=false\nn=3\n");
  78. assertEquals(true, c.getBoolean("foo", "zip", "bar", false));
  79. assertEquals("", c.getString("foo","zip", "bar"));
  80. assertEquals(false, c.getBoolean("foo", "zap", "bar", true));
  81. assertEquals("false", c.getString("foo", "zap", "bar"));
  82. assertEquals(3, c.getInt("foo", "zap", "n", 4));
  83. assertEquals(4, c.getInt("foo", "zap","m", 4));
  84. }
  85. @Test
  86. public void test003_PutRemote() {
  87. final Config c = new Config();
  88. c.setString("sec", "ext", "name", "value");
  89. c.setString("sec", "ext", "name2", "value2");
  90. final String expText = "[sec \"ext\"]\n\tname = value\n\tname2 = value2\n";
  91. assertEquals(expText, c.toText());
  92. }
  93. @Test
  94. public void test004_PutGetSimple() {
  95. Config c = new Config();
  96. c.setString("my", null, "somename", "false");
  97. assertEquals("false", c.getString("my", null, "somename"));
  98. assertEquals("[my]\n\tsomename = false\n", c.toText());
  99. }
  100. @Test
  101. public void test005_PutGetStringList() {
  102. Config c = new Config();
  103. final LinkedList<String> values = new LinkedList<String>();
  104. values.add("value1");
  105. values.add("value2");
  106. c.setStringList("my", null, "somename", values);
  107. final Object[] expArr = values.toArray();
  108. final String[] actArr = c.getStringList("my", null, "somename");
  109. assertTrue(Arrays.equals(expArr, actArr));
  110. final String expText = "[my]\n\tsomename = value1\n\tsomename = value2\n";
  111. assertEquals(expText, c.toText());
  112. }
  113. @Test
  114. public void test006_readCaseInsensitive() throws ConfigInvalidException {
  115. final Config c = parse("[Foo]\nBar\n");
  116. assertEquals(true, c.getBoolean("foo", null, "bar", false));
  117. assertEquals("", c.getString("foo", null, "bar"));
  118. }
  119. @Test
  120. public void test007_readUserConfig() {
  121. final MockSystemReader mockSystemReader = new MockSystemReader();
  122. SystemReader.setInstance(mockSystemReader);
  123. final String hostname = mockSystemReader.getHostname();
  124. final Config userGitConfig = mockSystemReader.openUserConfig(null,
  125. FS.DETECTED);
  126. final Config localConfig = new Config(userGitConfig);
  127. mockSystemReader.clearProperties();
  128. String authorName;
  129. String authorEmail;
  130. // no values defined nowhere
  131. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  132. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  133. assertEquals(Constants.UNKNOWN_USER_DEFAULT, authorName);
  134. assertEquals(Constants.UNKNOWN_USER_DEFAULT + "@" + hostname, authorEmail);
  135. // the system user name is defined
  136. mockSystemReader.setProperty(Constants.OS_USER_NAME_KEY, "os user name");
  137. localConfig.uncache(UserConfig.KEY);
  138. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  139. assertEquals("os user name", authorName);
  140. if (hostname != null && hostname.length() != 0) {
  141. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  142. assertEquals("os user name@" + hostname, authorEmail);
  143. }
  144. // the git environment variables are defined
  145. mockSystemReader.setProperty(Constants.GIT_AUTHOR_NAME_KEY, "git author name");
  146. mockSystemReader.setProperty(Constants.GIT_AUTHOR_EMAIL_KEY, "author@email");
  147. localConfig.uncache(UserConfig.KEY);
  148. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  149. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  150. assertEquals("git author name", authorName);
  151. assertEquals("author@email", authorEmail);
  152. // the values are defined in the global configuration
  153. userGitConfig.setString("user", null, "name", "global username");
  154. userGitConfig.setString("user", null, "email", "author@globalemail");
  155. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  156. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  157. assertEquals("global username", authorName);
  158. assertEquals("author@globalemail", authorEmail);
  159. // the values are defined in the local configuration
  160. localConfig.setString("user", null, "name", "local username");
  161. localConfig.setString("user", null, "email", "author@localemail");
  162. authorName = localConfig.get(UserConfig.KEY).getAuthorName();
  163. authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
  164. assertEquals("local username", authorName);
  165. assertEquals("author@localemail", authorEmail);
  166. authorName = localConfig.get(UserConfig.KEY).getCommitterName();
  167. authorEmail = localConfig.get(UserConfig.KEY).getCommitterEmail();
  168. assertEquals("local username", authorName);
  169. assertEquals("author@localemail", authorEmail);
  170. }
  171. @Test
  172. public void testReadBoolean_TrueFalse1() throws ConfigInvalidException {
  173. final Config c = parse("[s]\na = true\nb = false\n");
  174. assertEquals("true", c.getString("s", null, "a"));
  175. assertEquals("false", c.getString("s", null, "b"));
  176. assertTrue(c.getBoolean("s", "a", false));
  177. assertFalse(c.getBoolean("s", "b", true));
  178. }
  179. @Test
  180. public void testReadBoolean_TrueFalse2() throws ConfigInvalidException {
  181. final Config c = parse("[s]\na = TrUe\nb = fAlSe\n");
  182. assertEquals("TrUe", c.getString("s", null, "a"));
  183. assertEquals("fAlSe", c.getString("s", null, "b"));
  184. assertTrue(c.getBoolean("s", "a", false));
  185. assertFalse(c.getBoolean("s", "b", true));
  186. }
  187. @Test
  188. public void testReadBoolean_YesNo1() throws ConfigInvalidException {
  189. final Config c = parse("[s]\na = yes\nb = no\n");
  190. assertEquals("yes", c.getString("s", null, "a"));
  191. assertEquals("no", c.getString("s", null, "b"));
  192. assertTrue(c.getBoolean("s", "a", false));
  193. assertFalse(c.getBoolean("s", "b", true));
  194. }
  195. @Test
  196. public void testReadBoolean_YesNo2() throws ConfigInvalidException {
  197. final Config c = parse("[s]\na = yEs\nb = NO\n");
  198. assertEquals("yEs", c.getString("s", null, "a"));
  199. assertEquals("NO", c.getString("s", null, "b"));
  200. assertTrue(c.getBoolean("s", "a", false));
  201. assertFalse(c.getBoolean("s", "b", true));
  202. }
  203. @Test
  204. public void testReadBoolean_OnOff1() throws ConfigInvalidException {
  205. final Config c = parse("[s]\na = on\nb = off\n");
  206. assertEquals("on", c.getString("s", null, "a"));
  207. assertEquals("off", c.getString("s", null, "b"));
  208. assertTrue(c.getBoolean("s", "a", false));
  209. assertFalse(c.getBoolean("s", "b", true));
  210. }
  211. @Test
  212. public void testReadBoolean_OnOff2() throws ConfigInvalidException {
  213. final Config c = parse("[s]\na = ON\nb = OFF\n");
  214. assertEquals("ON", c.getString("s", null, "a"));
  215. assertEquals("OFF", c.getString("s", null, "b"));
  216. assertTrue(c.getBoolean("s", "a", false));
  217. assertFalse(c.getBoolean("s", "b", true));
  218. }
  219. static enum TestEnum {
  220. ONE_TWO;
  221. }
  222. @Test
  223. public void testGetEnum() throws ConfigInvalidException {
  224. Config c = parse("[s]\na = ON\nb = input\nc = true\nd = off\n");
  225. assertSame(CoreConfig.AutoCRLF.TRUE, c.getEnum("s", null, "a",
  226. CoreConfig.AutoCRLF.FALSE));
  227. assertSame(CoreConfig.AutoCRLF.INPUT, c.getEnum("s", null, "b",
  228. CoreConfig.AutoCRLF.FALSE));
  229. assertSame(CoreConfig.AutoCRLF.TRUE, c.getEnum("s", null, "c",
  230. CoreConfig.AutoCRLF.FALSE));
  231. assertSame(CoreConfig.AutoCRLF.FALSE, c.getEnum("s", null, "d",
  232. CoreConfig.AutoCRLF.TRUE));
  233. c = new Config();
  234. assertSame(CoreConfig.AutoCRLF.FALSE, c.getEnum("s", null, "d",
  235. CoreConfig.AutoCRLF.FALSE));
  236. c = parse("[s \"b\"]\n\tc = one two\n");
  237. assertSame(TestEnum.ONE_TWO, c.getEnum("s", "b", "c", TestEnum.ONE_TWO));
  238. }
  239. @Test
  240. public void testSetEnum() {
  241. final Config c = new Config();
  242. c.setEnum("s", "b", "c", TestEnum.ONE_TWO);
  243. assertEquals("[s \"b\"]\n\tc = one two\n", c.toText());
  244. }
  245. @Test
  246. public void testReadLong() throws ConfigInvalidException {
  247. assertReadLong(1L);
  248. assertReadLong(-1L);
  249. assertReadLong(Long.MIN_VALUE);
  250. assertReadLong(Long.MAX_VALUE);
  251. assertReadLong(4L * 1024 * 1024 * 1024, "4g");
  252. assertReadLong(3L * 1024 * 1024, "3 m");
  253. assertReadLong(8L * 1024, "8 k");
  254. try {
  255. assertReadLong(-1, "1.5g");
  256. fail("incorrectly accepted 1.5g");
  257. } catch (IllegalArgumentException e) {
  258. assertEquals("Invalid integer value: s.a=1.5g", e.getMessage());
  259. }
  260. }
  261. @Test
  262. public void testBooleanWithNoValue() throws ConfigInvalidException {
  263. Config c = parse("[my]\n\tempty\n");
  264. assertEquals("", c.getString("my", null, "empty"));
  265. assertEquals(1, c.getStringList("my", null, "empty").length);
  266. assertEquals("", c.getStringList("my", null, "empty")[0]);
  267. assertTrue(c.getBoolean("my", "empty", false));
  268. assertEquals("[my]\n\tempty\n", c.toText());
  269. }
  270. @Test
  271. public void testEmptyString() throws ConfigInvalidException {
  272. Config c = parse("[my]\n\tempty =\n");
  273. assertNull(c.getString("my", null, "empty"));
  274. String[] values = c.getStringList("my", null, "empty");
  275. assertNotNull(values);
  276. assertEquals(1, values.length);
  277. assertNull(values[0]);
  278. // always matches the default, because its non-boolean
  279. assertTrue(c.getBoolean("my", "empty", true));
  280. assertFalse(c.getBoolean("my", "empty", false));
  281. assertEquals("[my]\n\tempty =\n", c.toText());
  282. c = new Config();
  283. c.setStringList("my", null, "empty", Arrays.asList(values));
  284. assertEquals("[my]\n\tempty =\n", c.toText());
  285. }
  286. @Test
  287. public void testUnsetBranchSection() throws ConfigInvalidException {
  288. Config c = parse("" //
  289. + "[branch \"keep\"]\n"
  290. + " merge = master.branch.to.keep.in.the.file\n"
  291. + "\n"
  292. + "[branch \"remove\"]\n"
  293. + " merge = this.will.get.deleted\n"
  294. + " remote = origin-for-some-long-gone-place\n"
  295. + "\n"
  296. + "[core-section-not-to-remove-in-test]\n"
  297. + " packedGitLimit = 14\n");
  298. c.unsetSection("branch", "does.not.exist");
  299. c.unsetSection("branch", "remove");
  300. assertEquals("" //
  301. + "[branch \"keep\"]\n"
  302. + " merge = master.branch.to.keep.in.the.file\n"
  303. + "\n"
  304. + "[core-section-not-to-remove-in-test]\n"
  305. + " packedGitLimit = 14\n", c.toText());
  306. }
  307. @Test
  308. public void testUnsetSingleSection() throws ConfigInvalidException {
  309. Config c = parse("" //
  310. + "[branch \"keep\"]\n"
  311. + " merge = master.branch.to.keep.in.the.file\n"
  312. + "\n"
  313. + "[single]\n"
  314. + " merge = this.will.get.deleted\n"
  315. + " remote = origin-for-some-long-gone-place\n"
  316. + "\n"
  317. + "[core-section-not-to-remove-in-test]\n"
  318. + " packedGitLimit = 14\n");
  319. c.unsetSection("single", null);
  320. assertEquals("" //
  321. + "[branch \"keep\"]\n"
  322. + " merge = master.branch.to.keep.in.the.file\n"
  323. + "\n"
  324. + "[core-section-not-to-remove-in-test]\n"
  325. + " packedGitLimit = 14\n", c.toText());
  326. }
  327. @Test
  328. public void test008_readSectionNames() throws ConfigInvalidException {
  329. final Config c = parse("[a]\n [B]\n");
  330. Set<String> sections = c.getSections();
  331. assertTrue("Sections should contain \"a\"", sections.contains("a"));
  332. assertTrue("Sections should contain \"b\"", sections.contains("b"));
  333. }
  334. @Test
  335. public void test009_readNamesInSection() throws ConfigInvalidException {
  336. String configString = "[core]\n" + "repositoryformatversion = 0\n"
  337. + "filemode = false\n" + "logallrefupdates = true\n";
  338. final Config c = parse(configString);
  339. Set<String> names = c.getNames("core");
  340. assertEquals("Core section size", 3, names.size());
  341. assertTrue("Core section should contain \"filemode\"", names
  342. .contains("filemode"));
  343. }
  344. @Test
  345. public void test010_readNamesInSubSection() throws ConfigInvalidException {
  346. String configString = "[a \"sub1\"]\n"//
  347. + "x = 0\n" //
  348. + "y = false\n"//
  349. + "z = true\n"//
  350. + "[a \"sub2\"]\n"//
  351. + "a=0\n"//
  352. + "b=1\n";
  353. final Config c = parse(configString);
  354. Set<String> names = c.getNames("a", "sub1");
  355. assertEquals("Subsection size", 3, names.size());
  356. assertTrue("Subsection should contain \"x\"", names.contains("x"));
  357. assertTrue("Subsection should contain \"y\"", names.contains("y"));
  358. assertTrue("Subsection should contain \"z\"", names.contains("z"));
  359. names = c.getNames("a", "sub2");
  360. assertEquals("Subsection size", 2, names.size());
  361. assertTrue("Subsection should contain \"a\"", names.contains("a"));
  362. assertTrue("Subsection should contain \"b\"", names.contains("b"));
  363. }
  364. @Test
  365. public void testQuotingForSubSectionNames() {
  366. String resultPattern = "[testsection \"{0}\"]\n\ttestname = testvalue\n";
  367. String result;
  368. Config config = new Config();
  369. config.setString("testsection", "testsubsection", "testname",
  370. "testvalue");
  371. result = MessageFormat.format(resultPattern, "testsubsection");
  372. assertEquals(result, config.toText());
  373. config.clear();
  374. config.setString("testsection", "#quotable", "testname", "testvalue");
  375. result = MessageFormat.format(resultPattern, "#quotable");
  376. assertEquals(result, config.toText());
  377. config.clear();
  378. config.setString("testsection", "with\"quote", "testname", "testvalue");
  379. result = MessageFormat.format(resultPattern, "with\\\"quote");
  380. assertEquals(result, config.toText());
  381. }
  382. private void assertReadLong(long exp) throws ConfigInvalidException {
  383. assertReadLong(exp, String.valueOf(exp));
  384. }
  385. private void assertReadLong(long exp, String act)
  386. throws ConfigInvalidException {
  387. final Config c = parse("[s]\na = " + act + "\n");
  388. assertEquals(exp, c.getLong("s", null, "a", 0L));
  389. }
  390. private Config parse(final String content) throws ConfigInvalidException {
  391. final Config c = new Config(null);
  392. c.fromText(content);
  393. return c;
  394. }
  395. }