Package com.netflix.servo.monitor

Source Code of com.netflix.servo.monitor.MonitorsTest

/**
* Copyright 2013 Netflix, Inc.
*
* 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 com.netflix.servo.monitor;

import com.google.common.collect.Lists;
import com.netflix.servo.annotations.DataSourceType;
import com.netflix.servo.tag.SortedTagList;
import com.netflix.servo.tag.TagList;
import org.testng.annotations.Test;

import java.util.List;

import static org.testng.Assert.assertEquals;

public class MonitorsTest {

    @Test
    public void testAddMonitorsAnon() throws Exception {
        List<Monitor<?>> monitors = Lists.newArrayList();
        ClassWithMonitors obj = new ClassWithMonitors() {
            final Counter c1 = Monitors.newCounter("publicCounter");
            @com.netflix.servo.annotations.Monitor(
                name = "primitiveGauge", type = DataSourceType.GAUGE)
            static final long A1 = 0L;
        };
        TagList tags = SortedTagList.builder().withTag("abc", "def").build();
        Monitors.addMonitors(monitors, null, tags, obj);

        assertEquals(monitors.size(), 10);
        for (Monitor m : monitors) {
            assertEquals(m.getConfig().getTags().getValue("class"), "MonitorsTest",
                    String.format("%s should have class MonitorsTest", m.getConfig().getName()));
        }
    }

    @Test
    public void testAddMonitorFields() throws Exception {
        List<Monitor<?>> monitors = Lists.newArrayList();
        ClassWithMonitors obj = new ClassWithMonitors();

        TagList tags = SortedTagList.builder().withTag("abc", "def").build();

        Monitors.addMonitorFields(monitors, null, tags, obj, obj.getClass());
        Monitors.addMonitorFields(monitors, "foo", null, obj, obj.getClass());
        //System.out.println(monitors);
        assertEquals(monitors.size(), 8);

        Monitor<?> m = monitors.get(0);
        assertEquals(m.getConfig().getTags().getTag("class").getValue(), "ClassWithMonitors");
        assertEquals(m.getConfig().getTags().getTag("abc").getValue(), "def");
    }

    @Test
    public void testAddAnnotatedFields() throws Exception {
        List<Monitor<?>> monitors = Lists.newArrayList();
        ClassWithMonitors obj = new ClassWithMonitors();
        Monitors.addAnnotatedFields(monitors, null, null, obj, obj.getClass());
        Monitors.addAnnotatedFields(monitors, "foo", null, obj, obj.getClass());
        //System.out.println(monitors);
        assertEquals(monitors.size(), 8);
    }

    @Test
    public void testNewObjectMonitor() throws Exception {
        ClassWithMonitors obj = new ClassWithMonitors();
        List<Monitor<?>> monitors = Monitors.newObjectMonitor(obj).getMonitors();
        //System.err.println(monitors);
        assertEquals(monitors.size(), 8);
    }

    @Test(expectedExceptions = IllegalArgumentException.class)
    public void testNewObjectMonitorWithBadAnnotation() throws Exception {
        ClassWithBadAnnotation obj = new ClassWithBadAnnotation();
        Monitors.newObjectMonitor(obj);
    }

    @Test
    public void testNewObjectMonitorWithParentClass() throws Exception {
        ParentHasMonitors obj = new ParentHasMonitors();
        List<Monitor<?>> monitors = Monitors.newObjectMonitor(obj).getMonitors();
        for (Monitor m : monitors) {
            assertEquals(m.getConfig().getTags().getValue("class"), "ParentHasMonitors",
                String.format("%s should have class ParentHasMonitors", m.getConfig().getName()));
        }
        assertEquals(monitors.size(), 10);
    }
}
TOP

Related Classes of com.netflix.servo.monitor.MonitorsTest

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.