org.eclipse.ui.tests.dynamicplugins.PreferencePageTests.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.ui.tests.dynamicplugins.PreferencePageTests.java

Source

/*******************************************************************************
 * Copyright (c) 2004, 2006 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.ui.tests.dynamicplugins;

import org.eclipse.jface.preference.PreferenceManager;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.dialogs.WorkbenchPreferenceNode;
import org.eclipse.ui.internal.registry.IWorkbenchRegistryConstants;

/**
 * @since 3.1
 */
public class PreferencePageTests extends DynamicTestCase {

    /**
     * @param testName
     */
    public PreferencePageTests(String testName) {
        super(testName);
    }

    public void testPreferences() {
        PreferenceManager preferenceManager = PlatformUI.getWorkbench().getPreferenceManager();
        assertNull(preferenceManager.find("dynamic.parentPage"));
        assertNull(preferenceManager.find("dynamic.parentPage/dynamic.childPage"));
        getBundle();
        WorkbenchPreferenceNode node = (WorkbenchPreferenceNode) preferenceManager.find("dynamic.parentPage");
        assertNotNull(node);
        //make sure we have a page
        node.createPage();
        node = (WorkbenchPreferenceNode) preferenceManager.find("dynamic.parentPage/dynamic.childPage");
        assertNotNull(node);
        //make sure we have a page
        node.createPage();
        removeBundle();
        assertNull(preferenceManager.find("dynamic.parentPage"));
        assertNull(preferenceManager.find("dynamic.parentPage/dynamic.childPage"));
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.tests.dynamicplugins.DynamicTestCase#getExtensionId()
     */
    protected String getExtensionId() {
        return "newPreferencePage1.testDynamicPreferencePageAddition";
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.tests.dynamicplugins.DynamicTestCase#getExtensionPoint()
     */
    protected String getExtensionPoint() {
        return IWorkbenchRegistryConstants.PL_PREFERENCES;
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.tests.dynamicplugins.DynamicTestCase#getInstallLocation()
     */
    protected String getInstallLocation() {
        return "data/org.eclipse.newPreferencePage1";
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.tests.dynamicplugins.DynamicTestCase#getMarkerClass()
     */
    protected String getMarkerClass() {
        return "org.eclipse.ui.dynamic.DynamicPreferencePage";
    }
}