-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from nmiyake/dockerTypeRefactor
Make default localMachine() choose DockerType based on environment
- Loading branch information
Showing
9 changed files
with
165 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
src/main/java/com/palantir/docker/compose/configuration/EnvironmentValidator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2016 Palantir Technologies, Inc. All rights reserved. | ||
* | ||
* Licensed 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.palantir.docker.compose.configuration; | ||
|
||
import java.util.Map; | ||
|
||
public interface EnvironmentValidator { | ||
|
||
/** | ||
* Validates that the entries in the provided map are valid for the current environment. | ||
* The provided map represents the environment variables that should be used for the | ||
* process, where the keys are the environment variable names and the values are the values. | ||
* If the validator determines the state represented by the map is invalid (either because | ||
* required values are missing or forbidden values are present), the method should throw | ||
* an exception. | ||
*/ | ||
void validateEnvironmentVariables(Map<String, String> dockerEnvironment); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
src/test/java/com/palantir/docker/compose/configuration/DockerTypeShould.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright 2016 Palantir Technologies, Inc. All rights reserved. | ||
* | ||
* Licensed 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.palantir.docker.compose.configuration; | ||
|
||
import static com.palantir.docker.compose.configuration.EnvironmentVariables.DOCKER_CERT_PATH; | ||
import static com.palantir.docker.compose.configuration.EnvironmentVariables.DOCKER_HOST; | ||
import static com.palantir.docker.compose.configuration.EnvironmentVariables.DOCKER_TLS_VERIFY; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.Assert.assertThat; | ||
|
||
import com.google.common.collect.ImmutableMap; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
import org.junit.Test; | ||
|
||
public class DockerTypeShould { | ||
|
||
@Test | ||
public void return_remote_as_first_valid_type_if_environment_is_illegal_for_daemon() { | ||
Map<String, String> variables = ImmutableMap.<String, String>builder() | ||
.put(DOCKER_HOST, "tcp://192.168.99.100:2376") | ||
.put(DOCKER_TLS_VERIFY, "1") | ||
.put(DOCKER_CERT_PATH, "/path/to/certs") | ||
.build(); | ||
assertThat(DockerType.getFirstValidDockerTypeForEnvironment(variables), is(Optional.of(DockerType.REMOTE))); | ||
} | ||
|
||
@Test | ||
public void return_daemon_as_first_valid_type_if_environment_is_illegal_for_remote() { | ||
Map<String, String> variables = ImmutableMap.of(); | ||
assertThat(DockerType.getFirstValidDockerTypeForEnvironment(variables), is(Optional.of(DockerType.DAEMON))); | ||
} | ||
|
||
@Test | ||
public void return_absent_as_first_valid_type_if_environment_is_illegal_for_all() { | ||
Map<String, String> variables = ImmutableMap.<String, String>builder() | ||
.put(DOCKER_TLS_VERIFY, "1") | ||
.build(); | ||
assertThat(DockerType.getFirstValidDockerTypeForEnvironment(variables), is(Optional.empty())); | ||
} | ||
|
||
} |
42 changes: 0 additions & 42 deletions
42
src/test/java/com/palantir/docker/compose/configuration/DockerTypeTest.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.