Search in sources :

Example 46 with TransactionService

use of com.newrelic.agent.TransactionService in project newrelic-java-agent by newrelic.

the class ErrorServiceTest method unexpectedThrowableInTransaction.

@Test
public void unexpectedThrowableInTransaction() {
    TransactionData transactionData = createTransactionData(200, new Throwable("Surprising error"), false);
    TransactionService txService = ServiceFactory.getTransactionService();
    TransactionStats transactionStats = new TransactionStats();
    txService.transactionFinished(transactionData, transactionStats);
    List<TracedError> tracedErrors = ServiceFactory.getRPMService().getErrorService().getAndClearTracedErrors();
    TracedError tracedError = tracedErrors.get(0);
    Assert.assertEquals("Surprising error", tracedError.getMessage());
    Assert.assertFalse(tracedError.expected);
    Assert.assertTrue(tracedError.incrementsErrorMetric());
}
Also used : TransactionStats(com.newrelic.agent.stats.TransactionStats) TransactionService(com.newrelic.agent.TransactionService) TransactionData(com.newrelic.agent.TransactionData) Test(org.junit.Test)

Example 47 with TransactionService

use of com.newrelic.agent.TransactionService in project newrelic-java-agent by newrelic.

the class ErrorServiceTest method expectedThrowableInTransaction.

@Test
public void expectedThrowableInTransaction() {
    TransactionData transactionData = createTransactionData(200, new Throwable("I am expected"), true);
    TransactionService txService = ServiceFactory.getTransactionService();
    TransactionStats transactionStats = new TransactionStats();
    txService.transactionFinished(transactionData, transactionStats);
    List<TracedError> tracedErrors = ServiceFactory.getRPMService().getErrorService().getAndClearTracedErrors();
    TracedError tracedError = tracedErrors.get(0);
    Assert.assertEquals("I am expected", tracedError.getMessage());
    Assert.assertTrue(tracedError.expected);
    Assert.assertFalse(tracedError.incrementsErrorMetric());
}
Also used : TransactionStats(com.newrelic.agent.stats.TransactionStats) TransactionService(com.newrelic.agent.TransactionService) TransactionData(com.newrelic.agent.TransactionData) Test(org.junit.Test)

Example 48 with TransactionService

use of com.newrelic.agent.TransactionService in project newrelic-java-agent by newrelic.

the class ErrorServiceTest method userParametersEnabledRequestDisabled.

@SuppressWarnings("unchecked")
@Test
public void userParametersEnabledRequestDisabled() throws Exception {
    Map<String, Object> config = createConfig("java.lang.Exception");
    setConfigAttributes(config, true, false);
    EventTestHelper.createServiceManager(config);
    ErrorServiceImpl errorService = (ErrorServiceImpl) ServiceFactory.getRPMService().getErrorService();
    MockRPMService rpmService = (MockRPMService) ServiceFactory.getRPMService();
    rpmService.setIsConnected(true);
    TransactionService txService = ServiceFactory.getTransactionService();
    Throwable error = new ArrayIndexOutOfBoundsException();
    Map<String, String> requestParams = new HashMap<>();
    requestParams.put("key1", "value1");
    Map<String, Object> agentParams = new HashMap<>();
    agentParams.put("key2", 2L);
    Map<String, Object> userParams = new HashMap<>();
    userParams.put("key3", "value3");
    Map<String, Object> errorParams = new HashMap<>();
    errorParams.put("key4", "value4");
    Map<String, Object> intrinsics = new HashMap<>();
    intrinsics.put("key5", "value5");
    intrinsics.put("key6", 7.77);
    intrinsics.put("key7", 18L);
    TransactionData data = createTransactionData(true, 0, error, false, requestParams, userParams, agentParams, errorParams, intrinsics);
    TransactionStats transactionStats = new TransactionStats();
    txService.transactionFinished(data, transactionStats);
    List<TracedError> actualErrors = errorService.getAndClearTracedErrors(APP_NAME, new StatsEngineImpl());
    Assert.assertEquals(1, actualErrors.size());
    JSONArray serializedError = (JSONArray) AgentHelper.serializeJSON(actualErrors.get(0));
    Assert.assertNotNull(serializedError);
    Map<String, Object> params = (Map<String, Object>) serializedError.get(4);
    Assert.assertEquals(4, params.size());
    Assert.assertNotNull(params.get("stack_trace"));
    Assert.assertNotNull(params.get("intrinsics"));
    Assert.assertNotNull(params.get("agentAttributes"));
    Assert.assertNotNull(params.get("userAttributes"));
    Map<String, Object> actual = (Map<String, Object>) params.get("intrinsics");
    Assert.assertEquals(8, actual.size());
    Assert.assertEquals("value5", actual.get("key5"));
    Assert.assertEquals(7.77, (Double) actual.get("key6"), .001);
    Assert.assertEquals(18L, actual.get("key7"));
    Assert.assertEquals(false, actual.get("error.expected"));
    actual = (Map<String, Object>) params.get("agentAttributes");
    Assert.assertEquals(2, actual.size());
    Assert.assertEquals(2L, actual.get("key2"));
    Assert.assertEquals("/dude", actual.get("request.uri"));
    actual = (Map<String, Object>) params.get("userAttributes");
    Assert.assertEquals(2, actual.size());
    Assert.assertEquals("value3", actual.get("key3"));
    Assert.assertEquals("value4", actual.get("key4"));
}
Also used : TransactionService(com.newrelic.agent.TransactionService) StatsEngineImpl(com.newrelic.agent.stats.StatsEngineImpl) HashMap(java.util.HashMap) JSONArray(org.json.simple.JSONArray) TransactionStats(com.newrelic.agent.stats.TransactionStats) TransactionData(com.newrelic.agent.TransactionData) HashMap(java.util.HashMap) Map(java.util.Map) MockRPMService(com.newrelic.agent.MockRPMService) Test(org.junit.Test)

