Newer
Older
RestfulChecker / src / main / Main.java
package main;

import java.util.ArrayList;

import restfulchecker.*;
import restfulchecker.RestChecker.Method;
import testcase.*;

public class Main {
	static RestChecker api = new RestChecker();
	static ArrayList<RestParam> queryParam = new ArrayList<>();
	static ArrayList<RestParam> formParam = new ArrayList<>();
	static ArrayList<String> pathParam = new ArrayList<>();
	static NecessaryParam nes = new NecessaryParam();
	static TestGETCactus get = new TestGETCactus();
	static TestPOSTCactus post = new TestPOSTCactus("f", "f", "f");
	static TestPUTCactus put = new TestPUTCactus("f", "f");
	static TestDELETECactus delete = new TestDELETECactus("qF9bgKYZmw8P");

	public static void main(String[] args) {
		// post.start();
		init();
		api.jsonAcquisition("src/main/you.json");
		//api.doRestTest();
		System.out.println(api.getResults());
	}

	static private void init() {
		api.setAccount("https://www.googleapis.com/youtube/v3");
		queryParam.add(new RestParam("mine", "true"));
		queryParam.add(new RestParam("part", "id"));
		queryParam.add(new RestParam("access_token",
				"ya29.GltqBpitzI890HzAA79CwcOrRQmaBlyI2xmTs6iYKeipPLhtrhndUqQ188oQBDYi62KTeJm828EOzyz_cA61qL-78qpxtYi59kAzYrW2FnysoSAkgQO5_oEiYVfT"));
		pathParam.add("playlists");
		api.getGetnesParam().setQueryParams(new RestParam("mine", "true"));
		api.getGetnesParam().setQueryParams(new RestParam("part", "id"));
		api.getGetnesParam().setQueryParams(new RestParam("access_token",
				"ya29.GltqBpitzI890HzAA79CwcOrRQmaBlyI2xmTs6iYKeipPLhtrhndUqQ188oQBDYi62KTeJm828EOzyz_cA61qL-78qpxtYi59kAzYrW2FnysoSAkgQO5_oEiYVfT"));
		api.getGetnesParam().setPathParams("playlists");
//		api.setProperty("Content-type", "application/json");
		api.setupRestTest(Method.GET, queryParam, formParam, pathParam);
	}

}