/******************************************************************************* * Copyright (c) 2004, 2011 Tasktop Technologies 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: * Tasktop Technologies - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.context.sdk.util; import junit.framework.TestCase; import org.eclipse.mylyn.context.core.ContextCore; import org.eclipse.mylyn.context.core.IInteractionContext; import org.eclipse.mylyn.internal.context.core.InteractionContextManager; import org.eclipse.mylyn.monitor.core.InteractionEvent; /** * @author Mik Kersten */ public abstract class AbstractContextTest extends TestCase { protected static final String MOCK_HANDLE = "<mock-handle>"; private static final String MOCK_PROVIDER = "<mock-provider>"; protected static final String MOCK_ORIGIN = "<mock-origin>"; protected static final String MOCK_KIND = "java"; @Override protected void setUp() throws Exception { super.setUp(); if (ContextCore.getContextManager() != null) { assertFalse( "Unexpected context active: " + ((InteractionContextManager) ContextCore.getContextManager()).getActiveContexts(), ContextCore.getContextManager().isContextActive()); } } @Override protected void tearDown() throws Exception { super.tearDown(); if (ContextCore.getContextManager() != null) { assertFalse("" + ((InteractionContextManager) ContextCore.getContextManager()).getActiveContexts(), ContextCore.getContextManager().isContextActive()); } } protected InteractionEvent mockSelection(String handle) { return new InteractionEvent(InteractionEvent.Kind.SELECTION, MOCK_KIND, handle, MOCK_ORIGIN); } protected InteractionEvent mockPropagation(String handle) { return new InteractionEvent(InteractionEvent.Kind.PROPAGATION, MOCK_KIND, handle, MOCK_ORIGIN); } protected InteractionEvent mockSelection() { return mockSelection(MOCK_HANDLE); } protected InteractionEvent mockNavigation(String toHandle) { return new InteractionEvent(InteractionEvent.Kind.SELECTION, MOCK_KIND, toHandle, MOCK_ORIGIN, MOCK_PROVIDER); } protected InteractionEvent mockInterestContribution(String handle, String kind, float value) { InteractionEvent event = new InteractionEvent(InteractionEvent.Kind.MANIPULATION, kind, handle, MOCK_ORIGIN, value); return event; } protected InteractionEvent mockInterestContribution(String handle, float value) { return mockInterestContribution(handle, MOCK_KIND, value); } protected InteractionEvent mockPreferenceChange(String handle) { return new InteractionEvent(InteractionEvent.Kind.PREFERENCE, MOCK_KIND, handle, MOCK_ORIGIN); } protected boolean compareTaskscapeEquality(IInteractionContext t1, IInteractionContext t2) { return false; } }