/** * 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.camel.component.docker.headers; import java.util.Map; import com.github.dockerjava.api.command.LogContainerCmd; import com.github.dockerjava.core.command.LogContainerResultCallback; import org.apache.camel.component.docker.DockerConstants; import org.apache.camel.component.docker.DockerOperation; import org.junit.Test; import org.mockito.Matchers; import org.mockito.Mock; import org.mockito.Mockito; /** * Validates Log Container Request headers are applied properly */ public class LogContainerCmdHeaderTest extends BaseDockerHeaderTest<LogContainerCmd> { @Mock private LogContainerCmd mockObject; @Mock private LogContainerResultCallback callback; @Test public void logContainerHeaderTest() { String containerId = "9c09acd48a25"; boolean stdOut = true; boolean stdErr = true; boolean followStream = true; boolean timestamps = false; boolean tailAll = true; int tail = 5; Map<String, Object> headers = getDefaultParameters(); headers.put(DockerConstants.DOCKER_CONTAINER_ID, containerId); headers.put(DockerConstants.DOCKER_FOLLOW_STREAM, followStream); headers.put(DockerConstants.DOCKER_STD_OUT, stdOut); headers.put(DockerConstants.DOCKER_STD_ERR, stdErr); headers.put(DockerConstants.DOCKER_TIMESTAMPS, timestamps); headers.put(DockerConstants.DOCKER_TAIL, tail); headers.put(DockerConstants.DOCKER_TAIL_ALL, tailAll); template.sendBodyAndHeaders("direct:in", "", headers); Mockito.verify(dockerClient, Mockito.times(1)).logContainerCmd(containerId); Mockito.verify(mockObject, Mockito.times(1)).withFollowStream(Matchers.eq(followStream)); Mockito.verify(mockObject, Mockito.times(1)).withTail(Matchers.eq(tail)); Mockito.verify(mockObject, Mockito.times(1)).withTailAll(); Mockito.verify(mockObject, Mockito.times(1)).withStdErr(Matchers.eq(stdErr)); Mockito.verify(mockObject, Mockito.times(1)).withStdOut(Matchers.eq(stdOut)); Mockito.verify(mockObject, Mockito.times(1)).withTimestamps(Matchers.eq(timestamps)); } @Override protected void setupMocks() { Mockito.when(dockerClient.logContainerCmd(Matchers.anyString())).thenReturn(mockObject); Mockito.when(mockObject.exec(Matchers.anyObject())).thenReturn(callback); try { Mockito.when(callback.awaitCompletion()).thenReturn(callback); } catch (InterruptedException e) { e.printStackTrace(); } } @Override protected DockerOperation getOperation() { return DockerOperation.LOG_CONTAINER; } }