Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Azure DevOps as a provider #217

Merged
merged 8 commits into from
Dec 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export GIT_REPO=https://github.com/owner/name?ref=gitops_branch

#### Using a Specific git Provider
You can add the `--provider` flag to the `repo bootstrap` command, to enforce using a specific provider when creating a new repository. If the value is not supplied, the code will attempt to infer it from the clone URL.
Autopilot currently support github, gitlab and gitea as SCM providers.
Autopilot currently support github, gitlab, azure devops, and gitea as SCM providers.

All the following commands will use the variables you supplied in order to manage your GitOps repository.

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/argocd-autopilot_repo_bootstrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ argocd-autopilot repo bootstrap [flags]
--installation-mode string One of: normal|flat. If flat, will commit the bootstrap manifests, otherwise will commit the bootstrap kustomization.yaml (default "normal")
--kubeconfig string Path to the kubeconfig file to use for CLI requests.
-n, --namespace string If present, the namespace scope for this CLI request
--provider string The git provider, one of: gitea|github|gitlab
--provider string The git provider, one of: azure|gitea|github|gitlab
--repo string Repository URL [GIT_REPO]
--request-timeout string The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests. (default "0")
```
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ require (
github.com/go-git/go-git/v5 v5.4.1
github.com/gobuffalo/packr v1.30.1
github.com/google/go-github/v35 v35.3.0
github.com/google/uuid v1.3.0 // indirect
github.com/microsoft/azure-devops-go-api/azuredevops v1.0.0-b5
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.1.3
github.com/spf13/pflag v1.0.5
Expand Down
5 changes: 4 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,9 @@ github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaU
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg=
Expand Down Expand Up @@ -615,6 +616,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
github.com/mholt/certmagic v0.6.2-0.20190624175158-6a42ef9fe8c2/go.mod h1:g4cOPxcjV0oFq3qwpjSA30LReKD8AoIfwAY9VvG35NY=
github.com/microsoft/azure-devops-go-api/azuredevops v1.0.0-b5 h1:YH424zrwLTlyHSH/GzLMJeu5zhYVZSx5RQxGKm1h96s=
github.com/microsoft/azure-devops-go-api/azuredevops v1.0.0-b5/go.mod h1:PoGiBqKSQK1vIfQ+yVaFcGjDySHvym6FM1cNYnwzbrY=
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
github.com/miekg/dns v1.1.3/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
github.com/miekg/dns v1.1.35/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM=
Expand Down
38 changes: 38 additions & 0 deletions pkg/git/ado/mocks/ado_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions pkg/git/ado/mocks/ado_url.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pkg/git/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ var supportedProviders = map[string]func(*ProviderOptions) (Provider, error){
"github": newGithub,
"gitea": newGitea,
"gitlab": newGitlab,
Azure: newAdo,
}

// New creates a new git provider
Expand All @@ -72,6 +73,6 @@ func Providers() []string {
res = append(res, p)
}

sort.Strings(res) // must sort the providers by name, otherwise the codegen is not determenistic
sort.Strings(res) // must sort the providers by name, otherwise the codegen is not deterministic
return res
}
106 changes: 106 additions & 0 deletions pkg/git/provider_ado.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
package git

import (
"context"
"fmt"
"github.com/microsoft/azure-devops-go-api/azuredevops"
ado "github.com/microsoft/azure-devops-go-api/azuredevops/git"
"net/url"
"strings"
"time"
)

//go:generate mockery --name Ado* --output ado/mocks --case snake
type (
AdoClient interface {
CreateRepository(context.Context, ado.CreateRepositoryArgs) (*ado.GitRepository, error)
}

AdoUrl interface {
GetProjectName() string
}

adoGit struct {
adoClient AdoClient
opts *ProviderOptions
adoUrl AdoUrl
}

adoGitUrl struct {
loginUrl string
subscription string
projectName string
}
)

const Azure = "azure"
const AzureHostName = "dev.azure"
const timeoutTime = 10 * time.Second

func newAdo(opts *ProviderOptions) (Provider, error) {
adoUrl, err := parseAdoUrl(opts.Host)
if err != nil {
return nil, err
}
connection := azuredevops.NewPatConnection(adoUrl.loginUrl, opts.Auth.Password)
ctx, cancel := context.WithTimeout(context.Background(), timeoutTime)
defer cancel()
// FYI: ado also has a "core" client that can be used to update project, teams, and other ADO constructs
gitClient, err := ado.NewClient(ctx, connection)
if err != nil {
return nil, err
}

return &adoGit{
adoClient: gitClient,
opts: opts,
adoUrl: adoUrl,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think you should use the parsed url here because it is parsed from opts.Host which is not the full url. Isn't it a problem?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ADO client doesn't actually need the URL. You log into ADO using the organization URL. Then via their structs provide the project and repo name. Since I use the repo name from the CreateRepoOptions, there were never any issues. I removed the repoName parsing since it wasn't actually doing anything.

It is very confusing what is going on with the URL... any suggestions?

Copy link
Contributor

@roi-codefresh roi-codefresh Dec 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How do you actually parse the project name from the opts.Host. Seems like it would not actually be there..

Copy link
Contributor Author

@rumstead rumstead Dec 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, it is :).

host = normalizeGitHostSpec(n[:index+len(gitDelimiter)])

Host = https://dev.azure.com/TEST/rumstead/_git/ where TEST is the subscription and rumstead is the project.

Let me know if you want me to change it or any suggestions on how to make it cleaner.

}, nil
}

func (g *adoGit) CreateRepository(ctx context.Context, opts *CreateRepoOptions) (string, error) {
if opts.Name == "" {
return "", fmt.Errorf("name needs to be provided to create an azure devops repository. "+
"name: '%s'", opts.Name)
}
gitRepoToCreate := &ado.GitRepositoryCreateOptions{
Name: &opts.Name,
}
project := g.adoUrl.GetProjectName()
createRepositoryArgs := ado.CreateRepositoryArgs{
GitRepositoryToCreate: gitRepoToCreate,
Project: &project,
}
repository, err := g.adoClient.CreateRepository(ctx, createRepositoryArgs)
if err != nil {
return "", err
}
return *repository.RemoteUrl, nil
}

func (a *adoGitUrl) GetProjectName() string {
return a.projectName
}

// getLoginUrl parses a URL to retrieve the subscription and project name
func parseAdoUrl(host string) (*adoGitUrl, error) {
u, err := url.Parse(host)
if err != nil {
return nil, err
}
var sub, project string
path := strings.Split(u.Path, "/")
if len(path) < 5 {
return nil, fmt.Errorf("unable to parse Azure DevOps url")
} else {
// 1 since the path starts with a slash
sub = path[1]
project = path[2]
}
loginUrl := fmt.Sprintf("%s://%s/%s", u.Scheme, u.Host, sub)
return &adoGitUrl{
loginUrl: loginUrl,
subscription: sub,
projectName: project,
}, nil
}
130 changes: 130 additions & 0 deletions pkg/git/provider_ado_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
package git

import (
"context"
"errors"
"fmt"
adoMock "github.com/argoproj-labs/argocd-autopilot/pkg/git/ado/mocks"
ado "github.com/microsoft/azure-devops-go-api/azuredevops/git"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"testing"
)

func Test_adoGit_CreateRepository(t *testing.T) {
roi-codefresh marked this conversation as resolved.
Show resolved Hide resolved
remoteURL := "https://dev.azure.com/SUB/PROJECT/_git/REPO"
emptyFunc := func(client *adoMock.AdoClient, url *adoMock.AdoUrl) {}
type args struct {
ctx context.Context
opts *CreateRepoOptions
}
tests := []struct {
name string
mockClient func(client *adoMock.AdoClient, url *adoMock.AdoUrl)
args args
want string
wantErr assert.ErrorAssertionFunc
}{
{name: "Empty Name", mockClient: emptyFunc, args: args{
ctx: context.TODO(),
opts: &CreateRepoOptions{
Owner: "rumstead",
Name: "",
},
}, want: "", wantErr: func(t assert.TestingT, err error, i ...interface{}) bool {
return true
}},
{name: "Failure creating repo", mockClient: func(client *adoMock.AdoClient, url *adoMock.AdoUrl) {
client.On("CreateRepository", context.TODO(),
mock.AnythingOfType("CreateRepositoryArgs")).
Return(nil, errors.New("ah an error"))
url.On("GetProjectName").Return("blah")
}, args: args{
ctx: context.TODO(),
opts: &CreateRepoOptions{
Owner: "rumstead",
Name: "name",
},
}, want: "", wantErr: func(t assert.TestingT, err error, i ...interface{}) bool {
return true
}},
{name: "Success creating repo", mockClient: func(client *adoMock.AdoClient, url *adoMock.AdoUrl) {
url.On("GetProjectName").Return("PROJECT")
client.On("CreateRepository", context.TODO(), mock.AnythingOfType("CreateRepositoryArgs")).Return(&ado.GitRepository{
Links: nil,
DefaultBranch: nil,
Id: nil,
IsFork: nil,
Name: nil,
ParentRepository: nil,
Project: nil,
RemoteUrl: &remoteURL,
Size: nil,
SshUrl: nil,
Url: nil,
ValidRemoteUrls: nil,
WebUrl: nil,
}, nil)
}, args: args{
ctx: context.TODO(),
opts: &CreateRepoOptions{
Owner: "rumstead",
Name: "name",
},
}, want: "https://dev.azure.com/SUB/PROJECT/_git/REPO", wantErr: func(t assert.TestingT, err error, i ...interface{}) bool {
return false
}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
mockClient := &adoMock.AdoClient{}
mockUrl := &adoMock.AdoUrl{}
tt.mockClient(mockClient, mockUrl)
g := &adoGit{
adoClient: mockClient,
adoUrl: mockUrl,
}
got, err := g.CreateRepository(tt.args.ctx, tt.args.opts)
if !tt.wantErr(t, err, fmt.Sprintf("CreateRepository(%v, %v)", tt.args.ctx, tt.args.opts)) {
return
}
assert.Equalf(t, tt.want, got, "CreateRepository(%v, %v)", tt.args.ctx, tt.args.opts)
})
}
}

func Test_parseAdoUrl(t *testing.T) {
type args struct {
host string
}
tests := []struct {
name string
args args
want *adoGitUrl
wantErr assert.ErrorAssertionFunc
}{
{name: "Invalid URL", args: args{host: "https://dev.azure.com"}, want: nil, wantErr: func(t assert.TestingT, err error, i ...interface{}) bool {
return true
}},
// url taking from the url_test in the url/net module
{name: "Parse Error", args: args{host: "http://[fe80::%31]:8080/"}, want: nil, wantErr: func(t assert.TestingT, err error, i ...interface{}) bool {
return true
}},
{name: "Parse URL", args: args{host: "https://dev.azure.com/SUB/PROJECT/_git/REPO "}, want: &adoGitUrl{
loginUrl: "https://dev.azure.com/SUB",
subscription: "SUB",
projectName: "PROJECT",
}, wantErr: func(t assert.TestingT, err error, i ...interface{}) bool {
return false
}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := parseAdoUrl(tt.args.host)
if !tt.wantErr(t, err, fmt.Sprintf("parseAdoUrl(%v)", tt.args.host)) {
return
}
assert.Equalf(t, tt.want, got, "parseAdoUrl(%v)", tt.args.host)
})
}
}
2 changes: 1 addition & 1 deletion pkg/git/provider_gitea.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func newGitea(opts *ProviderOptions) (Provider, error) {
return g, nil
}

func (g *gitea) CreateRepository(ctx context.Context, opts *CreateRepoOptions) (string, error) {
func (g *gitea) CreateRepository(_ context.Context, opts *CreateRepoOptions) (string, error) {
authUser, res, err := g.client.GetMyUserInfo()
if err != nil {
if res.StatusCode == 401 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/git/provider_gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func newGitlab(opts *ProviderOptions) (Provider, error) {
return g, nil
}

func (g *gitlab) CreateRepository(ctx context.Context, opts *CreateRepoOptions) (string, error) {
func (g *gitlab) CreateRepository(_ context.Context, opts *CreateRepoOptions) (string, error) {
authUser, res, err := g.client.CurrentUser()
if err != nil {
if res.StatusCode == 401 {
Expand Down
Loading