blob: 7ff2cebe5bc614200be1f79ededd64d217d2a677 [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.AbstractQuotaStoreTest;
import org.apache.aurora.scheduler.testing.FakeStatsProvider;
import org.junit.Test;
import static org.apache.aurora.scheduler.storage.mem.MemQuotaStore.QUOTA_STORE_SIZE;
import static org.junit.Assert.assertEquals;
public class MemQuotaStoreTest extends AbstractQuotaStoreTest {
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(QUOTA_STORE_SIZE));
save(ROLE_A, QUOTA_A);
assertEquals(1L, statsProvider.getLongValue(QUOTA_STORE_SIZE));
save(ROLE_B, QUOTA_B);
assertEquals(2L, statsProvider.getLongValue(QUOTA_STORE_SIZE));
delete(ROLE_A);
assertEquals(1L, statsProvider.getLongValue(QUOTA_STORE_SIZE));
deleteAll();
assertEquals(0L, statsProvider.getLongValue(QUOTA_STORE_SIZE));
}
}