Example 49 with TransactionService

use of com.newrelic.agent.TransactionService in project newrelic-java-agent by newrelic.

the class ErrorServiceTest method userParametersEnabled.

@SuppressWarnings("unchecked")
@Test
public void userParametersEnabled() throws Exception {
    Map<String, Object> config = createConfig("java.lang.Exception");
    setConfigAttributes(config, true, true);
    EventTestHelper.createServiceManager(config);
    ErrorServiceImpl errorService = (ErrorServiceImpl) ServiceFactory.getRPMService().getErrorService();
    MockRPMService rpmService = (MockRPMService) ServiceFactory.getRPMService();
    rpmService.setIsConnected(true);
    TransactionService txService = ServiceFactory.getTransactionService();
    Throwable error = new ArrayIndexOutOfBoundsException();
    Map<String, String> requestParams = new HashMap<>();
    requestParams.put("key1", "value1");
    Map<String, Object> agentParams = new HashMap<>();
    agentParams.put("key2", 2L);
    Map<String, Object> userParams = new HashMap<>();
    userParams.put("key3", "value3");
    Map<String, Object> errorParams = new HashMap<>();
    errorParams.put("key4", "value4");
    Map<String, Object> intrinsics = new HashMap<>();
    intrinsics.put("key5", "value5");
    intrinsics.put("key6", 7.77);
    intrinsics.put("key7", 18L);
    TransactionData data = createTransactionData(true, 0, error, false, requestParams, userParams, agentParams, errorParams, intrinsics);
    TransactionStats transactionStats = new TransactionStats();
    txService.transactionFinished(data, transactionStats);
    List<TracedError> actualErrors = errorService.getAndClearTracedErrors(APP_NAME, new StatsEngineImpl());
    Assert.assertEquals(1, actualErrors.size());
    JSONArray serializedError = (JSONArray) AgentHelper.serializeJSON(actualErrors.get(0));
    Assert.assertNotNull(serializedError);
    Map<String, Object> params = (Map<String, Object>) serializedError.get(4);
    Assert.assertEquals(4, params.size());
    Assert.assertNotNull(params.get("stack_trace"));
    Assert.assertNotNull(params.get("intrinsics"));
    Assert.assertNotNull(params.get("agentAttributes"));
    Assert.assertNotNull(params.get("userAttributes"));
    Map<String, Object> actual = (Map<String, Object>) params.get("intrinsics");
    Assert.assertEquals(8, actual.size());
    Assert.assertEquals("value5", actual.get("key5"));
    Assert.assertEquals(7.77, (Double) actual.get("key6"), .001);
    Assert.assertEquals(18L, actual.get("key7"));
    Assert.assertEquals(false, actual.get("error.expected"));
    actual = (Map<String, Object>) params.get("agentAttributes");
    Assert.assertEquals(3, actual.size());
    Assert.assertEquals("value1", actual.get("request.parameters.key1"));
    Assert.assertEquals(2L, actual.get("key2"));
    Assert.assertEquals("/dude", actual.get("request.uri"));
    actual = (Map<String, Object>) params.get("userAttributes");
    Assert.assertEquals(2, actual.size());
    Assert.assertEquals("value3", actual.get("key3"));
    Assert.assertEquals("value4", actual.get("key4"));
}
Also used : TransactionService(com.newrelic.agent.TransactionService) StatsEngineImpl(com.newrelic.agent.stats.StatsEngineImpl) HashMap(java.util.HashMap) JSONArray(org.json.simple.JSONArray) TransactionStats(com.newrelic.agent.stats.TransactionStats) TransactionData(com.newrelic.agent.TransactionData) HashMap(java.util.HashMap) Map(java.util.Map) MockRPMService(com.newrelic.agent.MockRPMService) Test(org.junit.Test)

