forked from MinecraftUtilities/Backend
add username test
This commit is contained in:
@ -20,7 +20,7 @@ class PlayerControllerTests {
|
||||
private MockMvc mockMvc;
|
||||
|
||||
@Test
|
||||
public void ensurePlayerLookupSuccess() throws Exception {
|
||||
public void ensurePlayerLookupUuidSuccess() throws Exception {
|
||||
mockMvc.perform(get("/player/eeab5f8a-18dd-4d58-af78-2b3c4543da48")
|
||||
.accept(MediaType.APPLICATION_JSON)
|
||||
.contentType(MediaType.APPLICATION_JSON))
|
||||
@ -28,6 +28,15 @@ class PlayerControllerTests {
|
||||
.andExpect(jsonPath("$.username").value("ImFascinated"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void ensurePlayerLookupUsernameSuccess() throws Exception {
|
||||
mockMvc.perform(get("/player/ImFascinated")
|
||||
.accept(MediaType.APPLICATION_JSON)
|
||||
.contentType(MediaType.APPLICATION_JSON))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(jsonPath("$.username").value("ImFascinated"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void ensurePlayerLookupFailure() throws Exception {
|
||||
mockMvc.perform(get("/player/invalidnamehahahahahayesslmaooo")
|
||||
@ -37,7 +46,7 @@ class PlayerControllerTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void ensurePlayerPartsLookupSuccess() throws Exception {
|
||||
public void ensurePlayerSkinPartsLookupSuccess() throws Exception {
|
||||
for (Skin.Parts part : Skin.Parts.values()) {
|
||||
mockMvc.perform(get("/player/" + part.getName() + "/eeab5f8a-18dd-4d58-af78-2b3c4543da48")
|
||||
.accept(MediaType.IMAGE_PNG)
|
||||
@ -46,9 +55,8 @@ class PlayerControllerTests {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void ensurePlayerPartsLookupFailure() throws Exception {
|
||||
public void ensurePlayerSkinPartsLookupFailure() throws Exception {
|
||||
mockMvc.perform(get("/player/invalidpart/eeab5f8a-18dd-4d58-af78-2b3c4543da48"))
|
||||
.andExpect(status().isNotFound());
|
||||
}
|
||||
|
Reference in New Issue
Block a user