blob: b5174c0ab7aac2386705f60268e4789043937509 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.tests.core;
import java.util.Iterator;
import org.eclipse.equinox.internal.p2.core.helpers.OrderedProperties;
import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
/**
* @since 3.5
*/
public class OrderedPropertiesTest extends AbstractProvisioningTest {
public void test_249125() {
OrderedProperties one = new OrderedProperties();
OrderedProperties two = new OrderedProperties();
assertEquals("1.0", one, two);
one = new OrderedProperties();
two = new OrderedProperties(1);
assertEquals("1.1", one, two);
one = new OrderedProperties(1);
two = new OrderedProperties();
assertEquals("1.2", one, two);
}
/**
* Ordered properties guarantees that iteration order is the same as the
* insertion order. This test verifies the claim is true.
*/
public void testIterationOrder() {
//asserts that iteration always occurs in insertion order
OrderedProperties props = new OrderedProperties();
props.setProperty("one", "one");
props.setProperty("two", "two");
for (Iterator<String> it = props.keySet().iterator(); it.hasNext();) {
assertEquals("one", it.next());
assertEquals("two", it.next());
}
props = new OrderedProperties();
props.setProperty("two", "two");
props.setProperty("one", "one");
for (Iterator<String> it = props.keySet().iterator(); it.hasNext();) {
assertEquals("two", it.next());
assertEquals("one", it.next());
}
//removing and re-adding a property should move it to the back of the insertion order
props.remove("two");
props.setProperty("two", "two");
for (Iterator<String> it = props.keySet().iterator(); it.hasNext();) {
assertEquals("one", it.next());
assertEquals("two", it.next());
}
}
}