com.arakelian.docker.junit.RabbitIntegrationTest.java Source code

Java tutorial

Introduction

Here is the source code for com.arakelian.docker.junit.RabbitIntegrationTest.java

Source

/*
 * 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 com.arakelian.docker.junit;

import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;

import org.junit.ClassRule;
import org.junit.Test;

import com.arakelian.docker.junit.Container.Binding;
import com.arakelian.docker.junit.rule.RabbitDockerRule;
import com.github.rholder.retry.RetryException;
import com.github.rholder.retry.Retryer;
import com.github.rholder.retry.RetryerBuilder;
import com.github.rholder.retry.StopStrategies;
import com.github.rholder.retry.WaitStrategies;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

/**
 * Tests that we can launch RabbitMQ inside Docker container as part of JUnit test.
 *
 * @author Greg Arakelian
 */
public class RabbitIntegrationTest {
    @ClassRule
    public static RabbitDockerRule rabbitmq = new RabbitDockerRule();

    @Test
    public void testConnectsToDocker() throws ExecutionException, RetryException {
        final Retryer<Void> retryer = RetryerBuilder.<Void>newBuilder() //
                .retryIfException() //
                .withStopStrategy(StopStrategies.stopAfterDelay(1, TimeUnit.MINUTES)) //
                .withWaitStrategy(WaitStrategies.fixedWait(5, TimeUnit.SECONDS)) //
                .build();

        // wait for RabbitMQ
        retryer.call(() -> {
            final ConnectionFactory factory = new ConnectionFactory();
            final Container container = rabbitmq.getContainer();
            final Binding binding = container.getPortBinding("5672/tcp");
            factory.setHost(binding.getHost());
            factory.setPort(binding.getPort());
            final Connection connection = factory.newConnection();
            connection.close();
            return null;
        });
    }
}