blob: 253a09beb9da8de7799203062a1a4a1e9a7b572a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Mylyn project committers 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
*******************************************************************************/
package org.eclipse.mylyn.java.tests;
import org.eclipse.mylyn.context.core.ContextCorePlugin;
import org.eclipse.mylyn.context.tests.AbstractContextTest;
import org.eclipse.mylyn.internal.context.core.InteractionContext;
import org.eclipse.mylyn.internal.context.core.ScalingFactors;
import org.eclipse.mylyn.internal.java.ui.JavaStructureBridge;
import org.eclipse.mylyn.monitor.core.InteractionEvent;
/**
* @author Mik Kersten
*/
public class ContentSpecificContextTest extends AbstractContextTest {
public void testEventProcessing() {
InteractionContext context = new InteractionContext("global-id", new ScalingFactors());
context.setContentLimitedTo(JavaStructureBridge.CONTENT_TYPE);
ContextCorePlugin.getContextManager().addGlobalContext(context);
ContextCorePlugin.getContextManager().processInteractionEvent(
new InteractionEvent(InteractionEvent.Kind.PROPAGATION, "foo-kind", "h0", MOCK_ORIGIN));
assertEquals(0, context.getAllElements().size());
ContextCorePlugin.getContextManager().processInteractionEvent(mockSelection("h1"), false, false);
assertEquals(1, context.getAllElements().size());
ContextCorePlugin.getContextManager().removeGlobalContext(context);
}
}