Blame view

src/test/java/eu/omp/irap/vespa/epntapclient/EpnTapConnectionTest.java 13.8 KB
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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 static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
35daa117   Nathanael Jourdane   Improve JUnits te...
21
import static org.junit.Assert.assertTrue;
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
22
23

import java.util.ArrayList;
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
24
25
26
27
28
29
30
import java.util.List;
import java.util.Map;
import java.util.logging.Logger;

import org.junit.Test;

import eu.omp.irap.vespa.epntapclient.granule.Granule;
35daa117   Nathanael Jourdane   Improve JUnits te...
31
import eu.omp.irap.vespa.epntapclient.service.ServiceCtrl;
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
32
33
import eu.omp.irap.vespa.epntapclient.voresource.VOResourceException;
import eu.omp.irap.vespa.epntapclient.voresource.model.Resource;
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
34
35
import eu.omp.irap.vespa.epntapclient.votable.model.VOTABLE;
import eu.omp.irap.vespa.votable.controller.CantGetVOTableException;
35daa117   Nathanael Jourdane   Improve JUnits te...
36
import eu.omp.irap.vespa.votable.votabledata.VOTableData;
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
37
38
39
40

/**
 * @author N. Jourdane
 */
330431b5   Nathanael Jourdane   Fix a Junit test ...
41
@SuppressWarnings("static-method")
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
42
43
44
public class EpnTapConnectionTest {

	/** The logger for the class Main. */
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
45
	private static final Logger LOGGER = Logger.getLogger(EpnTapConnectionTest.class.getName());
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
46

330431b5   Nathanael Jourdane   Fix a Junit test ...
47
	/** The AMDA ivoid, for testing purposes. */
35daa117   Nathanael Jourdane   Improve JUnits te...
48
49
	private static final String AMDA_IVOID = "ivo://cdpp/amda";

330431b5   Nathanael Jourdane   Fix a Junit test ...
50
	/** The AMDA short name (to compare with the returned value), for testing purposes. */
35daa117   Nathanael Jourdane   Improve JUnits te...
51
52
	private static final String AMDA_SHORT_NAME = "AMDA";

330431b5   Nathanael Jourdane   Fix a Junit test ...
53
	/** The AMDA access URL, for testing purposes. */
35daa117   Nathanael Jourdane   Improve JUnits te...
54
55
	private static final String AMDA_ACCESS_URL = "http://cdpp-epntap.cesr.fr/__system__/tap/run/tap";

330431b5   Nathanael Jourdane   Fix a Junit test ...
56
	/** A subject associated with the AMDA service, for testing purposes. */
35daa117   Nathanael Jourdane   Improve JUnits te...
57
58
	private static final String AMDA_SUBJECT = "Space plasmas";

330431b5   Nathanael Jourdane   Fix a Junit test ...
59
	/** The API ivoid, for testing purposes. */
35daa117   Nathanael Jourdane   Improve JUnits te...
60
61
	private static final String APIS_IVOID = "ivo://vopdc.obspm/lesia/apis/epn";

330431b5   Nathanael Jourdane   Fix a Junit test ...
62
	/** The APIS short name (to compare with the returned value), for testing purposes. */
35daa117   Nathanael Jourdane   Improve JUnits te...
63
64
	private static final String APIS_SHORT_NAME = "APIS";

330431b5   Nathanael Jourdane   Fix a Junit test ...
65
	/** The URL access of a service implementing the EpnCorev2, for testing purposes. */
99642cfe   Nathanael Jourdane   Improve unit test...
66
67
	private static final String SERVICE_EPNCOREV2_ACCESS_URL = "http://voparis-tap-planeto.obspm.fr/__system__/tap/run/tap";

330431b5   Nathanael Jourdane   Fix a Junit test ...
68
	/** A query to send to a service implementing the EpnCorev2, for testing purposes */
99642cfe   Nathanael Jourdane   Improve unit test...
69
70
	private static final String SERVICE_EPNCOREV2_QUERY = "SELECT * FROM planets.epn_core";

330431b5   Nathanael Jourdane   Fix a Junit test ...
71
	/** The table name of a service implementing the EpnCorev2, for testing purposes. */
99642cfe   Nathanael Jourdane   Improve unit test...
72
	private static final String SERVICE_EPNCOREV2_TABLE_NAME = "planets.epn_core";
35daa117   Nathanael Jourdane   Improve JUnits te...
73
74
	// *** VOResources ***

5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
75

330431b5   Nathanael Jourdane   Fix a Junit test ...
76
77
78
79
80
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNVOresource(String)}.
	 *
	 * @throws VOResourceException Can not get the VOresource.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
