Search in sources :

Example 1 with EventData

use of com.microsoft.applicationinsights.smoketest.schemav2.EventData in project ApplicationInsights-Java by microsoft.

the class CoreAndFilterTests method testTrackEvent.

@Test
@TargetUri("/trackEvent")
public void testTrackEvent() throws Exception {
    List<Envelope> rdList = mockedIngestion.waitForItems("RequestData", 1);
    Envelope rdEnvelope = rdList.get(0);
    String operationId = rdEnvelope.getTags().get("ai.operation.id");
    List<Envelope> edList = mockedIngestion.waitForItemsInOperation("EventData", 2, operationId);
    Envelope edEnvelope1 = edList.get(0);
    Envelope edEnvelope2 = edList.get(1);
    RequestData rd = (RequestData) ((Data<?>) rdEnvelope.getData()).getBaseData();
    List<EventData> events = mockedIngestion.getTelemetryDataByTypeInRequest("EventData");
    events.sort(Comparator.comparing(EventData::getName));
    EventData ed1 = events.get(0);
    EventData ed2 = events.get(1);
    assertEquals("EventDataPropertyTest", ed1.getName());
    assertEquals("value", ed1.getProperties().get("key"));
    assertEquals((Double) 1.0, ed1.getMeasurements().get("key"));
    assertEquals("EventDataTest", ed2.getName());
    assertParentChild(rd, rdEnvelope, edEnvelope1, "GET /CoreAndFilter/trackEvent");
    assertParentChild(rd, rdEnvelope, edEnvelope2, "GET /CoreAndFilter/trackEvent");
}
Also used : RequestData(com.microsoft.applicationinsights.smoketest.schemav2.RequestData) Envelope(com.microsoft.applicationinsights.smoketest.schemav2.Envelope) EventData(com.microsoft.applicationinsights.smoketest.schemav2.EventData) Test(org.junit.Test)

Example 2 with EventData

use of com.microsoft.applicationinsights.smoketest.schemav2.EventData in project ApplicationInsights-Java by microsoft.

the class SpringBootControllerSpansEnabledTest method trackEvent.

@Test
@TargetUri("/basic/trackEvent")
public void trackEvent() throws Exception {
    List<Envelope> rdList = mockedIngestion.waitForItems("RequestData", 1);
    Envelope rdEnvelope = rdList.get(0);
    String operationId = rdEnvelope.getTags().get("ai.operation.id");
    mockedIngestion.waitForItemsInOperation("EventData", 2, operationId);
    // TODO get event data envelope and verify value
    List<EventData> data = mockedIngestion.getTelemetryDataByTypeInRequest("EventData");
    assertThat(data, hasItem(new TypeSafeMatcher<EventData>() {

        final String name = "EventDataTest";

        final Matcher<String> nameMatcher = Matchers.equalTo(name);

        @Override
        protected boolean matchesSafely(EventData item) {
            return nameMatcher.matches(item.getName());
        }

        @Override
        public void describeTo(Description description) {
            description.appendDescriptionOf(nameMatcher);
        }
    }));
    assertThat(data, hasItem(new TypeSafeMatcher<EventData>() {

        final String expectedKey = "key";

        final String expectedName = "EventDataPropertyTest";

        final String expectedPropertyValue = "value";

        final Double expectedMetricValue = 1d;

        final Matcher<Map<? extends String, ? extends Double>> metricMatcher = Matchers.hasEntry(expectedKey, expectedMetricValue);

        final Matcher<Map<? extends String, ? extends String>> propertyMatcher = Matchers.hasEntry(expectedKey, expectedPropertyValue);

        final Matcher<String> nameMatcher = Matchers.equalTo(expectedName);

        @Override
        public void describeTo(Description description) {
            description.appendDescriptionOf(nameMatcher);
            description.appendDescriptionOf(propertyMatcher);
            description.appendDescriptionOf(metricMatcher);
        }

        @Override
        protected boolean matchesSafely(EventData item) {
            return nameMatcher.matches(item.getName()) && propertyMatcher.matches(item.getProperties()) && metricMatcher.matches(item.getMeasurements());
        }
    }));
}
Also used : TypeSafeMatcher(org.hamcrest.TypeSafeMatcher) Description(org.hamcrest.Description) TypeSafeMatcher(org.hamcrest.TypeSafeMatcher) Matcher(org.hamcrest.Matcher) Envelope(com.microsoft.applicationinsights.smoketest.schemav2.Envelope) EventData(com.microsoft.applicationinsights.smoketest.schemav2.EventData) Test(org.junit.Test)

Example 3 with EventData

use of com.microsoft.applicationinsights.smoketest.schemav2.EventData in project ApplicationInsights-Java by microsoft.

the class SpringBootControllerSpansEnabledTest method testAsyncDependencyCall.

