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

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