blob: 694b80a55c5186f2d78b09b026ad4f3d8003ba5b [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.commons.dbutils;
import static org.junit.Assert.assertTrue;
import java.util.ServiceLoader;
import org.apache.commons.dbutils.handlers.columns.TestColumnHandler;
import org.apache.commons.dbutils.handlers.properties.TestPropertyHandler;
import org.junit.Before;
import org.junit.Test;
public class ServiceLoaderTest {
private ServiceLoader<ColumnHandler> columns;
private ServiceLoader<PropertyHandler> properties;
@Before
public void setUp() {
columns = ServiceLoader.load(ColumnHandler.class);
properties = ServiceLoader.load(PropertyHandler.class);
}
@Test
public void testFindsLocalColumnHandler() {
boolean found = false;
for (final ColumnHandler handler : columns) {
// this class is defined outside of the main classes in dbutils
if (handler instanceof TestColumnHandler) {
found = true;
}
}
assertTrue(found);
}
@Test
public void testFindsLocalPropertyHandler() {
boolean found = false;
for (final PropertyHandler handler : properties) {
// this class is defined outside of the main classes in dbutils
if (handler instanceof TestPropertyHandler) {
found = true;
}
}
assertTrue(found);
}
/**
* Verifying 'more than 1' shows that we found more than we loaded locally which assumes the core handlers
* were loaded, too.
*/
@Test
public void testFindMoreThanLocalColumns() {
int count = 0;
for (final ColumnHandler handler : columns) {
count++;
}
assertTrue(count > 1);
}
/**
* Verifying 'more than 1' shows that we found more than we loaded locally which assumes the core handlers
* were loaded, too.
*/
@Test
public void testFindMoreThanLocalProperties() {
int count = 0;
for (final PropertyHandler handler : properties) {
count++;
}
assertTrue(count > 1);
}
}