blob: deb1a2977586b359635aad9d4fc1c8bf8da7f66a [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.carbondata.core.cache;
import org.apache.carbondata.core.cache.dictionary.Dictionary;
import org.apache.carbondata.core.cache.dictionary.DictionaryColumnUniqueIdentifier;
import org.apache.carbondata.core.cache.dictionary.ForwardDictionaryCache;
import org.apache.carbondata.core.cache.dictionary.ReverseDictionaryCache;
import org.apache.carbondata.core.constants.CarbonCommonConstants;
import org.apache.carbondata.core.util.CarbonProperties;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
/**
* Test class to test dictionary cache functionality
*/
public class CacheProviderTest {
@Before public void setUp() throws Exception {
// enable lru cache by setting cache size
CarbonProperties.getInstance()
.addProperty(CarbonCommonConstants.CARBON_MAX_DRIVER_LRU_CACHE_SIZE, "10");
// enable lru cache by setting cache size
CarbonProperties.getInstance()
.addProperty(CarbonCommonConstants.CARBON_MAX_EXECUTOR_LRU_CACHE_SIZE, "20");
}
@Test public void getInstance() throws Exception {
// get cache provider instance
CacheProvider cacheProvider = CacheProvider.getInstance();
// assert for cache provider instance
assertTrue(cacheProvider instanceof CacheProvider);
}
@Test public void createCache() throws Exception {
// get cache provider instance
CacheProvider cacheProvider = CacheProvider.getInstance();
Cache<DictionaryColumnUniqueIdentifier, Dictionary> dictionaryCache =
cacheProvider.createCache(CacheType.FORWARD_DICTIONARY);
// assert that dictionary cache is an instance of Forward dictionary cache
assertTrue(dictionaryCache instanceof ForwardDictionaryCache);
assertFalse(dictionaryCache instanceof ReverseDictionaryCache);
Cache<DictionaryColumnUniqueIdentifier, Dictionary> reverseDictionaryCache =
cacheProvider.createCache(CacheType.REVERSE_DICTIONARY);
// assert that dictionary cache is an instance of Reverse dictionary cache
assertTrue(reverseDictionaryCache instanceof ReverseDictionaryCache);
assertFalse(reverseDictionaryCache instanceof ForwardDictionaryCache);
cacheProvider.dropAllCache();
}
}