Example 50 with TransactionService

use of com.newrelic.agent.TransactionService in project newrelic-java-agent by newrelic.

the class ErrorServiceTest method attributesDisabled.

@SuppressWarnings("unchecked")
@Test
public void attributesDisabled() throws Exception {
    Map<String, Object> config = createConfig("java.lang.Exception");
    setConfigAttributes(config, false, true);
    EventTestHelper.createServiceManager(config);
    ErrorServiceImpl errorService = (ErrorServiceImpl) ServiceFactory.getRPMService().getErrorService();
    MockRPMService rpmService = (MockRPMService) ServiceFactory.getRPMService();
    rpmService.setIsConnected(true);
    TransactionService txService = ServiceFactory.getTransactionService();
    Throwable error = new ArrayIndexOutOfBoundsException();
    Map<String, String> requestParams = new HashMap<>();
    requestParams.put("key1", "value1");
    Map<String, Object> agentParams = new HashMap<>();
    agentParams.put("key2", 2L);
    Map<String, Object> userParams = new HashMap<>();
    userParams.put("key3", "value3");
    Map<String, Object> errorParams = new HashMap<>();
    errorParams.put("key4", "value4");
    Map<String, Object> intrinsics = new HashMap<>();
    TransactionData data = createTransactionData(true, 0, error, false, requestParams, userParams, agentParams, errorParams, intrinsics);
    TransactionStats transactionStats = new TransactionStats();
    txService.transactionFinished(data, transactionStats);
    List<TracedError> actualErrors = errorService.getAndClearTracedErrors(APP_NAME, new StatsEngineImpl());
    Assert.assertEquals(1, actualErrors.size());
    JSONArray serializedError = (JSONArray) AgentHelper.serializeJSON(actualErrors.get(0));
    Assert.assertNotNull(serializedError);
    Map<String, Object> params = (Map<String, Object>) serializedError.get(4);
    Assert.assertEquals(2, params.size());
    Assert.assertNotNull(params.get("stack_trace"));
    Map<String, Object> intrinsicsParam = (Map<String, Object>) params.get("intrinsics");
    Assert.assertEquals(false, intrinsicsParam.get("error.expected"));
}
Also used : TransactionService(com.newrelic.agent.TransactionService) StatsEngineImpl(com.newrelic.agent.stats.StatsEngineImpl) HashMap(java.util.HashMap) JSONArray(org.json.simple.JSONArray) TransactionStats(com.newrelic.agent.stats.TransactionStats) TransactionData(com.newrelic.agent.TransactionData) HashMap(java.util.HashMap) Map(java.util.Map) MockRPMService(com.newrelic.agent.MockRPMService) Test(org.junit.Test)

Aggregations

TransactionService (com.newrelic.agent.TransactionService)66 MockServiceManager (com.newrelic.agent.MockServiceManager)42 TransactionTraceService (com.newrelic.agent.trace.TransactionTraceService)39 ConfigService (com.newrelic.agent.config.ConfigService)38 MockRPMServiceManager (com.newrelic.agent.MockRPMServiceManager)30 ThreadService (com.newrelic.agent.ThreadService)30 HashMap (java.util.HashMap)29 HarvestService (com.newrelic.agent.HarvestService)26 MockRPMService (com.newrelic.agent.MockRPMService)26 Test (org.junit.Test)24 AttributesService (com.newrelic.agent.attributes.AttributesService)23 MockHarvestService (com.newrelic.agent.MockHarvestService)22 MockCoreService (com.newrelic.agent.MockCoreService)19 ErrorServiceImpl (com.newrelic.agent.errors.ErrorServiceImpl)19 AgentConfig (com.newrelic.agent.config.AgentConfig)17 StatsServiceImpl (com.newrelic.agent.stats.StatsServiceImpl)17 SqlTraceService (com.newrelic.agent.sql.SqlTraceService)16 SqlTraceServiceImpl (com.newrelic.agent.sql.SqlTraceServiceImpl)16 StatsService (com.newrelic.agent.stats.StatsService)15 Transaction (com.newrelic.agent.Transaction)13