blob: eb4240aa762ebfcd8d4464ff19e69334056b6545 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.tobago.example.demo;
import org.apache.myfaces.tobago.internal.config.AbstractTobagoTestBase;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import javax.servlet.ServletContext;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class NavigationUnitTest extends AbstractTobagoTestBase {
private static final List<String> LIST = new ArrayList<>(Arrays.asList(
"/content/root-dummy.xhtml",
"/content/00/test-1.xhtml",
"/content/00/07/test-2.xhtml",
"/content/01/test.xhtml",
"/content/00/00/test-4.xhtml",
"/content/bad.jsp",
"/content/00_00_bad.png"
));
@Test
public void testFileNames() {
final NavigationTree navigation = new NavigationTree() {
@Override
protected List<String> locateResourcesInWar(
final ServletContext servletContext, final String directory, final List<String> result) {
return LIST;
}
};
navigation.postConstruct();
final NavigationNode root = navigation.getTree();
Assertions.assertEquals(2, root.getChildCount());
final NavigationNode n00 = (NavigationNode) root.getChildAt(0);
Assertions.assertEquals("/content/00", n00.getBranch());
Assertions.assertEquals("test-1", n00.getName());
final NavigationNode n01 = (NavigationNode) root.getChildAt(1);
Assertions.assertEquals("/content/01", n01.getBranch());
Assertions.assertEquals("test", n01.getName());
final NavigationNode n0000 = (NavigationNode) n00.getChildAt(0);
Assertions.assertEquals("/content/00/00", n0000.getBranch());
Assertions.assertEquals("test-4", n0000.getName());
final NavigationNode n0007 = (NavigationNode) n00.getChildAt(1);
Assertions.assertEquals("/content/00/07", n0007.getBranch());
Assertions.assertEquals("test-2", n0007.getName());
}
}