UsrAccountTest.java
1.87 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
package com.xkl.uspih;
import com.xkl.Constants;
import com.xkl.EncodeTools;
import com.xkl.HttpTools;
import org.json.JSONObject;
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
/**
* User Account Verify
* zhaoyue
* 2017-1-14
*/
public class UsrAccountTest {
private static final String URL_LOGIN = Constants.URL_PREFIX + "/uspih/account";
private static final String URL_USER= Constants.URL_PREFIX + "/uspihusr";
public static String loginAndGetToken(String user, String pass) {
Map<String, String> params = new HashMap<String, String>();
params.put("account", user);
params.put("password", EncodeTools.encode("MD5", pass));
params.put("t", HttpTools.getNow());
String response = HttpTools.requestByMap(URL_LOGIN, "POST", params);
System.out.println("login success:" + response);
JSONObject jsonObject = new JSONObject(response);
JSONObject content = jsonObject.getJSONObject("content");
return content.getString("userId") + "_" + content.getString("token");
}
@Test
public void testAccountExistVerify() {
String token = loginAndGetToken(Data.ADMIN_ACCOUNT, Data.ADMIN_PWD);
Map<String, String> params = new HashMap<String, String>();
params.put("usraccount", Data.USR_ACCOUNT);
String response = HttpTools.requestByMapWithToken(URL_USER, "GET", params, token);
System.out.println("verify status:" + response);
}
@Test
public void testAccountNotExist() {
String token = loginAndGetToken(Data.ADMIN_ACCOUNT, Data.ADMIN_PWD);
Map<String, String> params = new HashMap<String, String>();
params.put("usraccount", Data.USR_ACCOUNT+"not exist account");
String response = HttpTools.requestByMapWithToken(URL_USER, "GET", params, token);
System.out.println("verify status:" + response);
}
}