blob: 795950eab9017b2292de30da0069aeca09ed7638 [file] [log] [blame]
/**
* Licensed 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.aurora.scheduler.storage.mem;
import com.google.inject.AbstractModule;
import com.google.inject.Module;
import com.google.inject.util.Modules;
import org.apache.aurora.common.stats.StatsProvider;
import org.apache.aurora.scheduler.storage.AbstractAttributeStoreTest;
import org.apache.aurora.scheduler.testing.FakeStatsProvider;
import org.junit.Test;
import static org.apache.aurora.scheduler.storage.mem.MemAttributeStore.ATTRIBUTE_STORE_SIZE;
import static org.junit.Assert.assertEquals;
public class MemAttributeStoreTest extends AbstractAttributeStoreTest {
private FakeStatsProvider statsProvider;
@Override
protected Module getStorageModule() {
statsProvider = new FakeStatsProvider();
return Modules.combine(
new MemStorageModule(),
new AbstractModule() {
@Override
protected void configure() {
bind(StatsProvider.class).toInstance(statsProvider);
}
});
}
@Test
public void testStoreSize() {
assertEquals(0L, statsProvider.getLongValue(ATTRIBUTE_STORE_SIZE));
insert(HOST_A_ATTRS);
assertEquals(1L, statsProvider.getLongValue(ATTRIBUTE_STORE_SIZE));
insert(HOST_B_ATTRS);
assertEquals(2L, statsProvider.getLongValue(ATTRIBUTE_STORE_SIZE));
truncate();
assertEquals(0L, statsProvider.getLongValue(ATTRIBUTE_STORE_SIZE));
}
}