81
82
	@Test
	public void getVOResourceTest() throws VOResourceException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
83
		LOGGER.info("getVOResourceTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
84
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
85

330431b5   Nathanael Jourdane   Fix a Junit test ...
86
		Resource resource = facade.getEPNVOresource(AMDA_IVOID);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
87
88
89
90
91
92
93

		assertEquals("AMDA", resource.getShortName());
		assertEquals("CDPP AMDA DataBase", resource.getTitle());
		assertEquals("Centre de Données de la Physique des Plasmas",
				resource.getCuration().getCreator().get(0).getName().getValue());
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
94
95
96
97
98
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNVOResources()}.
	 *
	 * @throws VOResourceException Can not get the VOresource.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
99
100
	@Test
	public void getEPNVOResourcesTest() throws VOResourceException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
101
		LOGGER.info("getEPNVOResourcesTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
102
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
103

5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
104
105
		List<Resource> resources = facade.getEPNVOResources();

35daa117   Nathanael Jourdane   Improve JUnits te...
106
107
108
109
110
111
112
113
114
115
116
117
		int nbResources = resources.size();
		assertTrue(nbResources + " ∉ [13;20]", nbResources >= 13 && nbResources <= 20);

		Resource amda = null;
		Resource apis = null;
		for (Resource resource : resources) {
			if (AMDA_IVOID.equals(resource.getIdentifier())) {
				amda = resource;
			}
			if (APIS_IVOID.equals(resource.getIdentifier())) {
				apis = resource;
			}
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
118
		}
35daa117   Nathanael Jourdane   Improve JUnits te...
119
120
121
122
		assertNotNull("AMDA resource should be present.", amda);
		assertNotNull("APIS resource should be present.", apis);
		assertEquals(AMDA_SHORT_NAME, amda.getShortName());
		assertEquals(APIS_SHORT_NAME, apis.getShortName());
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
123
124
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
125
126
127
128
129
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNVOResources(List)}.
	 *
	 * @throws VOResourceException Can not get the VOresource.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
130
131
	@Test
	public void getEPNVOResourcesWithKeywordsTest() throws VOResourceException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
132
		LOGGER.info("getEPNVOResourcesWithKeywordsTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
133
		EpnTapConnection facade = new EpnTapConnection();
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
134

35daa117   Nathanael Jourdane   Improve JUnits te...
135
136
137
138
139
140
141
142
		final List<String> keywords = new ArrayList<>();
		keywords.add(AMDA_SUBJECT);
		List<Resource> resources = facade.getEPNVOResources(keywords);

		assertEquals(resources.size(), 1);

		Resource amda = null;
		for (Resource resource : resources) {
35daa117   Nathanael Jourdane   Improve JUnits te...
143
144
145
146
147
			if (AMDA_IVOID.equals(resource.getIdentifier())) {
				amda = resource;
			}
		}
		assertNotNull("AMDA resource should be present.", amda);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
148
149
	}

35daa117   Nathanael Jourdane   Improve JUnits te...
150
151
	// *** Services ***

330431b5   Nathanael Jourdane   Fix a Junit test ...
152
153
154
155
156
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNService(String)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
157
158
	@Test
	public void getEPNServiceTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
