沙钢智慧能源系统后端代码
dengzedong
2024-12-06 3216ed3fb2d9dc9cf61da21bda3175e66ec46426
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
package com.iailab.module.data.controller;
 
import com.alibaba.fastjson.JSONObject;
import com.iailab.framework.common.util.date.DateUtils;
import com.iailab.framework.test.core.ut.BaseMockitoUnitTest;
import com.iailab.module.shasteel.ShasteelServerApplication;
import com.iailab.module.shasteel.mq.consumer.PredictFinishMessage;
import org.junit.jupiter.api.Test;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.boot.test.context.SpringBootTest;
 
import javax.annotation.Resource;
import java.util.Date;
 
/**
 * @author lirm
 * @Description
 * @createTime 2024年11月27日
 */
@SpringBootTest(classes = ShasteelServerApplication.class)
public class RabbitMQTest extends BaseMockitoUnitTest {
 
    @Resource
    private RabbitTemplate rabbitTemplate;
 
    @Test
    public void testProducer() {
        JSONObject content = new JSONObject();
        content.put("moduleType", "NET_LDG");
        content.put("predictTime", "2024-12-04 06:30:00");
        rabbitTemplate.convertAndSend(PredictFinishMessage.EXCHANGE, PredictFinishMessage.PREDICTFINISH_ROUTING_KEY, content);
    }
}