Package org.apache.sirona.aop

Source Code of org.apache.sirona.aop.SironaProxyFactoryTest

/*
* 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.sirona.aop;

import org.apache.sirona.Role;
import org.apache.sirona.counters.Counter;
import org.apache.sirona.repositories.Repository;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.util.concurrent.TimeUnit;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;

public class SironaProxyFactoryTest {
    @Before
    @After
    public void reset() {
        Repository.INSTANCE.clearCounters();
    }

    @Test
    public void test() {
        final Foo foo = SironaProxyFactory.monitor(Foo.class, new FooImpl());
        foo.haveARest(2000);

        final Counter perf = Repository.INSTANCE.getCounter(new Counter.Key(Role.PERFORMANCES, FooImpl.class.getName() + ".haveARest"));
        assertNotNull(perf);
        assertEquals(2000, TimeUnit.NANOSECONDS.toMillis((int) perf.getMax()), 200);

        try {
            foo.throwSthg();
        } catch (final Exception e) {
            // normal
        }

        Counter failures = null;
        for (final Counter c : Repository.INSTANCE.counters()) {
            if (c.getKey().getName().contains("UnsupportedOperationException")) {
                if (failures != null) {
                    fail();
                }
                failures = c;
            }
        }

        assertNotNull(failures);
        assertEquals(1, failures.getHits());
    }

    public static interface Foo {
        void haveARest(long ms);
        void throwSthg();
    }

    public static class FooImpl implements Foo {
        @Override
        public void haveARest(long ms) {
            try {
                Thread.sleep(ms);
            } catch (final InterruptedException e) {
                // no-op
            }
        }

        public void throwSthg() {
            throw new UnsupportedOperationException();
        }
    }
}
TOP

Related Classes of org.apache.sirona.aop.SironaProxyFactoryTest

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.