潘志宝
2025-03-12 a0df015b37f653456ce644bfc1fbc337d343d88e
src/test/java/com/iailab/sdk/demo/HttpClientDemoTest.java
@@ -1,10 +1,16 @@
package com.iailab.sdk.demo;
import com.alibaba.fastjson.JSONObject;
import com.iailab.sdk.auth.client.common.pojo.CommonResult;
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.test.context.junit4.SpringRunner;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@RunWith(SpringRunner.class)
@@ -14,22 +20,8 @@
    @Autowired
    private HttpClientDemo httpClientDemo;
    @Test
    public void testDoGet() throws Exception {
        httpClientDemo.HttpGet();
    }
    @Test
    public void testDoPost() throws Exception {
        httpClientDemo.HttpPost();
    }
    @Test
    public void testGetDeviceValue() throws Exception {
        httpClientDemo.HttpGetDeviceValue();
    }
    @Test
    /*@Test
    public void authenticate() {
        httpClientDemo.authenticate();
    }
@@ -38,4 +30,37 @@
    public void refreshToken() throws Exception {
        httpClientDemo.refreshToken();
    }
    @Test
    public void testQueryPlanChart() throws Exception {
        Map<String, Object> stringObjectMap = httpClientDemo.queryPlanChart();
        System.out.println(stringObjectMap);
    }
    @Test
    public void testQueryPointsRealValue() throws Exception {
        Map<String, Object> stringObjectMap = httpClientDemo.queryPointsRealValue();
        System.out.println(stringObjectMap);
    }
    @Test
    public void testDoHttpPost() throws Exception {
        // 准备参数
        httpClientDemo.doHttpPost();
    }
    @Test
    public void testDoHttpGet() throws Exception {
        // 准备参数
        httpClientDemo.doHttpGet();
    }*/
    @Test
    public void testDoHttpGet() throws Exception {
        // 准备参数
        List<String> params = new ArrayList<String>();
        params.add("M0000101153");
        CommonResult<Map<String, Object>> mapCommonResult = httpClientDemo.queryPointsRealValue(params);
        System.out.println(JSONObject.toJSONString(mapCommonResult));
    }
}