blob: aa4e9ef3b29092f84008e915ea449e4e128ca8ec [file] [log] [blame]
/*
* Copyright 2018 The Android Open Source Project
*
* 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 androidx.mediarouter.app;
import static org.junit.Assert.assertTrue;
import android.content.Context;
import android.content.res.TypedArray;
import android.support.test.annotation.UiThreadTest;
import android.support.test.filters.LargeTest;
import android.support.test.filters.SmallTest;
import android.support.test.rule.ActivityTestRule;
import android.support.test.runner.AndroidJUnit4;
import androidx.mediarouter.media.MediaRouter.RouteInfo;
import androidx.mediarouter.media.TestUtils;
import androidx.mediarouter.test.R;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
@LargeTest
@RunWith(AndroidJUnit4.class)
public class MediaRouteChooserDialogTest {
@Rule
public final ActivityTestRule<MediaRouteChooserDialogTestActivity> mActivityTestRule;
private MediaRouteChooserDialog.RouteComparator mComparator;
public MediaRouteChooserDialogTest() {
mActivityTestRule = new ActivityTestRule<>(MediaRouteChooserDialogTestActivity.class);
}
@Before
public void setup() {
mComparator = new MediaRouteChooserDialog.RouteComparator();
}
@Test
@SmallTest
@UiThreadTest
public void testWindowNoTitle() {
final Context context = mActivityTestRule.getActivity();
TypedArray typedArray;
// Without any base theme or customized theme
MediaRouteChooserDialog dialog = new MediaRouteChooserDialog(context);
typedArray = dialog.getContext().obtainStyledAttributes(R.styleable.AppCompatTheme);
assertTrue(typedArray.getBoolean(R.styleable.AppCompatTheme_windowNoTitle, false));
typedArray.recycle();
// No base theme, with a customized theme (has window title)
dialog = new MediaRouteChooserDialog(context, R.style.HasWindowTitle);
typedArray = dialog.getContext().obtainStyledAttributes(R.styleable.AppCompatTheme);
assertTrue(typedArray.getBoolean(R.styleable.AppCompatTheme_windowNoTitle, false));
typedArray.recycle();
// With base theme (has window title), no customized theme
context.setTheme(R.style.HasWindowTitle);
dialog = new MediaRouteChooserDialog(context);
typedArray = dialog.getContext().obtainStyledAttributes(R.styleable.AppCompatTheme);
assertTrue(typedArray.getBoolean(R.styleable.AppCompatTheme_windowNoTitle, false));
typedArray.recycle();
// With base theme and a customized theme (both has window title)
dialog = new MediaRouteChooserDialog(context, R.style.HasWindowTitle);
typedArray = dialog.getContext().obtainStyledAttributes(R.styleable.AppCompatTheme);
assertTrue(typedArray.getBoolean(R.styleable.AppCompatTheme_windowNoTitle, false));
typedArray.recycle();
context.setTheme(0);
}
@Test
public void testRouteComparatorWithSameRouteName() {
RouteInfo routeInfo1 = TestUtils.createRouteInfo("ROUTE_ID_1", "ROUTE_NAME_1");
RouteInfo routeInfo2 = TestUtils.createRouteInfo("ROUTE_ID_2", "ROUTE_NAME_1");
int result = mComparator.compare(routeInfo1, routeInfo2);
assertTrue(result == 0);
}
@Test
public void testRouteComparatorWithCommonComparison() {
RouteInfo routeInfo1 = TestUtils.createRouteInfo("ROUTE_ID_1", "Route ABC");
RouteInfo routeInfo2 = TestUtils.createRouteInfo("ROUTE_ID_2", "Route XYZ");
int result = mComparator.compare(routeInfo1, routeInfo2);
assertTrue(result < 0);
}
@Test
public void testRouteComparatorWithCaseInsensitiveComparison() {
RouteInfo routeInfo1 = TestUtils.createRouteInfo("ROUTE_ID_1", "living room abc");
RouteInfo routeInfo2 = TestUtils.createRouteInfo("ROUTE_ID_2", "LIVING ROOM XYZ");
int result1 = mComparator.compare(routeInfo1, routeInfo2);
assertTrue(result1 < 0);
RouteInfo routeInfo3 = TestUtils.createRouteInfo("ROUTE_ID_3", "LIVING ROOM ABC");
RouteInfo routeInfo4 = TestUtils.createRouteInfo("ROUTE_ID_4", "living room xyz");
int result2 = mComparator.compare(routeInfo3, routeInfo4);
assertTrue(result2 < 0);
}
}