blob: 6043aa1172e1571b57c54c197ea7165b9ceae0e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
package org.berzerkula.builddb.controllers;
import org.berzerkula.builddb.config.SecurityConfig;
import org.berzerkula.builddb.models.Pkg;
import org.berzerkula.builddb.repositories.TestH2PkgRepository;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.web.servlet.MockMvc;
import java.util.List;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.view;
@Import(SecurityConfig.class)
@AutoConfigureMockMvc
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class BuilddbTestPkgController {
@Autowired
private TestH2PkgRepository pkgRepository;
@Autowired
private MockMvc mockMvc;
@Test
@WithMockUser(roles="client")
public void shouldReturnEmptyPackageListView() throws Exception {
this.mockMvc.perform(get("/pkgs"))
.andExpect(status().isOk())
.andExpect(view().name("pkgs/index"))
.andDo(print());
}
@Test
@WithMockUser(roles="client")
public void shouldReturnAddPackageView() throws Exception {
this.mockMvc.perform(get("/pkgs/add"))
.andExpect(status().isOk())
.andExpect(view().name("pkgs/add"))
.andDo(print());
}
@Test
@WithMockUser(roles="client")
public void shouldReturnEditPackageView() throws Exception {
Pkg pkg = new Pkg();
pkg.setSequence(1);
pkg.setName("test");
pkg.setVersion("1.2.3");
pkgRepository.save(pkg);
List<Pkg> pkgs = pkgRepository.findAll();
pkg = pkgs.get(0);
Integer id = pkg.getId();
this.mockMvc.perform(get("/pkgs/edit?id=" + id))
.andExpect(status().isOk())
.andExpect(view().name("pkgs/edit"))
.andDo(print());
}
@Test
@WithMockUser(roles="client")
public void shouldGetPopupWhenDeletePackage() throws Exception {
Pkg pkg = new Pkg();
pkg.setSequence(1);
pkg.setName("test");
pkg.setVersion("1.2.3");
pkgRepository.save(pkg);
List<Pkg> pkgs = pkgRepository.findAll();
pkg = pkgs.get(0);
Integer id = pkg.getId();
this.mockMvc.perform(get("/pkgs/delete?id=" + id))
.andExpect(status().is3xxRedirection())
.andExpect(view().name("redirect:/pkgs/"))
.andDo(print());
}
}
|