Package hivemind.test.rules

Source Code of hivemind.test.rules.TestEnumerationTranslator

//  Copyright 2004 The Apache Software Foundation
//
// 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 hivemind.test.rules;

import hivemind.test.FrameworkTestCase;

import org.apache.hivemind.ApplicationRuntimeException;
import org.apache.hivemind.Element;
import org.apache.hivemind.Location;
import org.apache.hivemind.impl.DefaultClassResolver;
import org.apache.hivemind.impl.ElementImpl;
import org.apache.hivemind.impl.LocationImpl;
import org.apache.hivemind.internal.Module;
import org.apache.hivemind.schema.rules.EnumerationTranslator;
import org.easymock.MockControl;

/**
* Tests for {@link org.apache.hivemind.schema.rules.EnumerationTranslator}.
*
* @author Howard Lewis Ship
*/
public class TestEnumerationTranslator extends FrameworkTestCase
{

    private Module getModule()
    {
        MockControl c = newControl(Module.class);
        Module result = (Module) c.getMock();

        result.getClassResolver();
        c.setReturnValue(new DefaultClassResolver());

        return result;
    }

    private Element forgeElement()
    {
        ElementImpl e = new ElementImpl();
        Location l = new LocationImpl(getResource("TestEnumerationTranslator.class"), 50);
        e.setLocation(l);

        return e;
    }

    public void testNull()
    {
        Module m = (Module) newMock(Module.class);

        replayControls();

        EnumerationTranslator t =
            new EnumerationTranslator("java.lang.Boolean,true=TRUE,false=FALSE");

        assertEquals(null, t.translate(m, null, null, null));

        verifyControls();
    }

    public void testMatch()
    {
        Module m = getModule();

        replayControls();

        EnumerationTranslator t =
            new EnumerationTranslator("java.lang.Boolean,true=TRUE,false=FALSE");

        assertEquals(Boolean.TRUE, t.translate(m, null, "true", null));
        assertEquals(Boolean.FALSE, t.translate(m, null, "false", null));

        verifyControls();
    }

    public void testBadClass()
    {
        Module m = getModule();

        replayControls();

        EnumerationTranslator t =
            new EnumerationTranslator("lava.jang.Boolean,true=TRUE,false=FALSE");

        try
        {
            t.translate(m, null, "true", null);

            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertExceptionSubstring(ex, "Could not load class lava.jang.Boolean");
        }

        verifyControls();
    }

    public void testUnrecognizedValue() throws Exception
    {
        Module m = getModule();

        replayControls();

        EnumerationTranslator t =
            new EnumerationTranslator("java.lang.Boolean,true=TRUE,false=FALSE");

        try
        {

            t.translate(m, null, "fred", null);
            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertExceptionSubstring(ex, "'fred' is not a recognized enumerated value.");
        }

        verifyControls();
    }

    public void testBadField() throws Exception
    {
        Module m = getModule();

        replayControls();

        EnumerationTranslator t =
            new EnumerationTranslator("java.lang.Boolean,true=HONEST_TO_GOD_TRUE,false=FALSE");

        try
        {
            t.translate(m, null, "true", null);
            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertExceptionSubstring(
                ex,
                "Unable to obtain value for static field java.lang.Boolean.HONEST_TO_GOD_TRUE");
        }

        verifyControls();
    }

}
TOP

Related Classes of hivemind.test.rules.TestEnumerationTranslator

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.