Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 61c79eec867b4cc24af91e1da36fddc232ad1ba9 (plain) (blame)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/******************************************************************************* 
* Copyright (c) 2010, 2015 EclipseSource and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*   EclipseSource - initial API and implementation
*   Red Hat Inc. - Bug 460967
******************************************************************************/
package org.eclipse.equinox.p2.tests.metadata.repository;

import java.io.*;
import java.net.URI;
import java.net.URISyntaxException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.equinox.internal.p2.artifact.repository.simple.SimpleArtifactRepository;
import org.eclipse.equinox.internal.p2.core.helpers.ServiceHelper;
import org.eclipse.equinox.internal.p2.metadata.repository.*;
import org.eclipse.equinox.internal.p2.repository.helpers.LocationProperties;
import org.eclipse.equinox.internal.p2.updatesite.metadata.UpdateSiteMetadataRepository;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.core.ProvisionException;
import org.eclipse.equinox.p2.metadata.Version;
import org.eclipse.equinox.p2.repository.artifact.IArtifactRepository;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepository;
import org.eclipse.equinox.p2.tests.*;

/**
 * These tests are used to verify the index.p2 file in a variety 
 * of different situations
 */
public class SiteIndexFileTest extends AbstractProvisioningTest {

	class VisibleMetadataRepositoryManager extends MetadataRepositoryManager {
		public VisibleMetadataRepositoryManager() {
			super(ServiceHelper.getService(TestActivator.getContext(), IProvisioningAgent.class));
		}

		public String[] sortSuffixes(String[] suffixes, URI location, String[] preferredOrder) {
			return super.sortSuffixes(suffixes, location, preferredOrder);
		}
	}

	private void assertArrayOrder(String[] expected, String[] actual) {
		assertEquals(expected.length, actual.length);
		for (int i = 0; i < expected.length; i++) {
			assertEquals(expected[i], actual[i]);
		}
	}

