/* * Copyright (C) 2009 eXo Platform SAS. * * This 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 software 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. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.wcm.skin; import java.io.Reader; import java.io.StringReader; import java.util.HashMap; import java.util.Map; import org.exoplatform.portal.resource.ResourceResolver; import org.exoplatform.portal.resource.Resource; import org.gatein.common.logging.Logger; import org.gatein.common.logging.LoggerFactory; /** * @author <a href="trongtt@gmail.com">Trong Tran</a> * @version $Revision$ */ class MockResourceResolver implements ResourceResolver { /** . */ private final Logger log = LoggerFactory.getLogger(MockResourceResolver.class); private Map<String, String> map = new HashMap<String, String>(); public MockResourceResolver() { addResource("/path/to/MockResourceResolver.css", this.getClass().getName()); } public void addResource(String path, String value) { map.put(path, value); } public String removeResource(String path) { return map.remove(path); } @Override public Resource resolve(String path) throws NullPointerException { if (path == null) { throw new NullPointerException("No null path is accepted"); } log.info("path to resolve : " + path); final String css = map.get(path); if (css != null) { return new Resource(path) { @Override public Reader read() { return new StringReader(css); } }; } return null; } public void reset() { map.clear(); } }