@Test
@TargetUri("/asyncDependencyCall")
public void testAsyncDependencyCall() throws Exception {
    List<Envelope> rdList = mockedIngestion.waitForItems("RequestData", 1);
    Envelope rdEnvelope = rdList.get(0);
    String operationId = rdEnvelope.getTags().get("ai.operation.id");
    List<Envelope> rddList = mockedIngestion.waitForItemsInOperation("RemoteDependencyData", 3, operationId);
    assertEquals(0, mockedIngestion.getCountForType("EventData"));
    Envelope rddEnvelope1 = rddList.get(0);
    Envelope rddEnvelope2 = rddList.get(1);
    Envelope rddEnvelope3 = rddList.get(2);
    RequestData rd = (RequestData) ((Data<?>) rdEnvelope.getData()).getBaseData();
    RemoteDependencyData rdd1 = (RemoteDependencyData) ((Data<?>) rddEnvelope1.getData()).getBaseData();
    RemoteDependencyData rdd2 = (RemoteDependencyData) ((Data<?>) rddEnvelope2.getData()).getBaseData();
    RemoteDependencyData rdd3 = (RemoteDependencyData) ((Data<?>) rddEnvelope3.getData()).getBaseData();
    assertEquals("GET /SpringBootTest/asyncDependencyCall", rd.getName());
    assertEquals("200", rd.getResponseCode());
    assertTrue(rd.getProperties().isEmpty());
    assertTrue(rd.getSuccess());
    assertEquals("TestController.asyncDependencyCall", rdd1.getName());
    assertNull(rdd1.getData());
    assertEquals("InProc", rdd1.getType());
    assertNull(rdd1.getTarget());
    assertTrue(rdd1.getProperties().isEmpty());
    assertTrue(rdd1.getSuccess());
    assertEquals("GET /", rdd2.getName());
    assertEquals("https://www.bing.com", rdd2.getData());
    assertEquals("www.bing.com", rdd2.getTarget());
    assertTrue(rdd2.getProperties().isEmpty());
    assertTrue(rdd2.getSuccess());
    // TODO (trask): why is spring-webmvc instrumentation capturing this twice?
    assertEquals("TestController.asyncDependencyCall", rdd3.getName());
    assertTrue(rdd3.getProperties().isEmpty());
    assertTrue(rdd3.getSuccess());
    assertParentChild(rd, rdEnvelope, rddEnvelope1, "GET /SpringBootTest/asyncDependencyCall");
    assertParentChild(rdd1, rddEnvelope1, rddEnvelope2, "GET /SpringBootTest/asyncDependencyCall");
    try {
        assertParentChild(rdd1, rddEnvelope1, rddEnvelope3, "GET /SpringBootTest/asyncDependencyCall");
    } catch (AssertionError e) {
        // on wildfly the duplicate controller spans is nested under the request span for some reason
        assertParentChild(rd, rdEnvelope, rddEnvelope3, "GET /SpringBootTest/asyncDependencyCall");
    }
}
Also used : RequestData(com.microsoft.applicationinsights.smoketest.schemav2.RequestData) RemoteDependencyData(com.microsoft.applicationinsights.smoketest.schemav2.RemoteDependencyData) Envelope(com.microsoft.applicationinsights.smoketest.schemav2.Envelope) Test(org.junit.Test)

Example 4 with EventData

use of com.microsoft.applicationinsights.smoketest.schemav2.EventData in project ApplicationInsights-Java by microsoft.

the class SpringBootTest method trackEvent.

@Test
@TargetUri("/basic/trackEvent")
public void trackEvent() throws Exception {
    List<Envelope> rdList = mockedIngestion.waitForItems("RequestData", 1);
    Envelope rdEnvelope = rdList.get(0);
    String operationId = rdEnvelope.getTags().get("ai.operation.id");
    mockedIngestion.waitForItemsInOperation("EventData", 2, operationId);
    // TODO get event data envelope and verify value
    List<EventData> data = mockedIngestion.getTelemetryDataByTypeInRequest("EventData");
    assertThat(data, hasItem(new TypeSafeMatcher<EventData>() {

        final String name = "EventDataTest";

        final Matcher<String> nameMatcher = Matchers.equalTo(name);

        @Override
        protected boolean matchesSafely(EventData item) {
            return nameMatcher.matches(item.getName());
        }

        @Override
        public void describeTo(Description description) {
            description.appendDescriptionOf(nameMatcher);
        }
    }));
    assertThat(data, hasItem(new TypeSafeMatcher<EventData>() {

        final String expectedKey = "key";

        final String expectedName = "EventDataPropertyTest";

        final String expectedPropertyValue = "value";

        final Double expectedMetricValue = 1d;

        final Matcher<Map<? extends String, ? extends Double>> metricMatcher = Matchers.hasEntry(expectedKey, expectedMetricValue);

        final Matcher<Map<? extends String, ? extends String>> propertyMatcher = Matchers.hasEntry(expectedKey, expectedPropertyValue);

        final Matcher<String> nameMatcher = Matchers.equalTo(expectedName);

        @Override
        public void describeTo(Description description) {
            description.appendDescriptionOf(nameMatcher);
            description.appendDescriptionOf(propertyMatcher);
            description.appendDescriptionOf(metricMatcher);
        }

        @Override
        protected boolean matchesSafely(EventData item) {
            return nameMatcher.matches(item.getName()) && propertyMatcher.matches(item.getProperties()) && metricMatcher.matches(item.getMeasurements());
        }
    }));
}
Also used : TypeSafeMatcher(org.hamcrest.TypeSafeMatcher) Description(org.hamcrest.Description) TypeSafeMatcher(org.hamcrest.TypeSafeMatcher) Matcher(org.hamcrest.Matcher) Envelope(com.microsoft.applicationinsights.smoketest.schemav2.Envelope) EventData(com.microsoft.applicationinsights.smoketest.schemav2.EventData) Test(org.junit.Test)

