blob: 06c69229311c96f252966b5b4eea78f3050992dc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.harmony.text.tests.java.text;
import dalvik.annotation.KnownFailure;
import dalvik.annotation.TestTargets;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetNew;
import dalvik.annotation.TestTargetClass;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InvalidObjectException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.text.NumberFormat;
@TestTargetClass(NumberFormat.Field.class)
public class NumberFormatFieldTest extends junit.framework.TestCase {
/**
* @tests java.text.NumberFormat$Field#Field(java.lang.String)
*/
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "Field",
args = {java.lang.String.class}
)
public void test_ConstructorLjava_lang_String() {
// protected constructor
String name = "new number format";
MyNumberFormat field = new MyNumberFormat(name);
assertEquals("field has wrong name", name, field.getName());
field = new MyNumberFormat(null);
assertEquals("field has wrong name", null, field.getName());
}
/**
* @tests java.text.NumberFormat$Field#readResolve()
*/
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "readResolve",
args = {}
)
@KnownFailure("readResolve does not work properly")
public void test_readResolve() {
// test for method java.lang.Object readResolve()
// see serialization stress tests:
// implemented in
// SerializationStressTest4.test_writeObject_NumberFormat_Field()
ObjectOutputStream out = null;
ObjectInputStream in = null;
try {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
out = new ObjectOutputStream(bytes);
NumberFormat.Field nfield, nfield2;
MyNumberFormat field;
nfield = NumberFormat.Field.CURRENCY;
field = new MyNumberFormat(null);
out.writeObject(nfield);
out.writeObject(field);
in = new ObjectInputStream(new ByteArrayInputStream(bytes
.toByteArray()));
try {
nfield2 = (NumberFormat.Field) in.readObject();
assertSame("resolved incorrectly", nfield, nfield2);
} catch (IllegalArgumentException e) {
fail("Unexpected IllegalArgumentException: " + e);
}
try {
in.readObject();
fail("Expected InvalidObjectException for subclass instance with null name");
} catch (InvalidObjectException e) {
}
} catch (IOException e) {
fail("unexpected IOException" + e);
} catch (ClassNotFoundException e) {
fail("unexpected ClassNotFoundException" + e);
} finally {
try {
if (out != null)
out.close();
if (in != null)
in.close();
} catch (IOException e) {
}
}
}
static class MyNumberFormat extends NumberFormat.Field {
static final long serialVersionUID = 1L;
static boolean flag = false;
protected MyNumberFormat(String attr) {
super(attr);
}
protected String getName() {
return super.getName();
}
}
}