blob: 43b9662a527252323bb075c0cb68cc60be1b389b [file] [log] [blame]
/*
* Copyright (C) 2011 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.renderscriptgraphics.cts;
import java.io.File;
import com.android.cts.stub.R;
import android.os.Environment;
import android.renderscript.Font;
import android.renderscript.Font.Style;
import android.renderscript.RSIllegalArgumentException;
public class FontTest extends RSBaseGraphics {
public void testCreate() {
for (int fontSize = 8; fontSize <= 12; fontSize += 2) {
for (Font.Style style : Font.Style.values()) {
Font F = null;
F = Font.create(mRS, mRes, "sans-serif", style, fontSize);
assertTrue(F != null);
F.setName("sans-serif");
try {
F.setName("sans-serif");
fail("set name twice for a font");
} catch (RSIllegalArgumentException e) {
}
F.destroy();
F = Font.create(mRS, mRes, "serif", style, fontSize);
assertTrue(F != null);
try {
F.setName("");
fail("set empty name for a font");
} catch (RSIllegalArgumentException e) {
}
F.setName("serif");
F.destroy();
F = Font.create(mRS, mRes, "mono", style, fontSize);
assertTrue(F != null);
try {
F.setName(null);
fail("set name as null string reference for a font");
} catch (RSIllegalArgumentException e) {
}
F.setName("mono");
F.destroy();
}
}
}
public void testCreateFromFile() {
String fontFile = "Roboto-Regular.ttf";
String fontPath = Environment.getRootDirectory().getAbsolutePath();
fontPath += "/fonts/" + fontFile;
File fileDesc = new File(fontPath);
assertTrue(Font.createFromFile(mRS, mRes, fontPath, 8) != null);
assertTrue(Font.createFromFile(mRS, mRes, fileDesc, 8) != null);
}
public void testCreateFromAsset() {
assertTrue(Font.createFromAsset(mRS, mRes, "samplefont.ttf", 8) != null);
}
public void testFontStyle() {
assertEquals(Font.Style.NORMAL, Font.Style.valueOf("NORMAL"));
assertEquals(Font.Style.BOLD, Font.Style.valueOf("BOLD"));
assertEquals(Font.Style.ITALIC, Font.Style.valueOf("ITALIC"));
assertEquals(Font.Style.BOLD_ITALIC, Font.Style.valueOf("BOLD_ITALIC"));
// Make sure no new enums are added
assertEquals(4, Font.Style.values().length);
}
public void testCreateFromResource() {
assertTrue(Font.createFromResource(mRS, mRes, R.raw.samplefont, 8) != null);
}
}