// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.messages;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.annotation.Config;
import org.chromium.base.test.BaseRobolectricTestRunner;
import org.chromium.components.messages.MessageIdentifier;
import org.chromium.ui.accessibility.AccessibilityState;
/** Unit tests for {@link ChromeMessageAutodismissDurationProvider}. */
@RunWith(BaseRobolectricTestRunner.class)
@Config(manifest = Config.NONE)
public class ChromeMessageAutodismissDurationProviderTest {
@Before
public void setUp() {
AccessibilityState.setIsPerformGesturesEnabledForTesting(false);
}
@Test
public void testDefaultNonA11yDuration() {
ChromeMessageAutodismissDurationProvider provider =
new ChromeMessageAutodismissDurationProvider();
provider.setDefaultAutodismissDurationMsForTesting(500);
provider.setDefaultAutodismissDurationWithA11yMsForTesting(1000);
Assert.assertEquals(
"Provider should return default non-a11y duration if no gesture performing "
+ "a11y services are running.",
500,
provider.get(MessageIdentifier.TEST_MESSAGE, 0));
}
@Test
public void testA11yDuration() {
AccessibilityState.setIsPerformGesturesEnabledForTesting(true);
ChromeMessageAutodismissDurationProvider provider =
new ChromeMessageAutodismissDurationProvider();
provider.setDefaultAutodismissDurationMsForTesting(500);
provider.setDefaultAutodismissDurationWithA11yMsForTesting(1000);
Assert.assertEquals(
"Provider should return default a11y duration if any gesture performing "
+ "a11y services are running.",
1000,
provider.get(MessageIdentifier.TEST_MESSAGE, 0));
}
@Test
public void testCustomDuration() {
ChromeMessageAutodismissDurationProvider provider =
new ChromeMessageAutodismissDurationProvider();
provider.setDefaultAutodismissDurationMsForTesting(500);
provider.setDefaultAutodismissDurationWithA11yMsForTesting(1000);
Assert.assertEquals(
"Provider should return custom non-a11y duration if no gesture performing "
+ "a11y services are running.",
1500,
provider.get(MessageIdentifier.TEST_MESSAGE, 1500));
Assert.assertEquals(
"Provider should return default non-a11y duration if custom duration is too short",
500,
provider.get(MessageIdentifier.TEST_MESSAGE, 250));
AccessibilityState.setIsPerformGesturesEnabledForTesting(true);
Assert.assertEquals(
"Provider should return custom a11y duration if any gesture performing "
+ "a11y services are running.",
1500,
provider.get(MessageIdentifier.TEST_MESSAGE, 1500));
Assert.assertEquals(
"Provider should return default a11y duration if custom duration is too short "
+ "and any gesture performing a11y services are running.",
1000,
provider.get(MessageIdentifier.TEST_MESSAGE, 250));
}
}