|
2 | 2 |
|
3 | 3 | import org.junit.jupiter.api.Assertions;
|
4 | 4 | import org.junit.jupiter.api.Test;
|
| 5 | +import org.junit.jupiter.api.condition.DisabledOnOs; |
| 6 | +import org.junit.jupiter.api.condition.EnabledOnOs; |
| 7 | +import org.junit.jupiter.api.condition.OS; |
5 | 8 |
|
6 | 9 | import java.io.File;
|
7 | 10 |
|
8 | 11 | public class UtilsTest {
|
9 | 12 |
|
| 13 | + URLConverter converter = new URLConverter(); |
| 14 | + String current_dir = System.getProperty("user.dir"); |
| 15 | + |
10 | 16 | @Test
|
11 |
| - public void toStringUrlTest() throws Exception { |
12 |
| - String current_dir = System.getProperty("user.dir"); |
| 17 | + void textFileUrl() throws Exception { |
| 18 | + String fileAbsoluteURL = "file:/my/local/absolute/path/tools.json"; |
| 19 | + Assertions.assertEquals(fileAbsoluteURL,converter.convert(fileAbsoluteURL).toString()); |
| 20 | + } |
13 | 21 |
|
14 |
| - URLConverter converter = new URLConverter(); |
| 22 | + @DisabledOnOs(OS.WINDOWS) |
| 23 | + @Test |
| 24 | + void testAbsoluteNix() throws Exception { |
| 25 | + String absolutePath = "/my/local/relative/path/tools.json"; |
| 26 | + Assertions.assertEquals("file:" +absolutePath,converter.convert(absolutePath).toString()); |
| 27 | + } |
15 | 28 |
|
| 29 | + @DisabledOnOs(OS.WINDOWS) |
| 30 | + @Test |
| 31 | + void testRelativeNix() throws Exception { |
16 | 32 | String relativePath = "my/local/relative/path/tools.json";
|
17 |
| - Assertions.assertEquals("file:"+current_dir+ File.separator+relativePath,converter.convert(relativePath).toString()); |
18 |
| - |
19 |
| - String absolutePath = "/my/local/relative/path/tools.json"; |
20 |
| - Assertions.assertEquals("file:"+absolutePath,converter.convert(absolutePath).toString()); |
| 33 | + Assertions.assertEquals("file:" + current_dir + File.separator + relativePath,converter.convert(relativePath).toString()); |
| 34 | + } |
21 | 35 |
|
22 |
| - String fileAbsoluteURL = "file:/my/local/absolute/path/tools.json"; |
23 |
| - Assertions.assertEquals(fileAbsoluteURL,converter.convert(fileAbsoluteURL).toString()); |
| 36 | + @EnabledOnOs(OS.WINDOWS) |
| 37 | + @Test |
| 38 | + void testAbsoluteAsURLWindows() throws Exception { |
| 39 | + String absolutePath = "C:/my/local/relative/path/tools.json"; |
| 40 | + Assertions.assertEquals("file:/" + absolutePath,converter.convert(absolutePath).toString()); |
| 41 | + } |
24 | 42 |
|
| 43 | + @EnabledOnOs(OS.WINDOWS) |
| 44 | + @Test |
| 45 | + void testRelativeWindows() throws Exception { |
| 46 | + String relativePath = "my\\local\\relative\\path\\tools.json"; |
| 47 | + String expected = new File(relativePath).toURL().toString(); |
| 48 | + Assertions.assertEquals(expected,converter.convert(relativePath).toString()); |
25 | 49 | }
|
26 | 50 | }
|
0 commit comments