kevdoran commented on a change in pull request #3257: NIFI-5435 Prometheus 
/metrics http endpoint for monitoring integration
URL: https://github.com/apache/nifi/pull/3257#discussion_r256556227
 
 

 ##########
 File path: 
nifi-nar-bundles/nifi-prometheus-bundle/nifi-prometheus-reporting-task/src/test/java/org/apache/nifi/reporting/prometheus/TestPrometheusReportingTask.java
 ##########
 @@ -0,0 +1,92 @@
+/*
+ * 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.nifi.reporting.prometheus;
+
+import java.io.IOException;
+import java.net.HttpURLConnection;
+import java.net.URL;
+import java.util.Collections;
+
+import org.apache.nifi.controller.status.ProcessGroupStatus;
+import org.apache.nifi.reporting.InitializationException;
+import org.apache.nifi.state.MockStateManager;
+import org.apache.nifi.util.MockComponentLog;
+import org.apache.nifi.util.MockConfigurationContext;
+import org.apache.nifi.util.MockReportingContext;
+import org.apache.nifi.util.MockReportingInitializationContext;
+import org.apache.nifi.util.MockVariableRegistry;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestPrometheusReportingTask {
+    private static final String TEST_INIT_CONTEXT_ID = "test-init-context-id";
+    private static final String TEST_INIT_CONTEXT_NAME = 
"test-init-context-name";
+    private static final String TEST_TASK_ID = "test-task-id";
+    private MockReportingInitializationContext reportingInitContextStub;
+    private MockReportingContext reportingContextStub;
+    private MockConfigurationContext configurationContextStub; // new
+    private PrometheusReportingTask testedReportingTask;
+    private ProcessGroupStatus rootGroupStatus;
+
+    @Before
+    public void setup() {
+        testedReportingTask = new PrometheusReportingTask();
+        rootGroupStatus = new ProcessGroupStatus();
+        reportingInitContextStub = new 
MockReportingInitializationContext(TEST_INIT_CONTEXT_ID, 
TEST_INIT_CONTEXT_NAME, new MockComponentLog(TEST_TASK_ID, 
testedReportingTask));
+
+        reportingContextStub = new 
MockReportingContext(Collections.emptyMap(), new 
MockStateManager(testedReportingTask), new MockVariableRegistry());
+
+        
reportingContextStub.setProperty(PrometheusReportingTask.INSTANCE_ID.getName(), 
"localhost");
+
+        configurationContextStub = new 
MockConfigurationContext(reportingContextStub.getProperties(), 
reportingContextStub.getControllerServiceLookup());
+
+        rootGroupStatus.setId("1234");
+        rootGroupStatus.setFlowFilesReceived(5);
+        rootGroupStatus.setBytesReceived(10000);
+        rootGroupStatus.setFlowFilesSent(10);
+        rootGroupStatus.setBytesSent(20000);
+        rootGroupStatus.setQueuedCount(100);
+        rootGroupStatus.setQueuedContentSize(1024L);
+        rootGroupStatus.setBytesRead(60000L);
+        rootGroupStatus.setBytesWritten(80000L);
+        rootGroupStatus.setActiveThreadCount(5);
+        rootGroupStatus.setName("root");
+        rootGroupStatus.setFlowFilesTransferred(5);
+        rootGroupStatus.setBytesTransferred(10000);
+        rootGroupStatus.setOutputContentSize(1000L);
+        rootGroupStatus.setInputContentSize(1000L);
+        rootGroupStatus.setOutputCount(100);
+        rootGroupStatus.setInputCount(1000);
+
+    }
+
+    @Test
+    public void testOnTrigger() throws IOException, InterruptedException, 
InitializationException {
+        testedReportingTask.initialize(reportingInitContextStub);
+        testedReportingTask.onScheduled(configurationContextStub);
+        
reportingContextStub.getEventAccess().setProcessGroupStatus(rootGroupStatus);
+        testedReportingTask.onTrigger(reportingContextStub);
+
+        URL url = new URL("http://localhost:9092/metrics";);
+        HttpURLConnection con = (HttpURLConnection) url.openConnection();
+        con.setRequestMethod("GET");
+        int status = con.getResponseCode();
+        Assert.assertEquals(HttpURLConnection.HTTP_OK, status);
 
 Review comment:
   It would be nice to have some assertions on the results as well.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to