Skip to main content
summaryrefslogtreecommitdiffstats
blob: c9621c422555999081426176b82c91a21f379699 (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
/*******************************************************************************
 *  Copyright (c) 2008, 2010 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.p2.tests.ui.dialogs;

import org.eclipse.equinox.p2.tests.ui.AbstractProvisioningUITest;
import org.eclipse.equinox.p2.ui.RepositoryManipulationPage;
import org.eclipse.jface.dialogs.TitleAreaDialog;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.PlatformUI;

/**
 * Tests for the Repository Manipulation page.
 * If nothing else, this test ensures that repository page can be hosted
 * somewhere besides preferences
 */
public class RepositoryManipulationPageTest extends AbstractProvisioningUITest {

	class TestDialog extends TitleAreaDialog {
		public TestDialog() {
			super(null);
		}

		RepositoryManipulationPage page;

		protected Control createDialogArea(Composite parent) {
			page = new RepositoryManipulationPage();
			page.init(PlatformUI.getWorkbench());
			page.createControl(parent);
			this.setTitle("Software Sites");
			this.setMessage("The enabled sites will be searched for software.  Disabled sites are ignored.");
			return page.getControl();
		}

		protected void okPressed() {
			if (page.performOk())
				super.okPressed();
		}

		protected void cancelPressed() {
			if (page.performCancel())
				super.cancelPressed();
		}
	}

	/**
	 * Tests the dialog
	 */
	public void testDialog() {
		TestDialog dialog = new TestDialog();
		dialog.setBlockOnOpen(false);
		dialog.open();
		try {
			// reach in
		} finally {
			dialog.close();
		}
	}
}

Back to the top