Blame view

src/test/java/eu/omp/irap/vespa/epntapclient/TestEpnTapFacade.java 5.31 KB
73698991   Nathanael Jourdane   Add test file for...
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
/*
 * This file is a part of EpnTAPClient.
 * This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
 * See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
 * Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
 *
 * This program is free software: you can
 * redistribute it and/or modify it under the terms of the GNU General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or (at your option) any later
 * version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE. See the GNU General Public License for more details. You should have received a copy of
 * the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

package eu.omp.irap.vespa.epntapclient;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Logger;

import eu.omp.irap.vespa.epntapclient.granule.Granule;
73698991   Nathanael Jourdane   Add test file for...
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
import eu.omp.irap.vespa.epntapclient.voresource.VOResourceCtrl;
import eu.omp.irap.vespa.epntapclient.voresource.VOResourceException;
import eu.omp.irap.vespa.epntapclient.voresource.model.Resource;
import eu.omp.irap.vespa.epntapclient.votable.model.VOTABLE;
import eu.omp.irap.vespa.votable.controller.CantGetVOTableException;
import eu.omp.irap.vespa.votable.utils.Debug;
import eu.omp.irap.vespa.votable.utils.StringJoiner;

/**
 * @author N. Jourdane
 */
public class TestEpnTapFacade {

	/** The logger for the class Main. */
	private static final Logger logger = Logger.getLogger(TestEpnTapFacade.class.getName());

	private static final String TEST_SERVICE_IVOID = "ivo://cdpp/amda";

	private static final String TEST_SERVICE_URL = "http://voparis-tap-planeto.obspm.fr/__system__/tap/run/tap";

	private static final String TEST_RESOURCE_IVOID = "ivo://vopdc.obspm/lesia/basecom/epn";

	private static final String TEST_ADQL_QUERY = "SELECT TOP 1 * FROM planets.epn_core";

	private static final String TEST_SCHEMA_NAME = "epn_core";


	public static void main(String[] args) {
		EpnTapFacade facade = new EpnTapFacade();

9144ee77   Nathanael Jourdane   Implement Service...
56
57
58
59
60
61
62
63
64
65
		final List<String> SERVICE_ATTRIBUTES = new ArrayList<>();
		SERVICE_ATTRIBUTES.add("target_name");
		SERVICE_ATTRIBUTES.add("time_min");
		SERVICE_ATTRIBUTES.add("time_max");
		String strServiceAttributes = "[" + StringJoiner.join(SERVICE_ATTRIBUTES) + "]";

		final Map<String, String> KEYWORDS = new HashMap<>();
		KEYWORDS.put("shortName", "IKS");
		String strKeywords = "[shortName=IKS]";

73698991   Nathanael Jourdane   Add test file for...
66
		try {
73698991   Nathanael Jourdane   Add test file for...
67
68
69
70
71
72
73
74
			System.out.println("\n*** 1. Resource ***\n");

			Resource resource = VOResourceCtrl.getVOresource(TEST_RESOURCE_IVOID);
			System.out.println("1.1 getVOresource(\"" + TEST_RESOURCE_IVOID + "\")\n\t"
					+ Debug.toJson(resource));

			System.out.println("\n*** 2. Resources ***\n");

73698991   Nathanael Jourdane   Add test file for...
75
76
77
78
			List<Resource> resources = facade.getEPNVOResources();
			System.out.println("2.1 getEPNVOResources()\n\t"
					+ Debug.toJson(resources));

9144ee77   Nathanael Jourdane   Implement Service...
79
80
			List<Resource> resources2 = facade.getEPNVOResources(KEYWORDS);
			System.out.println("2.2 getEPNVOResources(" + strKeywords + ")\n\t"
73698991   Nathanael Jourdane   Add test file for...
81
82
83
84
85
86
87
88
					+ Debug.toJson(resources2));

			System.out.println("\n*** 3. Service ***\n");

			VOTABLE epnService = facade.getEPNService(TEST_SERVICE_IVOID);
			System.out.println("3.1 getEPNService(\"" + TEST_SERVICE_IVOID + "\")\n\t"
					+ Debug.toJson(epnService));

9144ee77   Nathanael Jourdane   Implement Service...
89
90
91
			VOTABLE epnService2 = facade.getEPNService(TEST_SERVICE_IVOID, SERVICE_ATTRIBUTES);
			System.out.println("3.2 getEPNService(\"" + TEST_SERVICE_IVOID + "\", "
					+ strServiceAttributes + ")\n\t"
73698991   Nathanael Jourdane   Add test file for...
92
93
94
95
					+ Debug.toJson(epnService2));

			System.out.println("\n*** 4. Services ***\n");

4b3a296c   Nathanael Jourdane   Implement getServ...
96
			List<VOTABLE> epnServices = facade.getEPNServices();
80e3b826   Nathanael Jourdane   BugFix: Deal with...
97
			System.out.println("4.1 getEPNServices()\n\t"
73698991   Nathanael Jourdane   Add test file for...
98
99
					+ Debug.toJson(epnServices));

4b3a296c   Nathanael Jourdane   Implement getServ...
100
101
102
			List<VOTABLE> epnServices2 = facade.getEPNServices(SERVICE_ATTRIBUTES);
			System.out.println("4.2 getEPNServices(" + strServiceAttributes + ")\n\t"
					+ Debug.toJson(epnServices2));
73698991   Nathanael Jourdane   Add test file for...
103

4b3a296c   Nathanael Jourdane   Implement getServ...
104
			List<VOTABLE> epnServices3 = facade.getEPNServices(KEYWORDS, SERVICE_ATTRIBUTES);
9144ee77   Nathanael Jourdane   Implement Service...
105
106
			System.out.println("4.3 getEPNServices(" + strKeywords + ", "
					+ strServiceAttributes + ")\n\t"
73698991   Nathanael Jourdane   Add test file for...
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
					+ Debug.toJson(epnServices3));

			System.out.println("\n*** 5. Getters***\n");

			String epnCoreTableName = facade.getEPNCoreTableName(TEST_SERVICE_IVOID);
			System.out.println("5.1 getEPNCoreTableName(\"" + TEST_SERVICE_IVOID + "\")\n\t"
					+ epnCoreTableName);

			String tapURL = facade.getTAPURL(TEST_SERVICE_IVOID);
			System.out.println("5.2 getTAPURL(\"" + TEST_SERVICE_IVOID + "\")\n\t" + tapURL);

			System.out.println("\n*** 6. Queries ***\n");

			List<Granule> granules = facade.sendADQLQuery(TEST_SERVICE_URL, TEST_ADQL_QUERY);
			System.out.println("6.1 sendADQLQuery(\"" + TEST_SERVICE_URL + "\", \""
					+ TEST_ADQL_QUERY + "\")\n\t"
					+ Debug.toJson(granules));

			List<Granule> granules2 = facade.sendQuery(TEST_SERVICE_URL, TEST_SCHEMA_NAME,
					TEST_ADQL_QUERY);
80e3b826   Nathanael Jourdane   BugFix: Deal with...
127
			System.out.println("6.2 sendQuery(\"" + TEST_SERVICE_URL + "\", \""
73698991   Nathanael Jourdane   Add test file for...
128
129
130
131
132
133
134
135
					+ TEST_SCHEMA_NAME + "\", \"" + TEST_ADQL_QUERY + "\")\n\t"
					+ Debug.toJson(granules2));

		} catch (CantGetVOTableException | VOResourceException e) {
			e.printStackTrace();
		}
	}
}