/* * 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.processors.aws.cloudwatch; import org.apache.nifi.processors.aws.AbstractAWSCredentialsProviderProcessor; import org.apache.nifi.processors.aws.credentials.provider.service.AWSCredentialsProviderControllerService; import org.apache.nifi.processors.aws.sns.PutSNS; import org.apache.nifi.util.TestRunner; import org.apache.nifi.util.TestRunners; import org.junit.Test; import java.io.IOException; /** * Provides integration level testing with actual AWS Cloudwatcch resources for {@link PutCloudWatchMetric} and requires additional configuration and resources to work. */ public class ITPutCloudWatchMetric { private final String CREDENTIALS_FILE = System.getProperty("user.home") + "/aws-credentials.properties"; @Test public void testPublish() throws IOException { final TestRunner runner = TestRunners.newTestRunner(new PutCloudWatchMetric()); runner.setProperty(PutCloudWatchMetric.NAMESPACE, "Test"); runner.setProperty(PutCloudWatchMetric.METRIC_NAME, "Test"); runner.setProperty(PutCloudWatchMetric.VALUE, "1.0"); runner.setProperty(PutCloudWatchMetric.CREDENTIALS_FILE, CREDENTIALS_FILE); runner.enqueue(new byte[] {}); runner.run(); runner.assertAllFlowFilesTransferred(PutCloudWatchMetric.REL_SUCCESS, 1); } @Test public void testPublishWithCredentialsProviderService() throws Throwable { final TestRunner runner = TestRunners.newTestRunner(new PutCloudWatchMetric()); runner.setValidateExpressionUsage(false); final AWSCredentialsProviderControllerService serviceImpl = new AWSCredentialsProviderControllerService(); runner.addControllerService("awsCredentialsProvider", serviceImpl); runner.setProperty(serviceImpl, AbstractAWSCredentialsProviderProcessor.CREDENTIALS_FILE, System.getProperty("user.home") + "/aws-credentials.properties"); runner.enableControllerService(serviceImpl); runner.assertValid(serviceImpl); runner.setProperty(PutCloudWatchMetric.NAMESPACE, "Test"); runner.setProperty(PutCloudWatchMetric.METRIC_NAME, "Test"); runner.setProperty(PutCloudWatchMetric.VALUE, "1.0"); runner.setProperty(PutSNS.AWS_CREDENTIALS_PROVIDER_SERVICE, "awsCredentialsProvider"); runner.enqueue(new byte[] {}); runner.run(); runner.assertAllFlowFilesTransferred(PutCloudWatchMetric.REL_SUCCESS, 1); } }