Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sp-yduck committed Feb 1, 2025
1 parent 4533db2 commit bbfd546
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloud/scheduler/queue/queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"testing"
"time"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/k8s-proxmox/cluster-api-provider-proxmox/cloud/scheduler/queue"
"github.com/k8s-proxmox/proxmox-go/api"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)

func TestQueue(t *testing.T) {
Expand Down
83 changes: 83 additions & 0 deletions cloud/scope/providerid.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
Copyright 2019 The Kubernetes Authors.
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 scope

import (
"errors"
"net/url"
"path"
)

var (
ErrEmptyProviderID = errors.New("providerID is empty")
ErrInvalidProviderID = errors.New("providerID is not valid")
)

// ProviderID is a struct representation of a Kubernetes ProviderID.
// Format: cloudProvider://optional/segments/etc/id
type ProviderID struct {
value *url.URL
}

// NewProviderID parses the input string and returns a new ProviderID.
func NewProviderID(id string) (*ProviderID, error) {
if id == "" {
return nil, ErrEmptyProviderID
}

parsed, err := url.Parse(id)
if err != nil {
return nil, err
}

res := &ProviderID{
value: parsed,
}

if !res.Validate() {
return nil, ErrInvalidProviderID
}

return res, nil
}

// CloudProvider returns the cloud provider portion of the ProviderID.
func (p *ProviderID) CloudProvider() string {
return p.value.Scheme
}

// ID returns the identifier portion of the ProviderID.
func (p *ProviderID) ID() string {
return path.Base(p.value.Path)
}

// Equals returns true if both the CloudProvider and ID match.
func (p *ProviderID) Equals(o *ProviderID) bool {
return p.CloudProvider() == o.CloudProvider() && p.ID() == o.ID()
}

// String returns the string representation of this object.
func (p *ProviderID) String() string {
return p.value.String()
}

// Validate returns true if the provider id is valid.
func (p *ProviderID) Validate() bool {
return p.CloudProvider() != "" &&
p.ID() != "" &&
p.ID() != "/" // path.Base returns "/" if consists only of slashes.
}

0 comments on commit bbfd546

Please sign in to comment.