Skip to content

Commit bba018f

Browse files
committed
More test fixes for Windows
1 parent 57493dd commit bba018f

File tree

2 files changed

+36
-9
lines changed

2 files changed

+36
-9
lines changed

cli/src/test/java/ai/wanaku/cli/main/converter/UtilsTest.java

+33-9
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,49 @@
22

33
import org.junit.jupiter.api.Assertions;
44
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;
58

69
import java.io.File;
710

811
public class UtilsTest {
912

13+
URLConverter converter = new URLConverter();
14+
String current_dir = System.getProperty("user.dir");
15+
1016
@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+
}
1321

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+
}
1528

29+
@DisabledOnOs(OS.WINDOWS)
30+
@Test
31+
void testRelativeNix() throws Exception {
1632
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+
}
2135

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+
}
2442

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());
2549
}
2650
}

routers/wanaku-router/src/test/java/ai/wanaku/routers/WanakuRouterMainTest.java

+3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,16 @@
2424
import org.junit.jupiter.api.Order;
2525
import org.junit.jupiter.api.Test;
2626
import org.junit.jupiter.api.TestMethodOrder;
27+
import org.junit.jupiter.api.condition.DisabledOnOs;
28+
import org.junit.jupiter.api.condition.OS;
2729

2830
import static io.restassured.RestAssured.given;
2931
import static org.hamcrest.CoreMatchers.is;
3032

3133
@QuarkusTestResource(ValkeyResource.class)
3234
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
3335
@QuarkusTest
36+
@DisabledOnOs(OS.WINDOWS)
3437
public class WanakuRouterMainTest {
3538

3639
@AfterAll

0 commit comments

Comments
 (0)