TokenTest.java
3.55 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.xkl;
import org.json.JSONObject;
import org.junit.Assert;
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
/**
* Created by win7 on 2017/1/2.
* 登录、退出登录测试
*/
public class TokenTest {
private static final String URL_LOGIN = Constants.URL_PREFIX + "/token";
private static final String ADMIN_URL_LOGIN = Constants.URL_PREFIX + "/token/admin";
public static String loginAndGetToken(String user, String pass) {
Map<String, String> params = new HashMap<String, String>();
params.put("username", user);
params.put("password", EncodeTools.encode("MD5", pass));
params.put("t", HttpTools.getNow());
params.put("type", Constants.KEY_ID);
params.put("sign", HttpTools.getSign(params));
String response = HttpTools.requestByMap(URL_LOGIN, "POST", params);
System.out.println("response:" + response);
JSONObject jsonObject = new JSONObject(response);
JSONObject content = jsonObject.getJSONObject("content");
return content.getString("userId") + "_" + content.getString("token");
}
/**
* 用户登录接口
*/
@Test
public void testLogin() {
String response = loginAndGetToken(Constants.USR_ACC, Constants.USR_PWD);
Assert.assertTrue(response.contains("_"));
System.out.println(response);
}
/**
* 用户退出登录接口
*/
@Test
public void logout() {
String token = loginAndGetToken(Constants.USR_ACC, Constants.USR_PWD);
Map<String, String> params = new HashMap<String, String>();
params.put("t", HttpTools.getNow());
params.put("type", Constants.KEY_ID);
params.put("sign", HttpTools.getSign(params));
String response = HttpTools.requestByMapWithToken(URL_LOGIN, "DELETE", params, token);
Assert.assertTrue(RtnCodeTools.verifyCode(response, Constants.USER_LOGOUT));
System.out.println(response);
}
public static String adminLoginAndGetToken(String user, String pass) {
Map<String, String> params = new HashMap<String, String>();
params.put("username", user);
params.put("password", EncodeTools.encode("MD5", pass));
params.put("t", HttpTools.getNow());
params.put("type", Constants.KEY_ID);
params.put("sign", HttpTools.getSign(params));
String response = HttpTools.requestByMap(ADMIN_URL_LOGIN, "POST", params);
System.out.println("response:" + response);
JSONObject jsonObject = new JSONObject(response);
JSONObject content = jsonObject.getJSONObject("content");
return content.getString("userId") + "_" + content.getString("token");
}
/**
* 管理员登录接口
*/
@Test
public void adminTestLogin() {
String response = adminLoginAndGetToken(Constants.ADMIN_ACCOUNT, Constants.ADMIN_PWD);
Assert.assertTrue(response.contains("_"));
System.out.println(response);
}
/**
* 管理员退出登录接口
*/
@Test
public void adminLogout() {
String token = loginAndGetToken(Constants.ADMIN_ACCOUNT, Constants.ADMIN_PWD);
Map<String, String> params = new HashMap<String, String>();
params.put("t", HttpTools.getNow());
params.put("type", Constants.KEY_ID);
params.put("sign", HttpTools.getSign(params));
String response = HttpTools.requestByMapWithToken(ADMIN_URL_LOGIN, "DELETE", params, token);
Assert.assertTrue(RtnCodeTools.verifyCode(response, Constants.CODE_SUCC));
System.out.println(response);
}
}