Verified Commit 89b4b6d9 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

chore(tests): remove old tests

tests have to be re-written, preferrably with Mockito
parent db826d5d
package de.hftstuttgart.rest.v1.unittest;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.mock.web.MockMultipartFile;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;
import java.io.File;
import java.io.FileInputStream;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class IntegrationTest {
@Autowired
private WebApplicationContext webApplicationContext;
MockMvc mockMvc;
@Before
public void setup() throws Exception {
mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
}
@Test
@Ignore
public void validUnitTestFileTest() throws Exception {
// Upload tests
File unitTestFile = new File(Thread.currentThread().getContextClassLoader().getResource("tests.zip").getFile());
MockMultipartFile testFileMock = new MockMultipartFile("unitTestFile", new FileInputStream(unitTestFile));
mockMvc.perform(MockMvcRequestBuilders.fileUpload("/v1/unittest")
.file(testFileMock)
.param("assignmentId", "111"))
.andExpect(status().is(200));
// Upload tasks
File taskFile = new File(Thread.currentThread().getContextClassLoader().getResource("tasks.zip").getFile());
MockMultipartFile taskFileMock = new MockMultipartFile("taskFile", new FileInputStream(taskFile));
mockMvc.perform(MockMvcRequestBuilders.fileUpload("/v1/task")
.file(taskFileMock)
.param("assignmentId", "111"))
.andExpect(status().is(200))
.andExpect(content().string(("{\n" +
" \"testResults\" : [ {\n" +
" \"testName\" : \"CalculatorTest\",\n" +
" \"testCount\" : 5,\n" +
" \"failureCount\" : 0,\n" +
" \"successfulTests\" : [ \"add\", \"div\", \"sub\", \"sum\", \"mult\" ],\n" +
" \"testFailures\" : [ ]\n" +
" } ],\n" +
" \"compilationErrors\" : [ ]\n" +
"}")
.replaceAll("\\n|\\r\\n", System.getProperty("line.separator"))));
}
@Test
@Ignore
public void corruptedZipTest() throws Exception {
File file = new File(Thread.currentThread().getContextClassLoader().getResource("corrupted.zip").getFile());
MockMultipartFile mockFile = new MockMultipartFile("unitTestFile", new FileInputStream(file));
mockMvc.perform(MockMvcRequestBuilders.fileUpload("/v1/unittest")
.file(mockFile)
.param("assignmentId", "222"))
.andExpect(status().is(400));
}
@Test
@Ignore
public void renamedTxtFileTest() throws Exception {
File file = new File(Thread.currentThread().getContextClassLoader().getResource("textfile.zip").getFile());
MockMultipartFile mockFile = new MockMultipartFile("unitTestFile", new FileInputStream(file));
mockMvc.perform(MockMvcRequestBuilders.fileUpload("/v1/unittest")
.file(mockFile)
.param("assignmentId", "333"))
.andExpect(status().is(400));
}
@Test
@Ignore
public void noAssignmentIdTest() throws Exception {
File file = new File(Thread.currentThread().getContextClassLoader().getResource("textfile.zip").getFile());
MockMultipartFile mockFile = new MockMultipartFile("unitTestFile", new FileInputStream(file));
mockMvc.perform(MockMvcRequestBuilders.fileUpload("/v1/unittest")
.file(mockFile))
.andExpect(status().is(400));
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment