/* * Copyright 2008 Federal Chancellery Austria and * Graz University of Technology * * Licensed 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 at.gv.egiz.urldereferencer; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; import at.gv.egiz.bku.utils.StreamUtil; import at.gv.egiz.bku.utils.urldereferencer.FormDataURLSupplier; import at.gv.egiz.bku.utils.urldereferencer.SimpleFormDataContextImpl; import at.gv.egiz.bku.utils.urldereferencer.StreamData; import at.gv.egiz.bku.utils.urldereferencer.URLDereferencer; import at.gv.egiz.bku.utils.urldereferencer.URLDereferencerContext; public class FormDataTest implements FormDataURLSupplier { protected URLDereferencerContext urlCtx; protected InputStream testStream = null; protected String contentType = null; protected String paramName = ""; @Override public InputStream getFormData(String parameterName) { if (paramName.equals(parameterName)) { return testStream; } else { return null; } } @Override public String getFormDataContentType(String parameterName) { if (paramName.equals(parameterName)) { return contentType; } else { return null; } } @Before public void setUp() { urlCtx = new SimpleFormDataContextImpl(this); } @Test(expected = MalformedURLException.class) public void testInvalidFormdataUrl() throws IOException { String url = "abs://whatknowi"; StreamData sd = URLDereferencer.getInstance().dereference(url, urlCtx); assertNull(sd); url = ":://whatknowi"; sd = URLDereferencer.getInstance().dereference(url, urlCtx); assertNull(sd); url = ""; sd = URLDereferencer.getInstance().dereference(url, urlCtx); } @Test public void testFormData() throws IOException { paramName = "Müllcontainer"; String url = "formdata:"+paramName; StreamData sd = URLDereferencer.getInstance().dereference(url, urlCtx); assertNull(sd); testStream = new ByteArrayInputStream("HelloWorld".getBytes("UTF-8")); sd = URLDereferencer.getInstance().dereference(url, urlCtx); String result = StreamUtil.asString(sd.getStream(), "UTF-8"); assertEquals("HelloWorld", result); } }