/* * 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.tika.filetypedetector; import static org.junit.Assert.*; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.spi.FileTypeDetector; import java.util.Iterator; import java.util.ServiceLoader; import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; public class TikaFileTypeDetectorTest { @Rule public TemporaryFolder tempDir = new TemporaryFolder(); private Path testDirectory = null; private static final String TEST_CLASSPATH = "/test-documents/test.html"; private static final String TEST_HTML = "test.html"; private static final String TEST_UNRECOGNISED_EXTENSION = "test.unrecognisedextension"; @Before public void setUp() throws Exception { testDirectory = tempDir.newFolder().toPath(); Files.copy(this.getClass().getResourceAsStream(TEST_CLASSPATH), testDirectory.resolve(TEST_HTML)); Files.copy(this.getClass().getResourceAsStream(TEST_CLASSPATH), testDirectory.resolve(TEST_UNRECOGNISED_EXTENSION)); } @After public void tearDown() throws Exception { } @Test public final void testDirectAccess() throws Exception { String contentType = new TikaFileTypeDetector().probeContentType(testDirectory.resolve(TEST_HTML)); assertNotNull(contentType); assertEquals("text/html", contentType); } @Test public final void testFilesProbeContentTypePathExtension() throws Exception { String contentType = Files.probeContentType(testDirectory.resolve(TEST_HTML)); assertNotNull(contentType); assertEquals("text/html", contentType); } @Test public final void testFilesProbeContentTypePathUnrecognised() throws Exception { String contentType = Files.probeContentType(testDirectory.resolve(TEST_UNRECOGNISED_EXTENSION)); assertNotNull(contentType); assertEquals("text/html", contentType); } @Test public final void testMetaInfServicesLoad() throws Exception { ServiceLoader<FileTypeDetector> serviceLoader = ServiceLoader.load(FileTypeDetector.class); Iterator<FileTypeDetector> iterator = serviceLoader.iterator(); assertTrue(iterator.hasNext()); while(iterator.hasNext()) { FileTypeDetector fileTypeDetector = iterator.next(); assertNotNull(fileTypeDetector); assertTrue(fileTypeDetector instanceof TikaFileTypeDetector); } } }