mirror of
https://github.com/ahmetb/kubectx.git
synced 2025-07-10 13:53:03 +00:00
82 lines
1.8 KiB
Go
82 lines
1.8 KiB
Go
// Copyright 2021 Google LLC
|
|
//
|
|
// 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 main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"runtime"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/ahmetb/kubectx/internal/testutil"
|
|
)
|
|
|
|
func TestNSFile(t *testing.T) {
|
|
td, err := ioutil.TempDir(os.TempDir(), "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(td)
|
|
|
|
f := NewNSFile("foo")
|
|
f.dir = td
|
|
v, err := f.Load()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if v != "" {
|
|
t.Fatalf("Load() expected empty; got=%v", err)
|
|
}
|
|
|
|
err = f.Save("bar")
|
|
if err != nil {
|
|
t.Fatalf("Save() err=%v", err)
|
|
}
|
|
|
|
v, err = f.Load()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if expected := "bar"; v != expected {
|
|
t.Fatalf("Load()=\"%s\"; expected=\"%s\"", v, expected)
|
|
}
|
|
}
|
|
|
|
func TestNSFile_path_windows(t *testing.T) {
|
|
defer testutil.WithEnvVar("_FORCE_GOOS", "windows")()
|
|
fp := NewNSFile("a:b:c").path()
|
|
|
|
if expected := "a__b__c"; !strings.HasSuffix(fp, expected) {
|
|
t.Fatalf("file did not have expected ending %q: %s", expected, fp)
|
|
}
|
|
}
|
|
|
|
func Test_isWindows(t *testing.T) {
|
|
if runtime.GOOS == "windows" {
|
|
t.Skip("won't test this case on windows")
|
|
}
|
|
|
|
got := isWindows()
|
|
if got {
|
|
t.Fatalf("isWindows() returned true for %s", runtime.GOOS)
|
|
}
|
|
|
|
defer testutil.WithEnvVar("_FORCE_GOOS", "windows")()
|
|
if !isWindows() {
|
|
t.Fatalf("isWindows() failed to detect windows with env override.")
|
|
}
|
|
}
|