summaryrefslogtreecommitdiffstats
path: root/webservice/src/main/test/app/market/webservice/user/UploadTest.java
blob: 6377f4117c35c0f26db563403bbd21fb156525c8 (plain)
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
/*
 * Copyright (c) 2019 TOYOTA MOTOR CORPORATION
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package app.market.webservice.user;

import java.io.File;

import org.junit.Test;
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.http.client.SimpleClientHttpRequestFactory;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;

import app.market.utils.constants.Constants;
//import app.market.utils.webservice.WebServiceClient;

public class UploadTest {

	/*@Test
	public void upload() {
		String url = WebServiceClient.REST_APP_FILE;
		String filePath = "D:\\testupload\\dashboard.wgt";

		RestTemplate rest = new RestTemplate();
		FileSystemResource resource = new FileSystemResource(new File(filePath));
		MultiValueMap<String, Object> param = new LinkedMultiValueMap<>();
		param.add("multipartFile", resource);
		param.add("appTypeId", "f435bee3-acf7-4a0c-baa7-320f733095a");
		param.add("appId", "f435bee3-acf7-4a0c-baa7320f7330895a");

        HttpHeaders requestHeaders = new HttpHeaders();
		requestHeaders .add( Constants.TOKEN_AUTHORIZATION, "fg" );
        requestHeaders.add( Constants.TOKEN_AUTHORIZATION_RESOURCE, "dsf" );

        HttpEntity<Object> requestEntity = new HttpEntity<Object>(param, requestHeaders );

		//String string = rest.postForObject(url, param, String.class);
        String string = rest.postForObject(url, param, String.class);
		System.out.println(string);
	}

	//@Test
	public void download() {
        RestTemplate rest = new RestTemplate();

		String url = WebServiceClient.REST_APP_FILE_PARM_FILENAME_TYPEID_APPID;
		String typeId = "f435bee3-acf7-4a0c-baa7-320f733095a";
		String appId = "f435bee3-acf7-4a0c-baa7320f7330895a";
		String fileName = "3af4d3e0-476e-4b42-b5b7-cd9b002537c4_dashboard.wgt";
		String[] var = new String[] { fileName, typeId, appId  };

    	ResponseEntity<byte[]> exchange = rest.exchange(url, HttpMethod.GET, null, byte[].class, var);

		System.out.println(exchange.getBody());
		System.out.println(exchange.getStatusCode());
		System.out.println(exchange.getHeaders().get("DispositionFormData"));
	}*/

}