blob: 3c8756d120f16a38f8a15cd746a259cd3cae03a1 [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.stanbol.enhancer.serviceapi.impl;
import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertNotNull;
import java.io.IOException;
import java.net.URL;
import org.apache.commons.io.IOUtils;
import org.apache.stanbol.enhancer.servicesapi.ContentReference;
import org.apache.stanbol.enhancer.servicesapi.ContentSource;
import org.apache.stanbol.enhancer.servicesapi.impl.UrlReference;
import org.junit.BeforeClass;
import org.junit.Test;
public class ContentReferenceTest {
private static final String TEST_RESOURCE_NAME = "contentreferecetest.txt";
private static final String TEST_RESOURCE_CONTENT = "Used to test ContentReference!";
private static URL testURL;
@BeforeClass
public static void initURL(){
testURL = ContentReferenceTest.class.getClassLoader().getResource(TEST_RESOURCE_NAME);
assertNotNull("Unable to load test resource '"
+TEST_RESOURCE_NAME+" via Classpath!",testURL);
}
@Test(expected=IllegalArgumentException.class)
public void missingReferenceString(){
new UrlReference((String)null);
}
@Test(expected=IllegalArgumentException.class)
public void missingReferenceURL(){
new UrlReference((URL)null);
}
@Test(expected=IllegalArgumentException.class)
public void emptyReferenceString(){
new UrlReference("");
}
@Test(expected=IllegalArgumentException.class)
public void relativeReferenceString(){
new UrlReference("relative/path/to/some.resource");
}
@Test(expected=IllegalArgumentException.class)
public void unknownProtocolReferenceString(){
new UrlReference("unknownProt://test.example.org/some.resource");
}
@Test
public void testUrlReference() throws IOException{
ContentReference ref = new UrlReference(testURL);
assertNotNull(ref);
assertEquals(ref.getReference(), testURL.toString());
ContentSource source = ref.dereference();
assertNotNull(source);
String content = IOUtils.toString(source.getStream(), "UTF-8");
assertNotNull(content);
assertEquals(TEST_RESOURCE_CONTENT, content);
//same as above, but by using ContentSource.getData() instead of
//ContentSource.getStream()
ref = new UrlReference(testURL);
assertNotNull(ref);
assertEquals(ref.getReference(), testURL.toString());
source = ref.dereference();
assertNotNull(source);
content = new String(source.getData(),"UTF-8");
assertNotNull(content);
assertEquals(TEST_RESOURCE_CONTENT, content);
//test the constructor that takes a String
ref = new UrlReference(testURL.toString());
assertNotNull(ref);
assertEquals(ref.getReference(), testURL.toString());
source = ref.dereference();
assertNotNull(source);
content = IOUtils.toString(source.getStream(), "UTF-8");
assertNotNull(content);
assertEquals(TEST_RESOURCE_CONTENT, content);
}
}