Files
pqs/pqs-auth/src/test/java/AuthTest.java

44 lines
1.4 KiB
Java
Raw Normal View History

2023-06-13 10:13:39 +08:00
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
2023-06-05 15:06:52 +08:00
import com.njcn.web.utils.RestTemplateUtil;
import lombok.SneakyThrows;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.security.oauth2.common.OAuth2AccessToken;
import org.springframework.security.oauth2.provider.endpoint.TokenEndpoint;
import org.springframework.web.util.UriComponentsBuilder;
import java.net.URI;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年12月14日 12:55
*/
public class AuthTest extends BaseJunitTest {
@Autowired
private TokenEndpoint tokenEndpoint;
@SneakyThrows
@Test
public void test(){
String userUrl = "http://127.0.0.1:10214/oauth/token";
UriComponentsBuilder builder = UriComponentsBuilder.fromHttpUrl(userUrl)
.queryParam("grant_type", "password")
2023-06-13 10:13:39 +08:00
.queryParam("client_id", "njcn_app")
2023-06-05 15:06:52 +08:00
.queryParam("client_secret", "njcnpqs")
.queryParam("username", "root")
.queryParam("password", "@#001njcnpqs");
URI uri = builder.build().encode().toUri();
2023-06-13 10:13:39 +08:00
JSONObject jsonObject = new JSONObject();
jsonObject.set("","");
2023-06-05 15:06:52 +08:00
2023-06-13 10:13:39 +08:00
ResponseEntity<OAuth2AccessToken> userEntity = RestTemplateUtil.post(uri, OAuth2AccessToken.class);
2023-06-05 15:06:52 +08:00
}
}