-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
testChart(String releaseName, TestChartOptions options)
Signed-off-by: Jeromy Cannon <[email protected]>
- Loading branch information
1 parent
2fc11ec
commit de91cd3
Showing
5 changed files
with
205 additions
and
0 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
60 changes: 60 additions & 0 deletions
60
...lm-client/src/main/java/com/hedera/fullstack/helm/client/model/test/TestChartOptions.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,60 @@ | ||
/* | ||
* Copyright (C) 2023 Hedera Hashgraph, LLC | ||
* | ||
* 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.hedera.fullstack.helm.client.model.test; | ||
|
||
import com.hedera.fullstack.helm.client.execution.HelmExecutionBuilder; | ||
import com.hedera.fullstack.helm.client.model.Options; | ||
|
||
/** | ||
* Represents the options to use when testing a chart. | ||
* | ||
* @param filter specify tests by attribute (currently "name") using attribute=value syntax or '!attribute=value' to | ||
* exclude a test (can specify multiple or separate values with commas: name=test1,name=test2) | ||
* @param timeout Time to wait for any individual Kubernetes operation (like Jobs for hooks) (default 5m0s). | ||
*/ | ||
public record TestChartOptions(String filter, String timeout) implements Options { | ||
/** | ||
* Returns an instance of the TestChartOptionsBuilder. | ||
* | ||
* @return the TestChartOptionsBuilder. | ||
*/ | ||
public static TestChartOptionsBuilder builder() { | ||
return TestChartOptionsBuilder.builder(); | ||
} | ||
|
||
/** | ||
* Returns an instance of the default TestChartOptions. | ||
* | ||
* @return the default TestChartOptions. | ||
*/ | ||
public static TestChartOptions defaults() { | ||
return builder().build(); | ||
} | ||
|
||
@Override | ||
public void apply(final HelmExecutionBuilder builder) { | ||
builder.argument("output", "json"); | ||
|
||
if (filter() != null) { | ||
builder.argument("filter", filter()); | ||
} | ||
|
||
if (timeout() != null) { | ||
builder.argument("timeout", timeout()); | ||
} | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
...nt/src/main/java/com/hedera/fullstack/helm/client/model/test/TestChartOptionsBuilder.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,68 @@ | ||
/* | ||
* Copyright (C) 2023 Hedera Hashgraph, LLC | ||
* | ||
* 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.hedera.fullstack.helm.client.model.test; | ||
|
||
/** | ||
* The builder for the {@link TestChartOptions}. | ||
*/ | ||
public class TestChartOptionsBuilder { | ||
private String filter; | ||
private String timeout; | ||
|
||
/** | ||
* Returns an instance of the TestChartOptionsBuilder. | ||
* | ||
* @return the TestChartOptionsBuilder. | ||
*/ | ||
public static TestChartOptionsBuilder builder() { | ||
return new TestChartOptionsBuilder(); | ||
} | ||
|
||
/** | ||
* Specify tests by attribute (currently "name") using attribute=value syntax or '!attribute=value' to exclude a | ||
* test (can specify multiple or separate values with commas: name=test1,name=test2) | ||
* | ||
* @param filter Specify tests by attribute (currently "name") using attribute=value syntax or '!attribute=value' to | ||
* exclude a test (can specify multiple or separate values with commas: name=test1,name=test2) | ||
* @return the current TestChartOptionsBuilder. | ||
*/ | ||
public TestChartOptionsBuilder filter(String filter) { | ||
this.filter = filter; | ||
return this; | ||
} | ||
|
||
/** | ||
* Time to wait for any individual Kubernetes operation (like Jobs for hooks) (default 5m0s). | ||
* | ||
* @param timeout Time to wait for any individual Kubernetes operation (like Jobs for hooks) (default 5m0s). | ||
* <p> | ||
* return the current TestChartOptionsBuilder. | ||
*/ | ||
public TestChartOptionsBuilder timeout(String timeout) { | ||
this.timeout = timeout; | ||
return this; | ||
} | ||
|
||
/** | ||
* builds the {@link TestChartOptions} instance. | ||
* | ||
* @return the {@link TestChartOptions} instance. | ||
*/ | ||
public TestChartOptions build() { | ||
return new TestChartOptions(filter, timeout); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
.../src/main/java/com/hedera/fullstack/helm/client/proxy/request/chart/ChartTestRequest.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,58 @@ | ||
/* | ||
* Copyright (C) 2023 Hedera Hashgraph, LLC | ||
* | ||
* 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.hedera.fullstack.helm.client.proxy.request.chart; | ||
|
||
import com.hedera.fullstack.helm.client.execution.HelmExecutionBuilder; | ||
import com.hedera.fullstack.helm.client.model.test.TestChartOptions; | ||
import com.hedera.fullstack.helm.client.proxy.request.HelmRequest; | ||
import java.util.Objects; | ||
|
||
/** | ||
* A request to uninstall a chart. | ||
* | ||
* @param releaseName the name of the release to uninstall. | ||
*/ | ||
public record ChartTestRequest(String releaseName, TestChartOptions options) implements HelmRequest { | ||
|
||
public ChartTestRequest { | ||
Objects.requireNonNull(releaseName, "releaseName must not be null"); | ||
Objects.requireNonNull(options, "options must not be null"); | ||
|
||
if (releaseName.isBlank()) { | ||
throw new IllegalArgumentException("releaseName must not be null or blank"); | ||
} | ||
} | ||
|
||
/** | ||
* Creates a new install request with the given chart and default options. | ||
* @param releaseName The name of the release. | ||
*/ | ||
public ChartTestRequest(String releaseName) { | ||
this(releaseName, TestChartOptions.defaults()); | ||
} | ||
|
||
@Override | ||
public void apply(HelmExecutionBuilder builder) { | ||
builder.subcommands("test"); | ||
|
||
if (options != null) { | ||
options.apply(builder); | ||
} | ||
|
||
builder.positional(releaseName); | ||
} | ||
} |