/******************************************************************************* * 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(); } } }