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

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