| | |
| | | package com.iailab.sdk.demo; |
| | | |
| | | 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.Map; |
| | | |
| | | |
| | | @RunWith(SpringRunner.class) |
| | |
| | | @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 |
| | | public void authenticate() { |
| | |
| | | public void refreshToken() throws Exception { |
| | | httpClientDemo.refreshToken(); |
| | | } |
| | | |
| | | |
| | | @Test |
| | | public void testQueryPointsRealValue() throws Exception { |
| | | CommonResult<Map<String, Object>> mapCommonResult = httpClientDemo.queryPointsRealValue(); |
| | | System.out.println(mapCommonResult.getData()); |
| | | } |
| | | |
| | | @Test |
| | | public void testDoHttpPost() throws Exception { |
| | | // 准备参数 |
| | | httpClientDemo.doHttpPost(); |
| | | } |
| | | |
| | | @Test |
| | | public void testDoHttpGet() throws Exception { |
| | | // 准备参数 |
| | | httpClientDemo.doHttpGet(); |
| | | } |
| | | } |