blob: c5a9340519d53b9a110f39eb8b31c4768e446b86 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2016 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.ua.tests.help.webapp;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import org.eclipse.help.internal.webapp.data.UrlUtil;
import org.junit.Test;
/**
* Test for functions which decode a topic string
*/
public class TopicPathTest {
@Test
public void testTocOnly() {
int[] topics = UrlUtil.splitPath("25");
assertEquals(1, topics.length);
assertEquals(25, topics[0]);
}
@Test
public void testTopic() {
int[] topics = UrlUtil.splitPath("2_5");
assertEquals(2, topics.length);
assertEquals(2, topics[0]);
assertEquals(5, topics[1]);
}
@Test
public void testNullPath() {
int[] topics = UrlUtil.splitPath(null);
assertNull(topics);
}
@Test
public void testEmptyPath() {
int[] topics = UrlUtil.splitPath("");
assertNull(topics);
}
@Test
public void testDoubleUnderscore() {
int[] topics = UrlUtil.splitPath("1__2");
assertEquals(2, topics.length);
assertEquals(1, topics[0]);
assertEquals(2, topics[1]);
}
@Test
public void testMalformedPath() {
int[] topics = UrlUtil.splitPath("3_A");
assertNull(topics);
}
}