Package org.apache.tapestry5.ioc.internal.services

Source Code of org.apache.tapestry5.ioc.internal.services.LoggingDecoratorImplTest$AdderService

// Copyright 2006, 2007, 2008, 2009 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 org.apache.tapestry5.ioc.internal.services;

import org.apache.tapestry5.ioc.internal.IOCInternalTestCase;
import org.apache.tapestry5.ioc.services.AspectDecorator;
import org.apache.tapestry5.ioc.services.LoggingDecorator;
import org.slf4j.Logger;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import org.xml.sax.SAXParseException;

/**
* Use the LoggingDecorator in a number of ways to verify its behavior. In some ways we are testing the code dynamically
* generated by the LoggingDecorator as much as we are testing the decorator itself -- one proves the other.
* <p/>
* And now this test is used to integration test {@link org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl}
* as well.
*/
public class LoggingDecoratorImplTest extends IOCInternalTestCase
{
    private AspectDecorator aspectDecorator;

    @BeforeClass
    public void setup()
    {
        aspectDecorator = getService(AspectDecorator.class);
    }

    public interface UpcaseService
    {
        String upcase(String input);
    }

    public interface AdderService
    {
        long add(long operand1, long operand2);
    }

    public interface ToStringService
    {
        String toString();
    }

    public interface ExceptionService
    {
        void parse() throws SAXParseException;
    }

    @Test
    public void void_method()
    {
        Logger logger = mockLogger();
        Runnable delegate = mockRunnable();

        train_isDebugEnabled(logger, true);
        logger.debug("[ENTER] run()");

        delegate.run();

        logger.debug("[ EXIT] run");

        replay();

        LoggingDecorator ld = newLoggingDecorator();
        Runnable interceptor = ld.build(Runnable.class, delegate, "foo.Bar", logger);

        interceptor.run();

        assertEquals(
                interceptor.toString(),
                "<Logging interceptor for foo.Bar(java.lang.Runnable)>");

        verify();
    }

    private LoggingDecoratorImpl newLoggingDecorator()
    {
        return new LoggingDecoratorImpl(aspectDecorator, new LoggingAdvisorImpl(new ExceptionTrackerImpl()));
    }

    @Test
    public void method_throws_runtime_exception()
    {
        Throwable t = new RuntimeException("From delegate.");
        Logger logger = mockLogger();
        Runnable delegate = mockRunnable();

        train_isDebugEnabled(logger, true);
        logger.debug("[ENTER] run()");

        delegate.run();
        setThrowable(t);

        logger.debug("[ FAIL] run -- " + t.getClass().getName(), t);

        replay();

        LoggingDecorator ld = newLoggingDecorator();
        Runnable interceptor = ld.build(Runnable.class, delegate, "foo.Bar", logger);

        try
        {
            interceptor.run();
            unreachable();
        }
        catch (RuntimeException ex)
        {
            Assert.assertSame(ex, t);
        }

        verify();
    }

    @Test
    public void method_throws_checked_exception() throws Exception
    {
        Throwable t = new SAXParseException("From delegate.", null);
        Logger logger = mockLogger();
        ExceptionService delegate = newMock(ExceptionService.class);

        train_isDebugEnabled(logger, true);
        logger.debug("[ENTER] parse()");

        delegate.parse();
        setThrowable(t);

        logger.debug("[ FAIL] parse -- " + t.getClass().getName(), t);

        replay();

        LoggingDecorator ld = newLoggingDecorator();
        ExceptionService interceptor = ld
                .build(ExceptionService.class, delegate, "foo.Bar", logger);

        try
        {
            interceptor.parse();
            unreachable();
        }
        catch (SAXParseException ex)
        {
            Assert.assertSame(ex, t);
        }

        verify();
    }

    @Test
    public void object_parameter_and_return_type()
    {
        Logger logger = mockLogger();
        UpcaseService delegate = new UpcaseService()
        {
            public String upcase(String input)
            {
                return input.toUpperCase();
            }
        };

        train_isDebugEnabled(logger, true);
        logger.debug("[ENTER] upcase(\"barney\")");

        logger.debug("[ EXIT] upcase [\"BARNEY\"]");

        replay();

        LoggingDecorator ld = newLoggingDecorator();
        UpcaseService interceptor = ld.build(UpcaseService.class, delegate, "foo.Bar", logger);

        assertEquals(interceptor.upcase("barney"), "BARNEY");

        verify();
    }

    @Test
    public void primitive_parameter_and_return_type()
    {
        Logger logger = mockLogger();
        AdderService delegate = new AdderService()
        {
            public long add(long operand1, long operand2)
            {
                return operand1 + operand2;
            }
        };

        train_isDebugEnabled(logger, true);
        logger.debug("[ENTER] add(6, 13)");

        logger.debug("[ EXIT] add [19]");

        replay();

        LoggingDecorator ld = newLoggingDecorator();
        AdderService interceptor = ld.build(AdderService.class, delegate, "foo.Bar", logger);

        assertEquals(interceptor.add(6, 13), 19);

        verify();
    }

    @Test
    public void to_string_method_in_service_interface_is_delegated()
    {
        Logger logger = mockLogger();
        ToStringService delegate = new ToStringService()
        {
            @Override
            public String toString()
            {
                return "FROM DELEGATE";
            }
        };

        train_isDebugEnabled(logger, true);
        logger.debug("[ENTER] toString()");

        logger.debug("[ EXIT] toString [\"FROM DELEGATE\"]");

        replay();

        LoggingDecorator ld = newLoggingDecorator();
        ToStringService interceptor = ld.build(ToStringService.class, delegate, "foo.Bar", logger);

        assertEquals(interceptor.toString(), "FROM DELEGATE");

        verify();
    }
}
TOP

Related Classes of org.apache.tapestry5.ioc.internal.services.LoggingDecoratorImplTest$AdderService

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.