blob: 89533447ed4259f28d1006265847e60678f079de [file] [log] [blame]
/*
* Copyright (C) 2014 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 com.android.tools.lint.checks;
import com.android.tools.lint.detector.api.Detector;
public class AppCompatCallDetectorTest extends AbstractCheckTest {
public void testArguments() throws Exception {
assertEquals(""
+ "src/test/pkg/AppCompatTest.java:5: Warning: Should use getSupportActionBar instead of getActionBar name [AppCompatMethod]\n"
+ " getActionBar(); // ERROR\n"
+ " ~~~~~~~~~~~~~~\n"
+ "src/test/pkg/AppCompatTest.java:8: Warning: Should use startSupportActionMode instead of startActionMode name [AppCompatMethod]\n"
+ " startActionMode(null); // ERROR\n"
+ " ~~~~~~~~~~~~~~~~~~~~~\n"
+ "src/test/pkg/AppCompatTest.java:11: Warning: Should use supportRequestWindowFeature instead of requestWindowFeature name [AppCompatMethod]\n"
+ " requestWindowFeature(0); // ERROR\n"
+ " ~~~~~~~~~~~~~~~~~~~~~~~\n"
+ "src/test/pkg/AppCompatTest.java:14: Warning: Should use setSupportProgressBarVisibility instead of setProgressBarVisibility name [AppCompatMethod]\n"
+ " setProgressBarVisibility(true); // ERROR\n"
+ " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"
+ "src/test/pkg/AppCompatTest.java:15: Warning: Should use setSupportProgressBarIndeterminate instead of setProgressBarIndeterminate name [AppCompatMethod]\n"
+ " setProgressBarIndeterminate(true); // ERROR\n"
+ " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"
+ "src/test/pkg/AppCompatTest.java:16: Warning: Should use setSupportProgressBarIndeterminateVisibility instead of setProgressBarIndeterminateVisibility name [AppCompatMethod]\n"
+ " setProgressBarIndeterminateVisibility(true); // ERROR\n"
+ " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"
+ "0 errors, 6 warnings\n",
lintProject(
"bytecode/classes.jar=>libs/appcompat-v7-18.0.0.jar",
"appcompat/AppCompatTest.java.txt=>src/test/pkg/AppCompatTest.java",
"appcompat/IntermediateActivity.java.txt=>src/test/pkg/IntermediateActivity.java",
// Stubs just to be able to do type resolution without needing the full appcompat jar
"appcompat/ActionBarActivity.java.txt=>src/android/support/v7/app/ActionBarActivity.java",
"appcompat/ActionMode.java.txt=>src/android/support/v7/view/ActionMode.java"
));
}
public void testNoWarningsWithoutAppCompat() throws Exception {
assertEquals("No warnings.",
lintProject(
"appcompat/AppCompatTest.java.txt=>src/test/pkg/AppCompatTest.java",
"appcompat/IntermediateActivity.java.txt=>src/test/pkg/IntermediateActivity.java",
"appcompat/ActionBarActivity.java.txt=>src/android/support/v7/app/ActionBarActivity.java",
"appcompat/ActionMode.java.txt=>src/android/support/v7/view/ActionMode.java"
));
}
@Override
protected Detector getDetector() {
return new AppCompatCallDetector();
}
}