Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1547c7c21ca12a2af44f84abe75c1c6b32626e1f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*******************************************************************************
 * Copyright (c) 2011, 2017 SAP AG and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     Lazar Kirchev, SAP AG - initial API and implementation
 *******************************************************************************/

package org.eclipse.equinox.console.command.adapter;

import static org.junit.Assert.*;

import java.lang.reflect.Method;
import java.util.Dictionary;
import java.util.HashSet;
import java.util.Set;

import org.eclipse.osgi.framework.console.CommandInterpreter;
import org.eclipse.osgi.framework.console.CommandProvider;
import org.junit.Test;

public class ActivatorTests {
	
	private static final String SCOPE_PROPERTY_NAME = "osgi.command.scope";
	private static final String FUNCTION_PROPERTY_NAME = "osgi.command.function";
	private static final String EQUINOX_SCOPE = "equinox";

	@Test
	public void testGetCommandMethods() {
		Set<String> commandNames = new HashSet<>();
		commandNames.add("_testMethod1");
		commandNames.add("_testMethod2");
		commandNames.add("_testMethod3");
		
		Activator activator = new Activator();
		CommandProvider command = new TestCommandProvider();
		Method[] methods = activator.getCommandMethods(command);
		
		assertEquals("Command methods not as expected", 3, methods.length);
		for (Method method : methods) {
			assertTrue("Command methods should not include " + method.getName(), commandNames.contains(method.getName()));
		}
		
		Dictionary<String, Object> props = activator.getAttributes(methods);
		assertTrue("Attributes should contain property " + SCOPE_PROPERTY_NAME + " with value " + EQUINOX_SCOPE, EQUINOX_SCOPE.equals(props.get(SCOPE_PROPERTY_NAME)));
		String[] methodNames = (String[])props.get(FUNCTION_PROPERTY_NAME);
		assertEquals("Methods number not as expected", methods.length, methodNames.length);
		
		for(int i = 0; i < methods.length; i++) {
			assertEquals("Wrong method name", methods[i].getName().substring(1), methodNames[i]);
		}
	}

	class TestCommandProvider implements CommandProvider {
		public void _testMethod1(CommandInterpreter i) {
			
		}
		
		public void _testMethod2(CommandInterpreter i) {
			
		}
		
		public void _testMethod3(CommandInterpreter i) {
			
		}
		
		@Override
		public String getHelp() {
			// TODO Auto-generated method stub
			return null;
		}
		
	}

}

Back to the top