-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAdminControllerTest.kt
102 lines (89 loc) · 3.51 KB
/
AdminControllerTest.kt
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
90
91
92
93
94
95
96
97
98
99
100
101
102
package io.pivotal
import org.hamcrest.Matchers.*
import org.junit.Before
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.security.test.context.support.WithMockUser
import org.springframework.security.test.web.servlet.response.SecurityMockMvcResultMatchers
import org.springframework.security.test.web.servlet.setup.SecurityMockMvcConfigurers.springSecurity
import org.springframework.test.context.junit4.SpringRunner
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get
import org.springframework.test.web.servlet.result.MockMvcResultHandlers.print
import org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath
import org.springframework.test.web.servlet.result.MockMvcResultMatchers.status
import org.springframework.test.web.servlet.setup.DefaultMockMvcBuilder
import org.springframework.test.web.servlet.setup.MockMvcBuilders
import org.springframework.web.context.WebApplicationContext
@RunWith(SpringRunner::class)
@SpringBootTest
class AdminControllerTest {
@Autowired lateinit var context: WebApplicationContext
lateinit var mvc: MockMvc
@Before
fun setUp() {
mvc = MockMvcBuilders
.webAppContextSetup(this.context)
.apply<DefaultMockMvcBuilder>(springSecurity())
.build()
}
@Test
@WithMockUser("Navya")
fun adminList_returnsAListOfAllItemsForAdmin() {
mvc.perform(get("/resource/admin/list/"))
.andExpect(status().isOk)
.andExpect(jsonPath("$", hasSize<Any>(5)))
.andExpect(jsonPath("$[0].title", equalTo("swim")))
}
@Test
@WithMockUser("Dirk")
fun adminList_returnsAListOfOwnItemsForUser() {
mvc.perform(get("/resource/admin/list/"))
.andExpect(status().isOk)
.andDo(print())
.andExpect(jsonPath("$", hasSize<Any>(2)))
.andExpect(jsonPath("$[1].title", equalTo("sleep")))
}
@Test
@WithMockUser("Navya")
fun userList_returnsTwoUserForAdmin() {
mvc.perform(get("/resource/admin/userlist/"))
.andExpect(status().isOk)
.andDo(print())
.andExpect(jsonPath("$", hasSize<Any>(2)))
}
@Test
@WithMockUser("Dirk")
fun userListTest_returnsNoItemsForUser() {
mvc.perform(get("/resource/admin/userlist/"))
.andExpect(status().isOk)
}
@Test
@WithMockUser("Navya")
fun adminShowUser_worksForAdmin() {
mvc.perform(get("/resource/user/Dirk/"))
.andExpect(status().isOk)
.andExpect(jsonPath("$.username", equalTo("Dirk")))
.andExpect(jsonPath("$.email", equalTo("[email protected]")))
}
@Test
fun adminShowUser_failsWithoutAuthentication() {
mvc.perform(get("/resource/user/Navya/"))
.andExpect(SecurityMockMvcResultMatchers.unauthenticated())
}
@Test
@WithMockUser("Dirk")
fun whoIsLoggedIn_returnsUsernameWhenLoggedIn() {
mvc.perform(get("/who/"))
.andExpect(status().isOk)
.andExpect(jsonPath("$.name", equalTo("Dirk")))
}
@Test
fun whoIsLoggedIn_returnsEmptyOtherwise() {
mvc.perform(get("/who/"))
.andExpect(status().isOk)
.andExpect(jsonPath("$.name", isEmptyString()))
}
}