blob: 52856baaaefa1823a1a93b6f44839d5eb06d0c16 [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 com.android.tools.idea.debug;
import com.android.tools.lint.checks.SupportAnnotationDetector;
import com.google.common.collect.ImmutableMap;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.psi.PsiAnnotation;
import org.jetbrains.android.AndroidTestCase;
import org.jetbrains.annotations.NotNull;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class AnnotationsRendererTest extends AndroidTestCase {
public void testColorIntRendering() {
AnnotationsRenderer.Result result =
AnnotationsRenderer.render(null, createFakeAnnotation(SupportAnnotationDetector.COLOR_INT_ANNOTATION), 0x112233);
assertEquals("0x00112233 {a=255 r=17 g=34 b=51}", result.label);
assertNotNull(result.icon);
result = AnnotationsRenderer.render(null, createFakeAnnotation(SupportAnnotationDetector.COLOR_INT_ANNOTATION), 0x55112233);
assertEquals("0x55112233 {a=85 r=17 g=34 b=51}", result.label);
assertNotNull(result.icon);
}
public void testResourceRefRendering() {
ResourceIdResolver resolver = ServiceManager.getService(getProject(), ResourceIdResolver.class);
AnnotationsRenderer.Result result =
AnnotationsRenderer.render(resolver, createFakeAnnotation(SupportAnnotationDetector.RES_SUFFIX), 0x01080074);
assertEquals("0x01080074 {@android:drawable/star_on}", result.label);
assertNull(result.icon);
result =
AnnotationsRenderer.render(resolver, createFakeAnnotation(SupportAnnotationDetector.RES_SUFFIX), 0xf1080074);
assertEquals("0xf1080074 {@Res ?}", result.label);
}
public void testIntDefRendering() {
AndroidResolveHelper.IntDefResolution result = new AndroidResolveHelper.IntDefResolution(false, ImmutableMap.of(
4, "INVISIBLE",
2, "VISIBLE"
));
assertEquals("INVISIBLE", AnnotationsRenderer.renderIntDef(4, result));
result = new AndroidResolveHelper.IntDefResolution(true, ImmutableMap.of(
4, "FOCUS1",
2, "FOCUS2"
));
assertEquals("FOCUS1 | FOCUS2", AnnotationsRenderer.renderIntDef(6, result));
}
@NotNull
private static PsiAnnotation createFakeAnnotation(String fqcn) {
PsiAnnotation annotation = mock(PsiAnnotation.class);
when(annotation.getQualifiedName()).thenReturn(fqcn);
return annotation;
}
}