メソッド自体を変更せずに、次のメソッドをテストする必要があります。このメソッドは、サーバーへの POST メソッドを作成します。しかし、サーバーから独立したテスト ケースを作成する必要があります。
ローカル ファイルにリダイレクトする前に、同様の方法をテストしました。しかし、そのために、プロトコルをファイル、ホスト名をローカルホスト、ポートを-1として指定していました。
私の問題は、このメソッドが投稿を行い、HttpURLConnection と wr = new DataOutputStream(conn.getOutputStream()); にキャストすることです。http 経由のローカル txt ファイルでは機能しません。
//コンストラクタ
public HTTPConnector(String usr, String pwd, String protocol,
String hostname, int port) {
this.usr = usr;
this.pwd = pwd;
this.protocol = protocol;
this.hostname = hostname;
this.port = port;
// connect();
}
//テストする必要があるメソッド
public String doPost(String reference, String data) throws IOException {
URL url = null;
HttpURLConnection conn = null;
BufferedReader rd = null;
DataOutputStream wr = null;
InputStream is = null;
String line = null;
StringBuffer response = null;
url = new URL(protocol, hostname, port, reference);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Authorization", "Basic dGVzdDphc2Rm");
conn.setRequestProperty("Content-Type", "application/xml");
conn.setUseCaches(false);
conn.setDoInput(true);
conn.setDoOutput(true);
// Send response
wr = new DataOutputStream(conn.getOutputStream());
wr.writeBytes(data);
wr.flush();
wr.close();
// Get response
is = conn.getInputStream();
rd = new BufferedReader(new InputStreamReader(is));
response = new StringBuffer();
while ((line = rd.readLine()) != null) {
response.append(line);
response.append('\r');
}
rd.close();
return response.toString();
}
//テストできるメソッド
public String doGet(String reference) throws IOException {
connect();
URL url = new URL(protocol, hostname, port, reference);
InputStream content = (InputStream) url.getContent();
BufferedReader xml = new BufferedReader(new InputStreamReader(content));
return xml.readLine();
}