159
		LOGGER.info("getEPNServiceTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
160
161
		EpnTapConnection facade = new EpnTapConnection();

330431b5   Nathanael Jourdane   Fix a Junit test ...
162
		VOTABLE voTable = facade.getEPNService(AMDA_IVOID);
35daa117   Nathanael Jourdane   Improve JUnits te...
163
		VOTableData data = ServiceCtrl.getVoTableData(voTable);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
164

35daa117   Nathanael Jourdane   Improve JUnits te...
165
166
167
168
169
170
171
		assertEquals(1, data.getNbRows());
		assertTrue("Column name ivoid not found.", data.isContainingColumnName("ivoid"));
		assertTrue("Column name short_name not found.", data.isContainingColumnName("access_url"));
		assertTrue("Column name short_name not found.", data.isContainingColumnName("short_name"));
		assertEquals(AMDA_IVOID, data.getCell(0, "ivoid"));
		assertEquals(AMDA_ACCESS_URL, data.getCell(0, "access_url"));
		assertEquals(AMDA_SHORT_NAME, data.getCell(0, "short_name"));
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
172
173
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
174
175
176
177
178
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNService(String, List)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
179
180
	@Test
	public void getEPNServiceWithAttributesTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
181
		LOGGER.info("getEPNServiceWithAttributesTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
182
183
		EpnTapConnection facade = new EpnTapConnection();

35daa117   Nathanael Jourdane   Improve JUnits te...
184
185
186
		final List<String> attributes = new ArrayList<>();
		attributes.add("access_url");
		attributes.add("short_name");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
187

330431b5   Nathanael Jourdane   Fix a Junit test ...
188
		VOTABLE voTable = facade.getEPNService(AMDA_IVOID, attributes);
35daa117   Nathanael Jourdane   Improve JUnits te...
189
		VOTableData data = ServiceCtrl.getVoTableData(voTable);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
190

35daa117   Nathanael Jourdane   Improve JUnits te...
191
192
193
194
195
196
		assertEquals(1, data.getNbRows());
		assertEquals(2, data.getNbColumns());
		assertTrue("Column name short_name not found.", data.isContainingColumnName("access_url"));
		assertTrue("Column name short_name not found.", data.isContainingColumnName("short_name"));
		assertEquals(AMDA_ACCESS_URL, data.getCell(0, "access_url"));
		assertEquals(AMDA_SHORT_NAME, data.getCell(0, "short_name"));
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
197
198
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
199
200
201
202
203
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNServices()}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
204
	@Test
35daa117   Nathanael Jourdane   Improve JUnits te...
205
	public void getEPNServicesTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
206
		LOGGER.info("getEPNServicesTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
207
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
208
209
210
211
212

		VOTABLE voTable = facade.getEPNServices();
		VOTableData data = ServiceCtrl.getVoTableData(voTable);
		int nbServices = data.getNbRows();
		assertTrue(nbServices + " ∉ [13;20].", nbServices >= 13 && nbServices <= 20);
330431b5   Nathanael Jourdane   Fix a Junit test ...
213
		assertTrue("Column name short_name not found.", data.isContainingColumnName("short_name"));
35daa117   Nathanael Jourdane   Improve JUnits te...
214
215
		assertTrue("AMDA ivoid not found.", data.isColumnContainingValue("ivoid", AMDA_IVOID));
		Map<String, Object> amda = data.getRowMapByValue("ivoid", AMDA_IVOID);
330431b5   Nathanael Jourdane   Fix a Junit test ...
216
217
218

		assertEquals(AMDA_ACCESS_URL, amda.get("access_url"));
		assertEquals(AMDA_SHORT_NAME, amda.get("short_name"));
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
219
220
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
221
222
223
224
225
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNServices(List)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
226
227
	@Test
	public void getEPNServicesWithAttributesTest()
35daa117   Nathanael Jourdane   Improve JUnits te...
228
			throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
229
		LOGGER.info("getEPNServicesWithAttributesTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
230
		EpnTapConnection facade = new EpnTapConnection();
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
231

35daa117   Nathanael Jourdane   Improve JUnits te...
232
233
234
235
		final List<String> attributes = new ArrayList<>();
		attributes.add("access_url");
		attributes.add("short_name");

330431b5   Nathanael Jourdane   Fix a Junit test ...
236
		VOTABLE voTable = facade.getEPNServices(attributes);
35daa117   Nathanael Jourdane   Improve JUnits te...
237
238
239
		VOTableData data = ServiceCtrl.getVoTableData(voTable);

		assertEquals(2, data.getNbColumns());
330431b5   Nathanael Jourdane   Fix a Junit test ...
240
241
242
243
244
245
246
247
248
249
		assertTrue("Column name access_url not found.", data.isContainingColumnName("access_url"));
		assertTrue("Column name short_name not found.", data.isContainingColumnName("short_name"));
		assertTrue("AMDA short_name not found.",
				data.isColumnContainingValue("short_name", AMDA_SHORT_NAME));
		assertTrue("AMDA access_url not found.",
				data.isColumnContainingValue("access_url", AMDA_ACCESS_URL));

		Map<String, Object> amda = data.getRowMapByValue("short_name", AMDA_SHORT_NAME);
		assertEquals(AMDA_ACCESS_URL, amda.get("access_url"));
		assertEquals(AMDA_SHORT_NAME, amda.get("short_name"));
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
250
251
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
252
253
254
255
256
257
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNServices(List, List)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 * @throws VOResourceException Can not get the VOresource.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
258
	@Test
330431b5   Nathanael Jourdane   Fix a Junit test ...
259
	public void getEPNServicesWithKeywordsAndAttributesTest()
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
260
			throws CantGetVOTableException, VOResourceException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
261
		LOGGER.info("getEPNServicesWithKeywordsAndAttributesTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
262
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
263

330431b5   Nathanael Jourdane   Fix a Junit test ...
264
265
266
		final List<String> keywords = new ArrayList<>();
		keywords.add(AMDA_SUBJECT);

35daa117   Nathanael Jourdane   Improve JUnits te...
267
268
269
270
		final List<String> attributes = new ArrayList<>();
		attributes.add("access_url");
		attributes.add("short_name");

35daa117   Nathanael Jourdane   Improve JUnits te...
271
272
273
274
		VOTABLE voTable = facade.getEPNServices(keywords, attributes);
		VOTableData data = ServiceCtrl.getVoTableData(voTable);

		assertEquals(3, data.getNbColumns());
330431b5   Nathanael Jourdane   Fix a Junit test ...
275
		assertEquals(1, data.getNbRows());
35daa117   Nathanael Jourdane   Improve JUnits te...
276
277
278
279
280
281
282
283
284
		// TODO: Should be return only 2 columns, because keywords do not contains res_subject.
		assertTrue("Column name access_url not found.", data.isContainingColumnName("access_url"));
		assertTrue("Column name short_name not found.", data.isContainingColumnName("short_name"));
		assertTrue("AMDA short_name not found.",
				data.isColumnContainingValue("short_name", AMDA_SHORT_NAME));
		assertTrue("AMDA access_url not found.",
				data.isColumnContainingValue("access_url", AMDA_ACCESS_URL));
		assertEquals(AMDA_SHORT_NAME, data.getCell(0, "short_name"));
		assertEquals(AMDA_ACCESS_URL, data.getCell(0, "access_url"));
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
285
286
	}

35daa117   Nathanael Jourdane   Improve JUnits te...
287
288
	// *** Getters ***

330431b5   Nathanael Jourdane   Fix a Junit test ...
289
290
291
292
293
	/**
	 * Unit test for the class {@link EpnTapConnection#getEPNCoreTableName(String)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
294
295
	@Test
	public void getEPNCoreTableNameTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
296
		LOGGER.info("getEPNCoreTableNameTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
297
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
298

330431b5   Nathanael Jourdane   Fix a Junit test ...
299
		String epnCoreTableName = facade.getEPNCoreTableName(AMDA_IVOID);
35daa117   Nathanael Jourdane   Improve JUnits te...
300
301

		assertEquals("amdadb.epn_core", epnCoreTableName);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
302
303
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
304
305
306
307
308
	/**
	 * Unit test for the class {@link EpnTapConnection#getTAPURL(String)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable corresponding to the service.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
309
310
	@Test
	public void getTAPURLTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
311
		LOGGER.info("getTAPURLTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
312
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
313

5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
314
		String tapURL = facade.getTAPURL("ivo://cdpp/amda");
35daa117   Nathanael Jourdane   Improve JUnits te...
315

5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
316
317
318
		assertEquals("http://cdpp-epntap.cesr.fr/__system__/tap/run/tap", tapURL);
	}

35daa117   Nathanael Jourdane   Improve JUnits te...
319
320
	// *** Queries ***

330431b5   Nathanael Jourdane   Fix a Junit test ...
321
322
323
324
325
	/**
	 * Unit test for the class {@link EpnTapConnection#sendADQLQuery(String, String)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable resulting the query.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
326
327
	@Test
	public void sendADQLQueryTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
328
		LOGGER.info("sendADQLQueryTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
329
		EpnTapConnection facade = new EpnTapConnection();
35daa117   Nathanael Jourdane   Improve JUnits te...
330

99642cfe   Nathanael Jourdane   Improve unit test...
331
332
		List<Granule> granules = facade.sendADQLQuery(SERVICE_EPNCOREV2_ACCESS_URL,
				SERVICE_EPNCOREV2_QUERY);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
333

35daa117   Nathanael Jourdane   Improve JUnits te...
334
		assertNotNull("Granules list not returned.", granules);
99642cfe   Nathanael Jourdane   Improve unit test...
335
336
337
		assertEquals(8, granules.size());
		Granule mars = null;
		for (Granule granule : granules) {
6a2d3842   Nathanael Jourdane   Use getters and s...
338
			if ("Mars".equals(granule.getGranuleUid())) {
99642cfe   Nathanael Jourdane   Improve unit test...
339
340
341
342
				mars = granule;
			}
		}
		assertNotNull("granule 'Mars' is not found.", mars);
6a2d3842   Nathanael Jourdane   Use getters and s...
343
344
		assertEquals("4", mars.getObsId());
		assertEquals(new Integer(5), mars.getProcessingLevel());
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
345
346
	}

330431b5   Nathanael Jourdane   Fix a Junit test ...
347
348
349
350
351
	/**
	 * Unit test for the class {@link EpnTapConnection#sendQuery(String, String, Query)}.
	 *
	 * @throws CantGetVOTableException Can not get the VOTable resulting the query.
	 */
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
352
353
	@Test
	public void sendADQLQueryWithSchemaNameTest() throws CantGetVOTableException {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
354
		LOGGER.info("sendADQLQueryWithSchemaNameTest");
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
355
		EpnTapConnection facade = new EpnTapConnection();
99642cfe   Nathanael Jourdane   Improve unit test...
356
		List<Granule> granules = facade.sendQuery(SERVICE_EPNCOREV2_ACCESS_URL,
125adfc1   Nathanael Jourdane   Use enumerated qu...
357
				SERVICE_EPNCOREV2_TABLE_NAME, Query.GET_SCENE_FROM_TARGET_AND_TIME_INTERVAL);
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
358

35daa117   Nathanael Jourdane   Improve JUnits te...
359
		assertNotNull("Granules list not returned.", granules);
99642cfe   Nathanael Jourdane   Improve unit test...
360
361
362
		assertEquals(8, granules.size());
		Granule mars = null;
		for (Granule granule : granules) {
6a2d3842   Nathanael Jourdane   Use getters and s...
363
			if ("Mars".equals(granule.getGranuleUid())) {
99642cfe   Nathanael Jourdane   Improve unit test...
364
365
366
367
				mars = granule;
			}
		}
		assertNotNull("granule 'Mars' is not found.", mars);
6a2d3842   Nathanael Jourdane   Use getters and s...
368
369
		assertEquals("4", mars.getObsId());
		assertEquals(new Integer(5), mars.getProcessingLevel());
5d00d3ff   Nathanael Jourdane   #5 Add JUnit test...
370
371
	}
}