Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dbf1ae46ac76f7e37327cf2263db852846100ac4 (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
82
83
84
85
86
87
88
89
90
91
92
/*******************************************************************************
 *  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.frameworkadmin.tests;

import junit.framework.TestCase;
import org.eclipse.equinox.internal.provisional.frameworkadmin.LauncherData;

/**
 * @since 1.0
 */
public class LauncherDataTest extends TestCase {

	/*
	 * Constructor for the class.
	 */
	public LauncherDataTest(String name) {
		super(name);
	}

	public void testRemoveProgramArg() {
		LauncherData data = new LauncherData("equinox", "1.0", "eclipse", "1.0");
		data.setProgramArgs(new String[] {"-console", "-startup", "foo"});
		data.removeProgramArg("-startup");
		assertEquals("1.0", new String[] {"-console"}, data.getProgramArgs());

		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "-bar"});
		data.removeProgramArg("-startup");
		assertEquals("2.0", new String[] {"-console", "-bar"}, data.getProgramArgs());

		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-startup", "foo"});
		data.removeProgramArg("-startup");
		assertEquals("3.0", new String[0], data.getProgramArgs());

		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "bar"});
		data.removeProgramArg("-startup");
		assertEquals("4.0", new String[] {"-console"}, data.getProgramArgs());

		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "bar", "-xxx"});
		data.removeProgramArg("-startup");
		assertEquals("5.0", new String[] {"-console", "-xxx"}, data.getProgramArgs());

		// arg which doesn't start with a dash - dont' consume anything but that specific arg
		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "bar", "-xxx"});
		data.removeProgramArg("foo");
		assertEquals("6.0", new String[] {"-console", "-startup", "foo", "bar", "-xxx"}, data.getProgramArgs());

		// non-matching arg
		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "bar", "-xxx"});
		data.removeProgramArg("zzz");
		assertEquals("7.0", new String[] {"-console", "-startup", "foo", "bar", "-xxx"}, data.getProgramArgs());

		// empty string
		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "bar", "-xxx"});
		data.removeProgramArg("foo");
		assertEquals("8.0", new String[] {"-console", "-startup", "foo", "bar", "-xxx"}, data.getProgramArgs());

		// just whitespace
		data.setProgramArgs(null);
		data.setProgramArgs(new String[] {"-console", "-startup", "foo", "bar", "-xxx"});
		data.removeProgramArg(" ");
		assertEquals("9.0", new String[] {"-console", "-startup", "foo", "bar", "-xxx"}, data.getProgramArgs());

	}

	/*
	 * Compare the give 2 arrays and assert whether or not they should be considered equal.
	 */
	public static void assertEquals(String message, String[] one, String[] two) {
		if (one == null)
			assertNull(message, two);
		if (two == null)
			fail(message);
		assertEquals(message, one.length, two.length);
		for (int i = 0; i < one.length; i++)
			assertEquals(message, one[i], two[i]);
	}
}

Back to the top