Skip to content

Commit

Permalink
test6: testing url
Browse files Browse the repository at this point in the history
Signed-off-by: Jannis Jung <jannis.jung@iese.fraunhofer.de>
  • Loading branch information
jannisjung committed Jan 26, 2024
1 parent 02d29ce commit 0f90fc7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ public void baSyxResponseHeader() throws IOException, ProtocolException {
assertEquals(HttpBaSyxHeader.HEADER_VALUE, response.getHeader(HttpBaSyxHeader.HEADER_KEY).getValue());
}

@Test
public void test() throws IOException, ProtocolException {
CloseableHttpResponse response = BaSyxHttpTestUtils.executeGetOnURL("http://localhost:8050/");
System.out.println("####anykeywordIwant########################################");
System.out.println(BaSyxHttpTestUtils.getResponseAsString(response));
}

@Test
public void anothertest() throws IOException, ProtocolException {
CloseableHttpResponse response = BaSyxHttpTestUtils.executeGetOnURL("http://localhost:8050/api/v3.0");
System.out.println("####anykeywordIwant2########################################");
System.out.println(BaSyxHttpTestUtils.getResponseAsString(response));
}

@Test
public void aasUpload() throws IOException, ParseException {
String aasJsonContent = getAas1JSONString();
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
<packaging>pom</packaging>
<modules>
<module>basyx.common</module>
<module>basyx.submodelservice</module>
<module>basyx.submodelrepository</module>
<module>basyx.submodelregistry</module>
<module>basyx.aasservice</module>
<!--module>basyx.submodelservice</module-->
<!--module>basyx.submodelrepository</module-->
<!--module>basyx.submodelregistry</module-->
<!--module>basyx.aasservice</module-->
<module>basyx.aasrepository</module>
<module>basyx.aasregistry</module>
<module>basyx.aasenvironment</module>
<module>basyx.conceptdescriptionrepository</module>
<module>basyx.aasxfileserver</module>
<module>basyx.aasdiscoveryservice</module>
<!--module>basyx.aasregistry</module-->
<!--module>basyx.aasenvironment</module-->
<!--module>basyx.conceptdescriptionrepository</module-->
<!--module>basyx.aasxfileserver</module-->
<!--module>basyx.aasdiscoveryservice</module-->
</modules>
<name>BaSyx Parent</name>
<description>Parent POM for Eclipse BaSyx</description>
Expand Down

0 comments on commit 0f90fc7

Please sign in to comment.