mirror of
https://github.com/TECHNOFAB11/powerproto.git
synced 2026-02-02 09:25:07 +01:00
feat(*): support repositories
Signed-off-by: storyicon <yuanchao@bilibili.com>
This commit is contained in:
parent
1c73b92f0f
commit
9a99c53c5b
18 changed files with 542 additions and 255 deletions
|
|
@ -24,6 +24,19 @@ import (
|
|||
"syscall"
|
||||
)
|
||||
|
||||
// DeduplicateSlice is used to deduplicate slice items stably
|
||||
func DeduplicateSliceStably(items []string) []string {
|
||||
data := make([]string, 0, len(items))
|
||||
deduplicate := map[string]struct{}{}
|
||||
for _, val := range items {
|
||||
if _, exists := deduplicate[val]; !exists {
|
||||
deduplicate[val] = struct{}{}
|
||||
data = append(data, val)
|
||||
}
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
// ContainsEmpty is used to check whether items contains empty string
|
||||
func ContainsEmpty(items ...string) bool {
|
||||
return Contains(items, "")
|
||||
|
|
@ -75,10 +88,17 @@ func GetExitCode(err error) int {
|
|||
var regexpEnvironmentVar = regexp.MustCompile(`\$[A-Za-z_]+`)
|
||||
|
||||
// RenderPathWithEnv is used to render path with environment
|
||||
func RenderPathWithEnv(path string) string {
|
||||
func RenderPathWithEnv(path string, ext map[string]string) string {
|
||||
matches := regexpEnvironmentVar.FindAllString(path, -1)
|
||||
for _, match := range matches {
|
||||
path = strings.ReplaceAll(path, match, os.Getenv(match[1:]))
|
||||
key := match[1:]
|
||||
val := ext[key]
|
||||
if val == "" {
|
||||
val = os.Getenv(key)
|
||||
}
|
||||
if val != "" {
|
||||
path = strings.ReplaceAll(path, match, val)
|
||||
}
|
||||
}
|
||||
return filepath.Clean(path)
|
||||
}
|
||||
|
|
|
|||
87
pkg/util/util_test.go
Normal file
87
pkg/util/util_test.go
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
// Copyright 2021 storyicon@foxmail.com
|
||||
//
|
||||
// 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 util
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"reflect"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestRenderPathWithEnv(t *testing.T) {
|
||||
type args struct {
|
||||
path string
|
||||
ext map[string]string
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
want string
|
||||
}{
|
||||
{
|
||||
args: args{
|
||||
path: "$POWERPROTO_INCLUDE/protobuf",
|
||||
ext: map[string]string{
|
||||
"POWERPROTO_INCLUDE": "/mnt/powerproto/include",
|
||||
},
|
||||
},
|
||||
want: filepath.Clean("/mnt/powerproto/include/protobuf"),
|
||||
},
|
||||
{
|
||||
args: args{
|
||||
path: "$POWERPROTO_INCLUDE/protobuf",
|
||||
},
|
||||
want: filepath.Clean("$POWERPROTO_INCLUDE/protobuf"),
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
if got := RenderPathWithEnv(tt.args.path, tt.args.ext); got != tt.want {
|
||||
t.Errorf("RenderPathWithEnv() = %v, want %v", got, tt.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestDeduplicateSliceStably(t *testing.T) {
|
||||
type args struct {
|
||||
items []string
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
want []string
|
||||
}{
|
||||
{
|
||||
args: args{
|
||||
items: []string{"a", "B", "c", "B"},
|
||||
},
|
||||
want: []string{"a", "B", "c"},
|
||||
},
|
||||
{
|
||||
args: args{
|
||||
items: []string{"B", "c", "B", "a"},
|
||||
},
|
||||
want: []string{"B", "c", "a"},
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
if got := DeduplicateSliceStably(tt.args.items); !reflect.DeepEqual(got, tt.want) {
|
||||
t.Errorf("DeduplicateSliceStably() = %v, want %v", got, tt.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue