/apis/docker/src/test/java/org/jclouds/docker/compute/functions/CustomLoginPortFromImageTest.java

http://github.com/jclouds/jclouds · Java · 106 lines · 75 code · 15 blank · 16 comment · 0 complexity · 22235d91b7f6b0a4894004d5c07c76f8 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.docker.compute.functions;
  18. import static org.jclouds.docker.compute.config.LoginPortLookupModule.loginPortLookupBinder;
  19. import static org.testng.Assert.assertEquals;
  20. import org.jclouds.docker.compute.config.LoginPortLookupModule;
  21. import org.jclouds.docker.domain.Config;
  22. import org.jclouds.docker.domain.Container;
  23. import org.testng.annotations.BeforeClass;
  24. import org.testng.annotations.Test;
  25. import com.google.common.base.Optional;
  26. import com.google.common.base.Predicate;
  27. import com.google.common.collect.ImmutableList;
  28. import com.google.common.collect.Iterables;
  29. import com.google.inject.AbstractModule;
  30. import com.google.inject.Guice;
  31. import com.google.inject.Injector;
  32. import com.google.inject.multibindings.MapBinder;
  33. @Test(groups = "unit")
  34. public class CustomLoginPortFromImageTest {
  35. private CustomLoginPortFromImage customLoginPortFromImage;
  36. @BeforeClass
  37. public void setup() {
  38. Injector i = Guice.createInjector(new LoginPortLookupModule(), new AbstractModule() {
  39. @Override
  40. protected void configure() {
  41. MapBinder<String, LoginPortForContainer> imageToFunction = loginPortLookupBinder(binder());
  42. imageToFunction.addBinding(".*alpine-ext.*").toInstance(LoginPortFromEnvVar);
  43. imageToFunction.addBinding(".*ubuntu.*").toInstance(AlwaysPort22);
  44. imageToFunction.addBinding(".*ubuntu:12\\.04.*").toInstance(AlwaysPort8080);
  45. }
  46. });
  47. customLoginPortFromImage = i.getInstance(CustomLoginPortFromImage.class);
  48. }
  49. public void testPortFromEnvironmentVariables() {
  50. Config config = Config.builder().image("alpine-ext:3.2").env(ImmutableList.of("FOO=bar", "SSH_PORT=2345"))
  51. .build();
  52. Container container = Container.builder().id("id").config(config).build();
  53. assertEquals(customLoginPortFromImage.apply(container).get().intValue(), 2345);
  54. }
  55. public void testMostSpecificImageIsPicked() {
  56. Config config = Config.builder().image("ubuntu:12.04").build();
  57. Container container = Container.builder().id("id").config(config).build();
  58. assertEquals(customLoginPortFromImage.apply(container).get().intValue(), 8080);
  59. }
  60. public void testNoImageFoundInMap() {
  61. Config config = Config.builder().image("unexisting").build();
  62. Container container = Container.builder().id("id").config(config).build();
  63. assertEquals(customLoginPortFromImage.apply(container), Optional.absent());
  64. }
  65. private static final LoginPortForContainer LoginPortFromEnvVar = new LoginPortForContainer() {
  66. @Override
  67. public Optional<Integer> apply(Container input) {
  68. Optional<String> portVariable = Iterables.tryFind(input.config().env(), new Predicate<String>() {
  69. @Override
  70. public boolean apply(String input) {
  71. String[] var = input.split("=");
  72. return var[0].equals("SSH_PORT");
  73. }
  74. });
  75. return portVariable.isPresent() ? Optional.of(Integer.valueOf(portVariable.get().split("=")[1])) : Optional
  76. .<Integer> absent();
  77. }
  78. };
  79. private static final LoginPortForContainer AlwaysPort22 = new LoginPortForContainer() {
  80. @Override
  81. public Optional<Integer> apply(Container input) {
  82. return Optional.of(22);
  83. }
  84. };
  85. private static final LoginPortForContainer AlwaysPort8080 = new LoginPortForContainer() {
  86. @Override
  87. public Optional<Integer> apply(Container input) {
  88. return Optional.of(8080);
  89. }
  90. };
  91. }