aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/impl/DownloadArtifactLogicTest.java
blob: c76fbb32b1815c3202d07fd847222228786de3b8 (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
78
79
80
package org.openecomp.sdc.be.impl;

import com.att.aft.dme2.internal.jersey.core.util.Base64;
import fj.data.Either;
import org.junit.Test;
import org.openecomp.sdc.be.dao.api.ResourceUploadStatus;
import org.openecomp.sdc.be.info.ArtifactAccessInfo;
import org.openecomp.sdc.be.resources.data.ESArtifactData;

import javax.ws.rs.core.Response;
import java.util.LinkedList;
import java.util.List;

public class DownloadArtifactLogicTest {

	private DownloadArtifactLogic createTestSubject() {
		return new DownloadArtifactLogic();
	}

	@Test
	public void testDownloadArtifact() throws Exception {
		DownloadArtifactLogic testSubject;
		String artifactName = "";
		String artifactId = "";
		Response result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.downloadArtifact(artifactName, Either.right(ResourceUploadStatus.COMPONENT_NOT_EXIST), artifactId);
		result = testSubject.downloadArtifact(artifactName, Either.right(ResourceUploadStatus.ALREADY_EXIST), artifactId);
		ESArtifactData ad = new ESArtifactData();
		ad.setDataAsArray(Base64.encode("mock"));
		result = testSubject.downloadArtifact(artifactName, Either.left(ad ), artifactId);
	}

	@Test
	public void testConvertArtifactList() throws Exception {
		DownloadArtifactLogic testSubject;
		List<ESArtifactData> artifactsList = new LinkedList<>();
		artifactsList.add(new ESArtifactData());
		String servletPath = "mock";
		List<ArtifactAccessInfo> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.convertArtifactList(artifactsList, servletPath);
	}

	@Test
	public void testCreateArtifactListResponse() throws Exception {
		DownloadArtifactLogic testSubject;
		String serviceName = "mock";
		Either<List<ESArtifactData>, ResourceUploadStatus> getArtifactsStatus = Either.right(ResourceUploadStatus.COMPONENT_NOT_EXIST);
		String servletPath = "mock";
		Response result;

		// default test
		testSubject = createTestSubject();
		
		result = testSubject.createArtifactListResponse(serviceName, getArtifactsStatus, servletPath);
		getArtifactsStatus = Either.right(ResourceUploadStatus.ALREADY_EXIST);
		result = testSubject.createArtifactListResponse(serviceName, getArtifactsStatus, servletPath);
		List<ESArtifactData> artifactsList = new LinkedList<>();
		artifactsList.add(new ESArtifactData());
		getArtifactsStatus = Either.left(artifactsList);
		result = testSubject.createArtifactListResponse(serviceName, getArtifactsStatus, servletPath);
	}

	@Test
	public void testBuildResponse() throws Exception {
		DownloadArtifactLogic testSubject;
		int status = 0;
		String errorMessage = "";
		Response result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.buildResponse(status, errorMessage);
	}
}