Example 5 with EventData

use of com.microsoft.applicationinsights.smoketest.schemav2.EventData in project ApplicationInsights-Java by microsoft.

the class SpringBootTest method testResultCodeWhenRestControllerThrows.

@Test
@TargetUri("/throwsException")
public void testResultCodeWhenRestControllerThrows() throws Exception {
    List<Envelope> rdList = mockedIngestion.waitForItems("RequestData", 1);
    Envelope rdEnvelope = rdList.get(0);
    String operationId = rdEnvelope.getTags().get("ai.operation.id");
    List<Envelope> edList = mockedIngestion.waitForItems(new Predicate<Envelope>() {

        @Override
        public boolean test(Envelope input) {
            if (!"ExceptionData".equals(input.getData().getBaseType())) {
                return false;
            }
            if (!operationId.equals(input.getTags().get("ai.operation.id"))) {
                return false;
            }
            // lastly, filter out ExceptionData captured from tomcat logger
            ExceptionData data = (ExceptionData) ((Data<?>) input.getData()).getBaseData();
            return !data.getProperties().containsKey("LoggerName");
        }
    }, 1, 10, TimeUnit.SECONDS);
    assertEquals(0, mockedIngestion.getCountForType("EventData"));
    Envelope edEnvelope1 = edList.get(0);
    RequestData rd = getTelemetryDataForType(0, "RequestData");
    assertEquals("GET /SpringBootTest/throwsException", rd.getName());
    assertEquals("500", rd.getResponseCode());
    assertTrue(rd.getProperties().isEmpty());
    assertFalse(rd.getSuccess());
    assertParentChild(rd, rdEnvelope, edEnvelope1, "GET /SpringBootTest/throwsException");
}
Also used : RequestData(com.microsoft.applicationinsights.smoketest.schemav2.RequestData) ExceptionData(com.microsoft.applicationinsights.smoketest.schemav2.ExceptionData) RemoteDependencyData(com.microsoft.applicationinsights.smoketest.schemav2.RemoteDependencyData) RequestData(com.microsoft.applicationinsights.smoketest.schemav2.RequestData) EventData(com.microsoft.applicationinsights.smoketest.schemav2.EventData) ExceptionData(com.microsoft.applicationinsights.smoketest.schemav2.ExceptionData) Data(com.microsoft.applicationinsights.smoketest.schemav2.Data) Envelope(com.microsoft.applicationinsights.smoketest.schemav2.Envelope) Test(org.junit.Test)

Aggregations

Envelope (com.microsoft.applicationinsights.smoketest.schemav2.Envelope)25 Test (org.junit.Test)24 RequestData (com.microsoft.applicationinsights.smoketest.schemav2.RequestData)22 RemoteDependencyData (com.microsoft.applicationinsights.smoketest.schemav2.RemoteDependencyData)14 ExceptionData (com.microsoft.applicationinsights.smoketest.schemav2.ExceptionData)7 EventData (com.microsoft.applicationinsights.smoketest.schemav2.EventData)5 Data (com.microsoft.applicationinsights.smoketest.schemav2.Data)3 RequestDataMatchers.hasDuration (com.microsoft.applicationinsights.smoketest.matchers.RequestDataMatchers.hasDuration)2 ExceptionDetails (com.microsoft.applicationinsights.smoketest.schemav2.ExceptionDetails)2 PageViewData (com.microsoft.applicationinsights.smoketest.schemav2.PageViewData)2 Duration (com.microsoft.applicationinsights.smoketest.telemetry.Duration)2 Description (org.hamcrest.Description)2 Matcher (org.hamcrest.Matcher)2 TypeSafeMatcher (org.hamcrest.TypeSafeMatcher)2 AiSmokeTest (com.microsoft.applicationinsights.smoketest.AiSmokeTest)1 TargetUri (com.microsoft.applicationinsights.smoketest.TargetUri)1