Skip to main content
summaryrefslogtreecommitdiffstats
blob: 362f9ce33816337fb2ff3537657dbf14fdcac037 (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
/*******************************************************************************
 * 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.actions;

import org.eclipse.equinox.internal.p2.ui.actions.RemoveColocatedRepositoryAction;

public class RemoveColocatedRepositoryActionTest extends ColocatedRepositoryActionTest {
	public void testEmptySelection() {
		RemoveColocatedRepositoryAction action = new RemoveColocatedRepositoryAction(getProvisioningUI(), getSelectionProvider(getEmptySelection()));
		assertFalse("Should not be enabled with empty selection", action.isEnabled());
	}

	public void testInvalidSelection() {
		RemoveColocatedRepositoryAction action = new RemoveColocatedRepositoryAction(getProvisioningUI(), getSelectionProvider(getInvalidSelection()));
		assertFalse("Should not be enabled with invalid selection", action.isEnabled());
	}

	public void testRemoveRepo() {
		assertTrue(managerContains(metaManager, testRepoLocation));
		assertTrue(managerContains(artifactManager, testRepoLocation));

		RemoveColocatedRepositoryAction action = new RemoveColocatedRepositoryAction(getProvisioningUI(), getSelectionProvider(getValidRepoSelection()));
		assertTrue("Should be enabled", action.isEnabled());
		action.run();

		// Action runs asynchronously so these tests don't apply.
		// Right now this test is only testing enablement and the ability to run
		// assertFalse(managerContains(metaManager, testRepoLocation));
		// assertFalse(managerContains(artifactManager, testRepoLocation));
	}
}

Back to the top