-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Gitea credentials (#325)
* Gitea credentials add cmd * gitea credentials missing reflection file * gitea credentials unit test
- Loading branch information
1 parent
86cdf4d
commit 315e648
Showing
5 changed files
with
136 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
32 changes: 32 additions & 0 deletions
32
src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGiteaCmd.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 (c) 2021, Seqera Labs. | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
* This Source Code Form is "Incompatible With Secondary Licenses", as | ||
* defined by the Mozilla Public License, v. 2.0. | ||
*/ | ||
|
||
package io.seqera.tower.cli.commands.credentials.add; | ||
|
||
import io.seqera.tower.cli.commands.credentials.providers.CredentialsProvider; | ||
import io.seqera.tower.cli.commands.credentials.providers.GiteaProvider; | ||
import picocli.CommandLine.Command; | ||
import picocli.CommandLine.Mixin; | ||
|
||
@Command( | ||
name = "gitea", | ||
description = "Add new Gitea workspace credentials." | ||
) | ||
public class AddGiteaCmd extends AbstractAddCmd { | ||
|
||
@Mixin | ||
GiteaProvider provider; | ||
|
||
@Override | ||
protected CredentialsProvider getProvider() { | ||
return provider; | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
src/main/java/io/seqera/tower/cli/commands/credentials/providers/GiteaProvider.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,39 @@ | ||
/* | ||
* Copyright (c) 2021, Seqera Labs. | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
* This Source Code Form is "Incompatible With Secondary Licenses", as | ||
* defined by the Mozilla Public License, v. 2.0. | ||
*/ | ||
|
||
package io.seqera.tower.cli.commands.credentials.providers; | ||
|
||
import io.seqera.tower.model.Credentials.ProviderEnum; | ||
import io.seqera.tower.model.GiteaSecurityKeys; | ||
import picocli.CommandLine.Option; | ||
|
||
import java.io.IOException; | ||
|
||
public class GiteaProvider extends AbstractGitProvider<GiteaSecurityKeys> { | ||
|
||
@Option(names = {"-u", "--username"}, description = "Gitea username.", required = true) | ||
public String userName; | ||
|
||
// NOTE: setting 'arity' + 'interactive' allows both passing value as param and prompting user for input | ||
@Option(names = {"-p", "--password"}, description = "Gitea account password.", arity = "0..1", interactive = true, required = true) | ||
public String password; | ||
|
||
public GiteaProvider() { | ||
super(ProviderEnum.GITEA); | ||
} | ||
|
||
@Override | ||
public GiteaSecurityKeys securityKeys() throws IOException { | ||
return new GiteaSecurityKeys() | ||
.username(userName) | ||
.password(password); | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
src/test/java/io/seqera/tower/cli/credentials/providers/GiteaProviderTest.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,51 @@ | ||
/* | ||
* Copyright (c) 2021, Seqera Labs. | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
* This Source Code Form is "Incompatible With Secondary Licenses", as | ||
* defined by the Mozilla Public License, v. 2.0. | ||
*/ | ||
|
||
/* | ||
* This Java source file was generated by the Gradle 'init' task. | ||
*/ | ||
package io.seqera.tower.cli.credentials.providers; | ||
|
||
import io.seqera.tower.cli.BaseCmdTest; | ||
import io.seqera.tower.cli.commands.enums.OutputType; | ||
import io.seqera.tower.cli.responses.CredentialsAdded; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.EnumSource; | ||
import org.mockserver.client.MockServerClient; | ||
import org.mockserver.model.MediaType; | ||
|
||
import static io.seqera.tower.cli.commands.AbstractApiCmd.USER_WORKSPACE_NAME; | ||
import static org.mockserver.matchers.Times.exactly; | ||
import static org.mockserver.model.HttpRequest.request; | ||
import static org.mockserver.model.HttpResponse.response; | ||
import static org.mockserver.model.JsonBody.json; | ||
|
||
class GiteaProviderTest extends BaseCmdTest { | ||
|
||
@ParameterizedTest | ||
@EnumSource(OutputType.class) | ||
void testAdd(OutputType format, MockServerClient mock) { | ||
|
||
mock.when( | ||
request() | ||
.withMethod("POST") | ||
.withPath("/credentials") | ||
.withBody(json("{\"credentials\":{\"keys\":{\"username\":\"[email protected]\",\"password\":\"mysecret\"},\"name\":\"TestGitea\",\"provider\":\"gitea\"}}")), | ||
exactly(1) | ||
).respond( | ||
response().withStatusCode(200).withBody("{\"credentialsId\":\"1cz5A8cuBkB5iJliCwJCFU\"}").withContentType(MediaType.APPLICATION_JSON) | ||
); | ||
|
||
ExecOut out = exec(format, mock, "credentials", "add", "gitea", "-n", "TestGitea", "-u", "[email protected]", "-p", "mysecret"); | ||
assertOutput(format, out, new CredentialsAdded("GITEA", "1cz5A8cuBkB5iJliCwJCFU", "TestGitea", USER_WORKSPACE_NAME)); | ||
} | ||
|
||
} |