/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.openflowplugin.impl.karaf; import com.google.common.base.Function; import javax.annotation.Nullable; import org.junit.After; import org.junit.Assert; import org.junit.Test; import org.mockito.Matchers; import org.mockito.Mockito; import org.opendaylight.openflowplugin.impl.statistics.ofpspecific.SessionStatistics; /** * Test for {@link ResetSessionStatsComandProvider} */ public class ResetSessionStatsComandProviderTest extends AbstractKarafTest { private ResetSessionStatsComandProvider resetSessionStatsComandProvider; private static final Function<String, Boolean> CHECK_NO_ACTIVITY_FUNCTION = new Function<String, Boolean>() { @Nullable @Override public Boolean apply(String input) { return input.isEmpty(); } }; @Override public void doSetUp() { resetSessionStatsComandProvider = new ResetSessionStatsComandProvider(); SessionStatistics.resetAllCounters(); } @After public void tearDown() { Mockito.verify(console).print(Matchers.anyString()); SessionStatistics.resetAllCounters(); } /** * test for {@link ResetSessionStatsComandProvider#doExecute()} when no stats were touched before * * @throws Exception */ @Test public void testDoExecute_clean() throws Exception { Assert.assertTrue(checkNoActivity(SessionStatistics.provideStatistics(), CHECK_NO_ACTIVITY_FUNCTION)); resetSessionStatsComandProvider.execute(cmdSession); Assert.assertTrue(checkNoActivity(SessionStatistics.provideStatistics(), CHECK_NO_ACTIVITY_FUNCTION)); } /** * test for {@link ResetSessionStatsComandProvider#doExecute()} when stats were touched before * * @throws Exception */ @Test public void testDoExecute_dirty() throws Exception { final String dummySessionId = "junitSessionId"; Assert.assertTrue(checkNoActivity(SessionStatistics.provideStatistics(), CHECK_NO_ACTIVITY_FUNCTION)); SessionStatistics.countEvent(dummySessionId, SessionStatistics.ConnectionStatus.CONNECTION_CREATED); Assert.assertFalse(checkNoActivity(SessionStatistics.provideStatistics(), CHECK_NO_ACTIVITY_FUNCTION)); resetSessionStatsComandProvider.execute(cmdSession); Assert.assertTrue(checkNoActivity(SessionStatistics.provideStatistics(), CHECK_NO_ACTIVITY_FUNCTION)); } }