blob: 9a5297c400982642224e0b588f883ebff29dce83 [file] [log] [blame]
/*
* Copyright (C) 2015 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 android.databinding.testapp;
import android.databinding.DataBinderTrojan;
import android.databinding.testapp.databinding.NewApiLayoutBinding;
import android.os.Build;
import android.test.UiThreadTest;
import android.view.View;
import android.widget.TextView;
import java.util.ArrayList;
public class NewApiTest extends BaseDataBinderTest<NewApiLayoutBinding> {
public NewApiTest() {
super(NewApiLayoutBinding.class);
}
@Override
protected void setUp() throws Exception {
super.setUp();
}
@UiThreadTest
public void testSetElevation() {
initBinder();
mBinder.setElevation(3);
mBinder.setName("foo");
mBinder.setChildren(new ArrayList<View>());
mBinder.executePendingBindings();
assertEquals("foo", mBinder.textView.getText().toString());
assertEquals(3f, mBinder.textView.getElevation());
}
@UiThreadTest
public void testSetElevationOlderAPI() {
initBinder();
DataBinderTrojan.setBuildSdkInt(1);
try {
TextView textView = mBinder.textView;
float originalElevation = textView.getElevation();
mBinder.setElevation(3);
mBinder.setName("foo2");
mBinder.executePendingBindings();
assertEquals("foo2", textView.getText().toString());
assertEquals(originalElevation, textView.getElevation());
} finally {
DataBinderTrojan.setBuildSdkInt(Build.VERSION.SDK_INT);
}
}
@UiThreadTest
public void testGeneric() {
initBinder();
ArrayList<View> views = new ArrayList<>();
mBinder.setChildren(views);
mBinder.executePendingBindings();
assertEquals(1, views.size());
assertSame(mBinder.textView, views.get(0));
}
@UiThreadTest
public void testGenericOlderApi() {
initBinder();
DataBinderTrojan.setBuildSdkInt(1);
try {
ArrayList<View> views = new ArrayList<>();
mBinder.setChildren(views);
mBinder.executePendingBindings();
// we should not call the api on older platforms.
assertEquals(0, views.size());
} finally {
DataBinderTrojan.setBuildSdkInt(Build.VERSION.SDK_INT);
}
}
}