feat: 新增 websocket 功能模块

This commit is contained in:
haoxr
2023-06-03 11:02:44 +08:00
parent 260e7950c5
commit 808c33789c
3 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
package com.youlai.system.controller;
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.test.web.servlet.MockMvc;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureMockMvc
class WebsocketControllerTest {
@Autowired
private MockMvc mockMvc;
@Test
void testSendToAll() throws Exception {
String message = "Hello! I'm server. This is a topic message.";
mockMvc.perform(
post("/messages/sendToAll")
.param("message", message)
)
.andExpect(status().isOk());
}
@Test
void testSendToUser() throws Exception {
Long userId = 2L;// 系统管理员用户ID=2
mockMvc.perform(post("/messages/sendToUser/{userId}", userId)
.param("message", "Hello! I'm server. This is a point-to-point message.")
)
//.content(JSONUtil.toJsonStr(webSocketMessage))
//.contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk());
}
}