diff options
Diffstat (limited to 'src/test/java/pl/edu/mimuw/cloudatlas/client')
-rw-r--r-- | src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java b/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java index 85b0949..aba2fc7 100644 --- a/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java +++ b/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java @@ -23,14 +23,14 @@ import static org.junit.Assert.assertThat; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +@Ignore @RunWith(SpringRunner.class) @AutoConfigureMockMvc @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) public class ClientTest { private static Process registryProcess; private static Process agentProcess; - private static Process clientProcess; - + private static Process querySignerProcess; private static Registry registry; private static Api api; @@ -50,6 +50,7 @@ public class ClientTest { try { registryProcess.destroy(); agentProcess.destroy(); + querySignerProcess.destroy(); } catch (Exception e) { System.out.println("Caught exception: " + e); } @@ -77,6 +78,7 @@ public class ClientTest { } @Test + @Ignore public void queryInstallationCheck() throws Exception { this.mvc.perform(post("/installQuery") .param("name", "&sampleQuery") @@ -87,6 +89,7 @@ public class ClientTest { } @Test + @Ignore public void queryUninstallationCheck() throws Exception { this.mvc.perform(post("/installQuery") .param("name", "&sampleQuery") |