/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.servlet; import com.liferay.portal.kernel.util.Http; import com.liferay.portal.kernel.util.HttpUtil; import com.liferay.portal.kernel.util.PortletKeys; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.tools.ToolDependencies; import com.liferay.portal.util.HttpImpl; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; /** * @author Carlos Sierra Andrés * @author Raymond Augé */ public class ModulePathContainerTest { @BeforeClass public static void setUpClass() throws Exception { ToolDependencies.wireCaches(); _http = HttpUtil.getHttp(); _httpUtil.setHttp(new HttpImpl()); } @AfterClass public static void tearDownClass() { _httpUtil.setHttp(_http); } @Test public void testModulePathWithNoContextPath() { String modulePath = "/js/javascript.js"; Assert.assertEquals( PortletKeys.PORTAL, ComboServlet.getModulePortletId(modulePath)); Assert.assertEquals( "/js/javascript.js", ComboServlet.getResourcePath(modulePath)); } @Test public void testModulePathWithPortletId() { String modulePath = PortletKeys.PORTAL + ":/js/javascript.js"; Assert.assertEquals( PortletKeys.PORTAL, ComboServlet.getModulePortletId(modulePath)); Assert.assertEquals( "/js/javascript.js", ComboServlet.getResourcePath(modulePath)); } @Test public void testModulePathWithPortletIdAndNoResourcePath() { String modulePath = PortletKeys.PORTAL + ":"; Assert.assertEquals( PortletKeys.PORTAL, ComboServlet.getModulePortletId(modulePath)); Assert.assertEquals( StringPool.BLANK, ComboServlet.getResourcePath(modulePath)); } private static Http _http; private static final HttpUtil _httpUtil = new HttpUtil(); }