Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c898a4f00c2c95ab3b54d0889947f7e533b475a3 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*******************************************************************************
 * Copyright (c) 2008 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.internal.security.tests.storage;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import java.io.IOException;
import java.net.URL;
import java.util.Map;
import org.eclipse.equinox.internal.security.storage.StorageUtils;
import org.eclipse.equinox.security.storage.*;
import org.junit.Test;

public class SlashEncodeTest extends StorageAbstractTest {

	final private static String[] decodedSlash = {"root", "ro/ot", "/root", "root/", "ro/ot/me", "ro//ot"};
	final private static String[] encodedSlash = {"root", "ro\\2fot", "\\2froot", "root\\2f", "ro\\2fot\\2fme", "ro\\2f\\2fot"};

	final private static String[] decodedBackSlash = {"ro\\ot", "\\root", "root\\", "ro\\ot\\me", "ro\\\\ot"};
	final private static String[] encodedBackSlash = {"ro\\5cot", "\\5croot", "root\\5c", "ro\\5cot\\5cme", "ro\\5c\\5cot"};

	final private static String[] decodedMixSlash = {"r/o\\ot", "r\\o/ot", "/\\root", "root\\/", "\\5cro\\2f ot"};
	final private static String[] encodedMixSlash = {"r\\2fo\\5cot", "r\\5co\\2fot", "\\2f\\5croot", "root\\5c\\2f", "\\5c5cro\\5c2f ot"};

	/**
	 * Tests forward slash
	 */
	@Test
	public void testForwardSlash() {
		for (int i = 0; i < decodedSlash.length; i++) {
			String tmp = EncodingUtils.encodeSlashes(decodedSlash[i]);
			assertEquals(encodedSlash[i], tmp);
			assertEquals(decodedSlash[i], EncodingUtils.decodeSlashes(tmp));
		}
	}

	/**
	 * Tests backward slash
	 */
	@Test
	public void testBackwardSlash() {
		for (int i = 0; i < decodedBackSlash.length; i++) {
			String tmp = EncodingUtils.encodeSlashes(decodedBackSlash[i]);
			assertEquals(encodedBackSlash[i], tmp);
			assertEquals(decodedBackSlash[i], EncodingUtils.decodeSlashes(tmp));
		}
	}

	/**
	 * Tests mixed slashes
	 */
	@Test
	public void testMixSlash() {
		for (int i = 0; i < decodedMixSlash.length; i++) {
			String tmp = EncodingUtils.encodeSlashes(decodedMixSlash[i]);
			assertEquals(encodedMixSlash[i], tmp);
			assertEquals(decodedMixSlash[i], EncodingUtils.decodeSlashes(tmp));
		}
	}

	/**
	 * Tests edge conditions: null or empty arguments 
	 */
	@Test
	public void testEdge() {
		assertNull(EncodingUtils.encodeSlashes(null));
		assertNull(EncodingUtils.decodeSlashes(null));

		String encoded = EncodingUtils.encodeSlashes("");
		assertNotNull(encoded);
		assertEquals("", encoded);
	}

	protected Map<String, Object> getOptions() {
		// Password value really doesn't matter here; we specify it to avoid
		// triggering UI elements in case default password provider has the 
		// highest priority in the tested configuration
		return getOptions("password1");
	}

	/**
	 * Tests preferences node name using slash encoding
	 * @throws IOException 
	 * @throws BackingStoreException 
	 * @throws  
	 */
	@Test
	public void testPreferencesWithSlashes() throws IOException, StorageException {
		URL location = getStorageLocation();
		assertNotNull(location);
		{ // block1: fill and test in memory
			ISecurePreferences preferences = newPreferences(location, getOptions());
			String safePath = EncodingUtils.encodeSlashes("ro/ot");
			ISecurePreferences node = preferences.node(safePath);
			node.put("password", "test", true);

			assertFalse(preferences.nodeExists("ro"));
			assertFalse(preferences.nodeExists("ro/ot"));
			assertTrue(preferences.nodeExists(safePath));

			preferences.flush();
			closePreferences(preferences);
		}

		{ // block2: reload and check
			ISecurePreferences preferences = newPreferences(location, getOptions());
			String children[] = preferences.childrenNames();
			assertNotNull(children);
			assertEquals(children.length, 1);
			ISecurePreferences nodeRet = preferences.node(children[0]);
			String absolutePath = EncodingUtils.decodeSlashes(nodeRet.absolutePath());
			assertEquals("/ro/ot", absolutePath);
			assertEquals("test", nodeRet.get("password", null));
		}
		StorageUtils.delete(location);
	}
}

Back to the top