SubstitutingPropertiesTest.java 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package org.cryptomator.common;
  2. import org.junit.jupiter.api.Assertions;
  3. import org.junit.jupiter.api.DisplayName;
  4. import org.junit.jupiter.api.Nested;
  5. import org.junit.jupiter.api.Test;
  6. import org.junit.jupiter.params.ParameterizedTest;
  7. import org.junit.jupiter.params.provider.CsvSource;
  8. import org.junit.jupiter.params.provider.ValueSource;
  9. import org.mockito.Mockito;
  10. import java.util.Map;
  11. import java.util.Properties;
  12. public class SubstitutingPropertiesTest {
  13. SubstitutingProperties inTest;
  14. @Nested
  15. public class Processing {
  16. @ParameterizedTest
  17. @DisplayName("Test template replacement")
  18. @CsvSource(textBlock = """
  19. unknown.@{testToken}.test, unknown.@{testToken}.test
  20. @{only*words*digits*under_score},@{only*words*digits*under_score}
  21. C:\\Users\\@{appdir}\\dir, C:\\Users\\foobar\\dir
  22. @{@{appdir}},@{foobar}
  23. Replacing several @{appdir} with @{appdir}., Replacing several foobar with foobar.""")
  24. public void test(String propertyValue, String expected) {
  25. SubstitutingProperties inTest = new SubstitutingProperties(Mockito.mock(Properties.class), Map.of("APPDIR", "foobar"));
  26. var result = inTest.process(propertyValue);
  27. Assertions.assertEquals(result, expected);
  28. }
  29. @Test
  30. @DisplayName("@{userhome} is replaced with the user home directory")
  31. public void testPropSubstitutions() {
  32. var props = new Properties();
  33. props.setProperty("user.home", "OneUponABit");
  34. inTest = new SubstitutingProperties(props, Map.of());
  35. var result = inTest.process("@{userhome}");
  36. Assertions.assertEquals(result, "OneUponABit");
  37. }
  38. @DisplayName("Other keywords are replaced accordingly")
  39. @ParameterizedTest(name = "Token \"{0}\" replaced with content of {1}")
  40. @CsvSource(value = {"appdir, APPDIR, foobar", "appdata, APPDATA, bazbaz", "localappdata, LOCALAPPDATA, boboAlice"})
  41. public void testEnvSubstitutions(String token, String envName, String expected) {
  42. inTest = new SubstitutingProperties(new Properties(), Map.of(envName, expected));
  43. var result = inTest.process("@{" + token + "}");
  44. Assertions.assertEquals(result, expected);
  45. }
  46. }
  47. @Nested
  48. public class GetProperty {
  49. @Test
  50. @DisplayName("Undefined properties are not processed")
  51. public void testNoProcessingOnNull() {
  52. inTest = Mockito.spy(new SubstitutingProperties(new Properties(), Map.of()));
  53. var result = inTest.getProperty("some.prop");
  54. Assertions.assertNull(result);
  55. Mockito.verify(inTest, Mockito.never()).process(Mockito.anyString());
  56. }
  57. @ParameterizedTest
  58. @DisplayName("Properties not starting with \"cryptomator.\" are not processed")
  59. @ValueSource(strings = {"example.foo", "cryptomatorSomething.foo", "org.cryptomator.foo", "cryPtoMAtor.foo"})
  60. public void testNoProcessingOnNotCryptomator(String propKey) {
  61. var props = new Properties();
  62. props.setProperty(propKey, "someValue");
  63. inTest = Mockito.spy(new SubstitutingProperties(props, Map.of()));
  64. var result = inTest.getProperty("some.prop");
  65. Assertions.assertNull(result);
  66. Mockito.verify(inTest, Mockito.never()).process(Mockito.anyString());
  67. }
  68. @Test
  69. @DisplayName("Non-null property starting with \"cryptomator.\" is processed")
  70. public void testProcessing() {
  71. var props = new Properties();
  72. props.setProperty("cryptomator.prop", "someValue");
  73. inTest = Mockito.spy(new SubstitutingProperties(props, Map.of()));
  74. Mockito.doReturn("someValue").when(inTest).process(Mockito.anyString());
  75. inTest.getProperty("cryptomator.prop");
  76. Mockito.verify(inTest).process("someValue");
  77. }
  78. @Test
  79. @DisplayName("Default value is not processed")
  80. public void testNoProcessingDefault() {
  81. var props = Mockito.mock(Properties.class);
  82. Mockito.when(props.getProperty("cryptomator.prop")).thenReturn(null);
  83. inTest = Mockito.spy(new SubstitutingProperties(props, Map.of()));
  84. Mockito.doReturn("someValue").when(inTest).process(Mockito.anyString());
  85. var result = inTest.getProperty("cryptomator.prop", "a default");
  86. Assertions.assertEquals("a default", result);
  87. Mockito.verify(inTest, Mockito.never()).process(Mockito.any());
  88. }
  89. }
  90. @ParameterizedTest(name = "{0}={1} -> {0}={2}")
  91. @DisplayName("Replace @{userhome} during getProperty()")
  92. @CsvSource(quoteCharacter = '"', textBlock = """
  93. cryptomator.settingsPath, "@{userhome}/.config/Cryptomator/settings.json:@{userhome}/.Cryptomator/settings.json", "/home/.config/Cryptomator/settings.json:/home/.Cryptomator/settings.json"
  94. cryptomator.ipcSocketPath, "@{userhome}/.config/Cryptomator/ipc.socket:@{userhome}/.Cryptomator/ipc.socket", "/home/.config/Cryptomator/ipc.socket:/home/.Cryptomator/ipc.socket"
  95. not.cryptomator.not.substituted, "@{userhome}/foo", "@{userhome}/foo"
  96. cryptomator.no.placeholder.found, "foo/bar", "foo/bar"
  97. """)
  98. public void testEndToEndPropsSource(String key, String raw, String substituted) {
  99. var delegate = Mockito.mock(Properties.class);
  100. Mockito.doReturn("/home").when(delegate).getProperty("user.home");
  101. Mockito.doReturn(raw).when(delegate).getProperty(key);
  102. var inTest = new SubstitutingProperties(delegate, Map.of());
  103. var result = inTest.getProperty(key);
  104. Assertions.assertEquals(substituted, result);
  105. }
  106. @ParameterizedTest(name = "{0}={1} -> {0}={2}")
  107. @DisplayName("Replace appdata,localappdata or appdir during getProperty()")
  108. @CsvSource(quoteCharacter = '"', textBlock = """
  109. cryptomator.settingsPath, "@{appdata}/Cryptomator/settings.json", "C:\\Users\\JimFang\\AppData\\Roaming/Cryptomator/settings.json"
  110. cryptomator.ipcSocketPath, "@{localappdata}/Cryptomator/ipc.socket", "C:\\Users\\JimFang\\AppData\\Local/Cryptomator/ipc.socket"
  111. cryptomator.integrationsLinux.trayIconsDir, "@{appdir}/hicolor", "/squashfs1337/usr/hicolor"
  112. not.cryptomator.not.substituted, "@{appdir}/foo", "@{appdir}/foo"
  113. cryptomator.no.placeholder.found, "foo/bar", "foo/bar"
  114. """)
  115. public void testEndToEndEnvSource(String key, String raw, String substituted) {
  116. var delegate = Mockito.mock(Properties.class);
  117. Mockito.doReturn(raw).when(delegate).getProperty(key);
  118. var env = Map.of("APPDATA", "C:\\Users\\JimFang\\AppData\\Roaming", //
  119. "LOCALAPPDATA", "C:\\Users\\JimFang\\AppData\\Local", //
  120. "APPDIR", "/squashfs1337/usr");
  121. var inTest = new SubstitutingProperties(delegate, env);
  122. var result = inTest.getProperty(key);
  123. Assertions.assertEquals(substituted, result);
  124. }
  125. }