use of com.navercorp.pinpoint.web.service.AlarmServiceImpl in project pinpoint by naver.
the class AlarmReaderTest method readTest3.
@Test
public void readTest3() {
StepExecution stepExecution = new StepExecution("alarmStep", null);
ExecutionContext executionContext = new ExecutionContext();
stepExecution.setExecutionContext(executionContext);
AlarmServiceImpl alarmService = new AlarmServiceImpl(mock(AlarmDao.class), mock(WebhookSendInfoDao.class)) {
@Override
public List<Rule> selectRuleByApplicationId(String applicationId) {
return new LinkedList<>();
}
};
AlarmReader reader = new AlarmReader(dataCollectorFactory, applicationIndexDao, alarmService);
reader.beforeStep(stepExecution);
assertNull(reader.read());
}
use of com.navercorp.pinpoint.web.service.AlarmServiceImpl in project pinpoint by naver.
the class AlarmReaderTest method beforeClass.
@BeforeClass
public static void beforeClass() {
applicationIndexDao = new ApplicationIndexDao() {
@Override
public List<Application> selectAllApplicationNames() {
List<Application> apps = new LinkedList<>();
for (int i = 0; i < 7; i++) {
apps.add(new Application(APP_NAME + i, ServiceType.STAND_ALONE));
}
return apps;
}
@Override
public List<Application> selectApplicationName(String applicationName) {
List<Application> apps = new LinkedList<>();
apps.add(new Application(APP_NAME, ServiceType.STAND_ALONE));
return apps;
}
@Override
public List<String> selectAgentIds(String applicationName) {
return null;
}
@Override
public void deleteApplicationName(String applicationName) {
}
@Override
public void deleteAgentIds(Map<String, List<String>> applicationAgentIdMap) {
}
@Override
public void deleteAgentId(String applicationName, String agentId) {
}
};
alarmService = new AlarmServiceImpl(mock(AlarmDao.class), mock(WebhookSendInfoDao.class)) {
private final Map<String, Rule> ruleMap;
{
ruleMap = new HashMap<>();
for (int i = 0; i <= 6; i++) {
ruleMap.put(APP_NAME + i, new Rule(APP_NAME + i, SERVICE_TYPE, CheckerCategory.SLOW_COUNT.getName(), 76, "testGroup", false, false, false, ""));
}
}
@Override
public List<Rule> selectRuleByApplicationId(String applicationId) {
List<Rule> rules = new LinkedList<>();
rules.add(ruleMap.get(applicationId));
return rules;
}
};
dataCollectorFactory = mock(DataCollectorFactory.class);
when(dataCollectorFactory.createDataCollector(any(), any(), anyLong())).thenAnswer(new Answer<DataCollector>() {
@Override
public DataCollector answer(InvocationOnMock invocation) throws Throwable {
return new ResponseTimeDataCollector(DataCollectorCategory.RESPONSE_TIME, null, null, 0, 0);
}
});
}
use of com.navercorp.pinpoint.web.service.AlarmServiceImpl in project pinpoint by naver.
the class ReaderTest method beforeClass.
@BeforeClass
public static void beforeClass() {
applicationIndexDao = new ApplicationIndexDao() {
@Override
public List<Application> selectAllApplicationNames() {
List<Application> apps = new LinkedList<Application>();
for (int i = 0; i < 7; i++) {
apps.add(new Application(APP_NAME + i, ServiceType.STAND_ALONE));
}
return apps;
}
@Override
public List<String> selectAgentIds(String applicationName) {
return null;
}
@Override
public void deleteApplicationName(String applicationName) {
}
@Override
public void deleteAgentIds(Map<String, List<String>> applicationAgentIdMap) {
}
@Override
public void deleteAgentId(String applicationName, String agentId) {
}
};
alarmService = new AlarmServiceImpl() {
private Map<String, Rule> ruleMap;
{
ruleMap = new HashMap<String, Rule>();
for (int i = 0; i <= 6; i++) {
ruleMap.put(APP_NAME + i, new Rule(APP_NAME + i, SERVICE_TYPE, CheckerCategory.SLOW_COUNT.getName(), 76, "testGroup", false, false, ""));
}
}
@Override
public List<Rule> selectRuleByApplicationId(String applicationId) {
List<Rule> rules = new LinkedList<Rule>();
rules.add(ruleMap.get(applicationId));
return rules;
}
};
dataCollectorFactory = new DataCollectorFactory() {
@Override
public DataCollector createDataCollector(CheckerCategory checker, Application application, long timeSlotEndTime) {
return new ResponseTimeDataCollector(DataCollectorCategory.RESPONSE_TIME, null, null, 0, 0);
}
};
}
use of com.navercorp.pinpoint.web.service.AlarmServiceImpl in project pinpoint by naver.
the class ReaderTest method readTest3.
@Test
public void readTest3() {
StepExecution stepExecution = new StepExecution("alarmStep", null);
ExecutionContext executionContext = new ExecutionContext();
executionContext.put(AlarmPartitioner.PARTITION_NUMBER, 2);
stepExecution.setExecutionContext(executionContext);
AlarmServiceImpl alarmService = new AlarmServiceImpl() {
@Override
public java.util.List<Rule> selectRuleByApplicationId(String applicationId) {
return new LinkedList<Rule>();
}
};
AlarmReader reader = new AlarmReader(dataCollectorFactory, applicationIndexDao, alarmService);
reader.beforeStep(stepExecution);
assertNull(reader.read());
}
Aggregations