Package org.jacorb.test.notification

Source Code of org.jacorb.test.notification.AnyMessageTest

package org.jacorb.test.notification;

/*
*        JacORB - a free Java ORB
*
*   Copyright (C) 1997-2003  Gerald Brose.
*
*   This library is free software; you can redistribute it and/or
*   modify it under the terms of the GNU Library General Public
*   License as published by the Free Software Foundation; either
*   version 2 of the License, or (at your option) any later version.
*
*   This library is distributed in the hope that it will be useful,
*   but WITHOUT ANY WARRANTY; without even the implied warranty of
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
*   Library General Public License for more details.
*
*   You should have received a copy of the GNU Library General Public
*   License along with this library; if not, write to the Free
*   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

import junit.framework.Test;

import org.jacorb.notification.AnyMessage;
import org.jacorb.notification.NoTranslationException;
import org.jacorb.notification.interfaces.Message;
import org.jacorb.test.notification.common.NotificationTestCase;
import org.jacorb.test.notification.common.NotificationTestCaseSetup;
import org.omg.CORBA.Any;
import org.omg.CosNotification.Property;
import org.omg.CosNotification.StructuredEvent;

/**
* @author Alphonse Bendt
* @version $Id: AnyMessageTest.java,v 1.5 2005/12/04 22:19:27 alphonse.bendt Exp $
*/
public class AnyMessageTest extends NotificationTestCase
{
    private AnyMessage objectUnderTest_;

    public AnyMessageTest(String name, NotificationTestCaseSetup setup)
    {
        super(name, setup);
    }

    public void setUpTest() throws Exception
    {
        objectUnderTest_ = new AnyMessage();
    }

    public void testType()
    {
        assertEquals(Message.TYPE_ANY, objectUnderTest_.getType());
    }
   
    public void testToAny()
    {
        Any any = toAny("my precious");
       
        objectUnderTest_.setAny(any);
       
        assertEquals(any, objectUnderTest_.toAny());
    }
   
    public void testToStructuredEvent()
    {
        Any any = toAny("value");
       
        objectUnderTest_.setAny(any);
       
        StructuredEvent event = objectUnderTest_.toStructuredEvent();
       
        assertEquals(any, event.remainder_of_body);
        assertEquals("%ANY", event.header.fixed_header.event_type.type_name);
    }
   
    public void testToTypedEvent() throws Exception
    {
        Property[] _props = new Property[] { new Property("operation", toAny("operationName")),
                new Property("p1", toAny("param1")), new Property("p2", toAny(10)) };

        objectUnderTest_.setAny(toAny(_props));

        Property[] ps = objectUnderTest_.toTypedEvent();

        assertEquals("operation", ps[0].name);
        assertEquals("operationName", ps[0].value.extract_string());
    }

    public void testNoTranslationPossible_1() throws Exception
    {
        Property[] _props = new Property[] { new Property("p1", toAny("param1")),
                new Property("p2", toAny(10)) };

        objectUnderTest_.setAny(toAny(_props));

        try
        {
            objectUnderTest_.toTypedEvent();

            fail();
        } catch (NoTranslationException e)
        {
            // expected
        }
    }

    public void testNoTranslationPossible_2() throws Exception
    {
        objectUnderTest_.setAny(toAny("operation"));

        try
        {
            objectUnderTest_.toTypedEvent();

            fail();
        } catch (NoTranslationException e)
        {
            // expected
        }
    }

    public static Test suite() throws Exception
    {
        return NotificationTestCase.suite(AnyMessageTest.class);
    }
}
TOP

Related Classes of org.jacorb.test.notification.AnyMessageTest

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.