blob: 0d92a7250ae5b9349ec6ed8045d7b6cc841a00be [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.druid.query;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.collect.ImmutableList;
import nl.jqno.equalsverifier.EqualsVerifier;
import org.apache.druid.segment.TestHelper;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import java.util.Collections;
public class LookupDataSourceTest
{
@Rule
public ExpectedException expectedException = ExpectedException.none();
private final LookupDataSource lookylooDataSource = new LookupDataSource("lookyloo");
@Test
public void test_getTableNames()
{
Assert.assertEquals(Collections.emptySet(), lookylooDataSource.getTableNames());
}
@Test
public void test_getChildren()
{
Assert.assertEquals(Collections.emptyList(), lookylooDataSource.getChildren());
}
@Test
public void test_isCacheable()
{
Assert.assertFalse(lookylooDataSource.isCacheable(true));
Assert.assertFalse(lookylooDataSource.isCacheable(false));
}
@Test
public void test_isGlobal()
{
Assert.assertTrue(lookylooDataSource.isGlobal());
}
@Test
public void test_isConcrete()
{
Assert.assertTrue(lookylooDataSource.isConcrete());
}
@Test
public void test_withChildren_empty()
{
Assert.assertSame(lookylooDataSource, lookylooDataSource.withChildren(Collections.emptyList()));
}
@Test
public void test_withChildren_nonEmpty()
{
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("Cannot accept children");
lookylooDataSource.withChildren(ImmutableList.of(new LookupDataSource("bar")));
}
@Test
public void test_equals()
{
EqualsVerifier.forClass(LookupDataSource.class).usingGetClass().withNonnullFields("lookupName").verify();
}
@Test
public void test_serde() throws Exception
{
final ObjectMapper jsonMapper = TestHelper.makeJsonMapper();
final LookupDataSource deserialized = (LookupDataSource) jsonMapper.readValue(
jsonMapper.writeValueAsString(lookylooDataSource),
DataSource.class
);
Assert.assertEquals(lookylooDataSource, deserialized);
}
}