// 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) } }) } } func TestSortSemanticVersion(t *testing.T) { type args struct { items []string } tests := []struct { name string args args want []string want1 []string }{ { args: args{ items: []string{ "v3.0.0-beta-3.1", "v3.0.0-alpha-2", "3.15.0-rc1", "conformance-build-tag", "v2.4.1", }, }, want: []string{"conformance-build-tag"}, want1: []string{"v2.4.1", "v3.0.0-alpha-2", "v3.0.0-beta-3.1", "3.15.0-rc1"}, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { got, got1 := SortSemanticVersion(tt.args.items) if !reflect.DeepEqual(got, tt.want) { t.Errorf("SortSemanticVersion() got = %v, want %v", got, tt.want) } if !reflect.DeepEqual(got1, tt.want1) { t.Errorf("SortSemanticVersion() got1 = %v, want %v", got1, tt.want1) } }) } }