Package org.apache.harmony.rmi.server

Source Code of org.apache.harmony.rmi.server.ServerCloneExceptionTest

/*
*  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.
*/

/*
*  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.rmi.server;

import java.io.Serializable;
import java.rmi.server.ServerCloneException;

import org.apache.harmony.testframework.serialization.SerializationTest;
import org.apache.harmony.testframework.serialization.SerializationTest.SerializableAssert;

public class ServerCloneExceptionTest extends junit.framework.TestCase {

    private String errorMessage;

    private String causeMessage;

    private Exception cause;

    /**
     * Sets up the fixture, for example, open a network connection. This method
     * is called before a test is executed.
     */
    @Override
    protected void setUp() {
        errorMessage = "Clone Error";
        causeMessage = "Caused Exception";
        cause = new ServerCloneException(causeMessage);
    }

    /**
     * @tests java.rmi.server.ServerCloneException#ServerCloneException(String)
     */
    public void test_Constructor_String() {
        ServerCloneException e = new ServerCloneException(errorMessage);
        assertEquals(errorMessage, e.getMessage());
        assertNull(e.detail);
        try {
            e.initCause(e);
            fail("No expected IllegalArgumentException");
        } catch (IllegalArgumentException exception) {
            // expected
        }
    }

    /**
     * @tests java.rmi.server.ServerCloneException#ServerCloneException(String,Exception)
     */
    public void test_Constructor_String_Exception() {
        ServerCloneException e = new ServerCloneException(errorMessage, cause);
        assertEquals(cause.getMessage(), e.getCause().getMessage());
        assertEquals(cause.getMessage(), e.detail.getMessage());
    }

    // comparator for ServerCloneException objects
    private static final SerializableAssert comparator = new SerializableAssert() {
        public void assertDeserialized(Serializable initial,
                Serializable deserialized) {

            SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial, deserialized);

            ServerCloneException initEx = (ServerCloneException) initial;
            ServerCloneException desrEx = (ServerCloneException) deserialized;

            assertEquals(initEx.getMessage(), desrEx.getMessage());
            assertEquals(initEx.getCause().getMessage(), desrEx.getCause().getMessage());
        }
    };

    /**
     * @tests serialization/deserialization.
     */
    public void testSerializationSelf() throws Exception {

        SerializationTest.verifySelf(new ServerCloneException(errorMessage, cause), comparator);
    }

    /**
     * @tests serialization/deserialization compatibility with RI.
     */
    public void testSerializationCompatibility() throws Exception {

        SerializationTest.verifyGolden(this, new ServerCloneException(errorMessage, cause), comparator);
    }
   
}
TOP

Related Classes of org.apache.harmony.rmi.server.ServerCloneExceptionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.