	/*
	 * Tests that the sort method works in a simple case
	 */
	public void testSortOrderSimple() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first", "second", "third"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), null);
		assertArrayOrder(new String[] {"first", "second", "third"}, suffixes);
	}

	/*
	 * Tests that the sort method works in a simple case
	 */
	public void testSortOrderSimple2() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first", "second", "third"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"first", "second", "third"});
		assertArrayOrder(new String[] {"first", "second", "third"}, suffixes);
	}

	/*
	 * Tests that the sort method works in a simple case
	 */
	public void testSortOrderSimple3() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"first", "second", "third"});
		assertArrayOrder(new String[] {"first"}, suffixes);
	}

	/*
	 * Tests that sort method works in a simple case
	 */
	public void testSortOrderSimple4() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first", "second", "third"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"first"});
		assertArrayOrder(new String[] {"first", "second", "third"}, suffixes);
	}

	/*
	 * Tests that the sort method works in a simple case
	 */
	public void testSortOrderSimple5() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first", "second", "third"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"foo", "bar"});
		assertArrayOrder(new String[] {"first", "second", "third"}, suffixes);
	}

	/*
	 * Tests that the sort method works when the elements are reversed
	 */
	public void testSortOrderReverse() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first", "second", "third"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"third", "second", "first"});
		assertArrayOrder(new String[] {"third", "second", "first"}, suffixes);
	}

	/*
	 * Tests that the sort method works when the elements are reversed
	 */
	public void testSortOrderReverse2() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"first", "second", "third"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"third"});
		assertArrayOrder(new String[] {"third", "first", "second"}, suffixes);
	}

	/*
	 * Tests the sort method for a more complex case
	 */
	public void testSortOrderComplex() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"a", "b", "c", "d", "e", "f"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"b", "e", "f"});
		assertArrayOrder(new String[] {"b", "e", "f", "a", "c", "d"}, suffixes);
	}

	/*
	 * Tests that when extra elements are in the preferred order, they are ignored
	 */
	public void testSortOrderAdditional() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"a", "b", "c", "d", "e", "f"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"first", "b", "second", "e", "third", "f"});
		assertArrayOrder(new String[] {"b", "e", "f", "a", "c", "d"}, suffixes);
	}

	/*
	 * Tests that when duplicate elements are listed, they are handled properly
	 */
	public void testSortOrderDuplicate() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"a", "b", "c", "d", "e", "f"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"a", "b", "a"});
		assertArrayOrder(new String[] {"a", "b", "c", "d", "e", "f"}, suffixes);
	}

	/*
	 * Tests that the STOP token is handled properly
	 */
	public void testSortOrderStop() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"a", "b", "c", "d", "e", "f"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"a", "!"});
		assertArrayOrder(new String[] {"a"}, suffixes);
	}

	/*
	 * Tests that the STOP token is handled properly when it's the first element in the list
	 */
	public void testSortOrderStopEmpty() throws URISyntaxException {
		VisibleMetadataRepositoryManager repositoryManager = new VisibleMetadataRepositoryManager();
		String[] suffixes = {"a", "b", "c", "d", "e", "f"};
		suffixes = repositoryManager.sortSuffixes(suffixes, new URI("http://foo"), new String[] {"!"});
		assertArrayOrder(new String[] {}, suffixes);
	}

	/*
	 * Tests that when no index.p2 file is specified, things work just fine
	 */
	public void testNoIndex() throws Exception {
		LocationProperties locationProperties = LocationProperties.create(null);
		assertNotNull(locationProperties);
		assertFalse(locationProperties.exists());
	}

	/*
	 * Tests that when a bad index.p2 file is specified, things work just fine
	 */
	public void testBadIndex1() throws Exception {
		File indexFile = TestData.getFile("metadataRepo/indexfiles", "badIndex.p2");
		InputStream inputStream = new FileInputStream(indexFile);

		PrintStream out = System.out;
		LocationProperties locationProperties = null;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			locationProperties = LocationProperties.create(inputStream);
		} finally {
			System.setOut(out);
		}
		assertNotNull(locationProperties);
		assertFalse(locationProperties.exists());
	}

	/*
	 * Tests that when a bad index.p2 file is specified, things work just fine
	 */
	public void testBadIndex2() throws Exception {
		File indexFile = TestData.getFile("metadataRepo/indexfiles", "badIndex2.p2");
		InputStream inputStream = new FileInputStream(indexFile);
		LocationProperties locationProperties = LocationProperties.create(inputStream);
		assertNotNull(locationProperties);
		assertFalse(locationProperties.exists());
	}

	/*
	 * Tests that a simple index.p2 file is read and used properly
	 */
	public void testSimpleIndexV1() throws Exception {
		File indexFile = TestData.getFile("metadataRepo/indexfiles", "simpleIndexV1.p2");
		InputStream inputStream = new FileInputStream(indexFile);
		LocationProperties locationProperties = LocationProperties.create(inputStream);
		assertNotNull("1.0", locationProperties);
		assertEquals("1.1", Version.createOSGi(1, 0, 0), locationProperties.getVersion());
		assertEquals("1.2", 0, locationProperties.getMetadataFactorySearchOrder().length);
	}

	/*
	 * Tests that a simple index.p2 file is read and used properly
	 */
	public void testSimpleIndex2V1() throws Exception {
		File indexFile = TestData.getFile("metadataRepo/indexfiles", "simpleIndex2_V1.p2");
		InputStream inputStream = new FileInputStream(indexFile);
		LocationProperties locationProperties = LocationProperties.create(inputStream);
		assertNotNull("1.0", locationProperties);
		assertEquals("1.1", Version.createOSGi(1, 0, 0), locationProperties.getVersion());
		assertEquals("1.2", 0, locationProperties.getMetadataFactorySearchOrder().length);
	}

	/*
	 * Tests that a simple index.p2 file is read and used properly
	 */
	public void testSimpleIndex3V1() throws Exception {
		File indexFile = TestData.getFile("metadataRepo/indexfiles", "simpleIndex3_V1.p2");
		InputStream inputStream = new FileInputStream(indexFile);
		LocationProperties locationProperties = LocationProperties.create(inputStream);
		assertNotNull("1.0", locationProperties);
		assertEquals("1.1", Version.createOSGi(1, 0, 0), locationProperties.getVersion());
		assertEquals("1.2", 3, locationProperties.getMetadataFactorySearchOrder().length);
		assertEquals("1.4", 3, locationProperties.getArtifactFactorySearchOrder().length);
		assertArrayOrder(new String[] {"bar", "foo", "!"}, locationProperties.getMetadataFactorySearchOrder());
		assertArrayOrder(new String[] {"foo", "bar", "!"}, locationProperties.getArtifactFactorySearchOrder());
	}

	/*
	 * Tests that the metadata repository manager can read a simple index.p2 file
	 */
	public void testSingleRepository1() throws Exception {
		URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "test1").toURI();
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Adds a query parameter to the end of the URI and tests that p2 can properly 
	 * find the p2.index file.
	 */
	public void testSingleRepositoryWithQueryParams() throws Exception {
		URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "test1").toURI();
		URI repositoryLocationWithParams = new URI(repositoryLocation.toString() + "?parameter=foo");
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocationWithParams, new NullProgressMonitor());
			assertTrue(repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that metadata repository manager can read a simple index.p2 file
	 */
	public void testSingleRepository2() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "test2").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof LocalMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that when a bad index.p2 file is specified, the metadata repository manager can work just fine
	 */
	public void testBadIndexFileInRepository() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "badtest1").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof LocalMetadataRepository || repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that when a simple index.p2 file is specified, the metadata repository manager can read and handle it just fine
	 */
	public void testMultiRepository1() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "test3").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that when a simple index.p2 file is specified, the metadata repository manager can read and handle it just fine
	 */
	public void testMultiRepository2() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "test4").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that when a simple index.p2 file is specified, the metadata repository manager can read and handle it just fine
	 */
	public void testDuplicateEntries() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "test5").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that the STOP token is handled properly by the metadata repository manager
	 */
	public void testStop1() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "stop1").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof UpdateSiteMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that the STOP token is handled properly by the metadata repository manager
	 */
	public void testStop2() throws Exception {
		URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "stop2").toURI();
		try {
			getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
		} catch (ProvisionException e) {
			// expected path
			return;
		}
		fail("We should have not been able to load the repository.");
	}

	/*
	 * Tests a composite repository to ensure it loads fine as well as all its children
	 */
	public void testCompositeRepo() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "compositeRepo").toURI();
			IMetadataRepository repository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue("1.0", repository instanceof CompositeMetadataRepository);
			CompositeMetadataRepository compositeMetadataRepository = (CompositeMetadataRepository) repository;
			assertEquals("1.1", 2, compositeMetadataRepository.getChildren().size());
			IMetadataRepository child1 = getMetadataRepositoryManager().loadRepository(compositeMetadataRepository.getChildren().get(0), new NullProgressMonitor());
			IMetadataRepository child2 = getMetadataRepositoryManager().loadRepository(compositeMetadataRepository.getChildren().get(1), new NullProgressMonitor());
			assertTrue("1.2", child1 instanceof UpdateSiteMetadataRepository);
			assertTrue("1.2", child2 instanceof LocalMetadataRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that an artifact repository manager can handle an index.p2 file
	 */
	public void testSimpleArtifact() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "artifactTest1").toURI();
			IArtifactRepository repository = getArtifactRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(repository instanceof SimpleArtifactRepository);
		} finally {
			System.setOut(out);
		}
	}

	/*
	 * Tests that an artifact repository manager can handle an index.p2 file
	 */
	public void testSimpleArtifact2() throws Exception {
		URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "artifactTest2").toURI();
		try {
			getArtifactRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
		} catch (ProvisionException e) {
			// expected path
			return;
		}
		fail("We should have not been able to load the repository.");
	}

	/*
	 * Tests that a location which specifies both an artifact and a metadata repository w/ an index.p2 file 
	 * can fully loaded
	 */
	public void testFullRepository() throws Exception {
		PrintStream out = System.out;
		try {
			System.setOut(new PrintStream(new StringBufferStream()));
			URI repositoryLocation = TestData.getFile("metadataRepo/multipleRepos", "fullRepository").toURI();
			IMetadataRepository metadataRepository = getMetadataRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			IArtifactRepository artifactRepository = getArtifactRepositoryManager().loadRepository(repositoryLocation, new NullProgressMonitor());
			assertTrue(metadataRepository instanceof UpdateSiteMetadataRepository);
			assertTrue(artifactRepository instanceof SimpleArtifactRepository);
		} finally {
			System.setOut(out);
		}
	}
}

Back to the top