2019-03-13 04:14:30 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/distatus/battery"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MockedEnvironment struct {
|
|
|
|
mock.Mock
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) getenv(key string) string {
|
|
|
|
args := env.Called(key)
|
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:50:13 -07:00
|
|
|
func (env *MockedEnvironment) getcwd() string {
|
2019-03-13 04:14:30 -07:00
|
|
|
args := env.Called(nil)
|
2020-10-02 12:50:13 -07:00
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) homeDir() string {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.String(0)
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
|
2020-10-01 11:57:02 -07:00
|
|
|
func (env *MockedEnvironment) hasFiles(pattern string) bool {
|
|
|
|
args := env.Called(pattern)
|
|
|
|
return args.Bool(0)
|
|
|
|
}
|
|
|
|
|
2020-12-01 11:43:30 -08:00
|
|
|
func (env *MockedEnvironment) hasFilesInDir(dir, pattern string) bool {
|
|
|
|
args := env.Called(dir, pattern)
|
|
|
|
return args.Bool(0)
|
|
|
|
}
|
|
|
|
|
2020-10-07 04:32:42 -07:00
|
|
|
func (env *MockedEnvironment) hasFolder(folder string) bool {
|
|
|
|
args := env.Called(folder)
|
|
|
|
return args.Bool(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) getFileContent(file string) string {
|
|
|
|
args := env.Called(file)
|
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
2019-03-13 04:14:30 -07:00
|
|
|
func (env *MockedEnvironment) getPathSeperator() string {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
2020-10-12 03:53:54 -07:00
|
|
|
func (env *MockedEnvironment) getCurrentUser() string {
|
2019-03-13 04:14:30 -07:00
|
|
|
args := env.Called(nil)
|
2020-10-12 03:53:54 -07:00
|
|
|
return args.String(0)
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) getHostName() (string, error) {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.String(0), args.Error(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) getRuntimeGOOS() string {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
2020-10-21 19:49:14 -07:00
|
|
|
func (env *MockedEnvironment) getPlatform() string {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
2019-03-13 04:14:30 -07:00
|
|
|
func (env *MockedEnvironment) hasCommand(command string) bool {
|
|
|
|
args := env.Called(command)
|
|
|
|
return args.Bool(0)
|
|
|
|
}
|
|
|
|
|
2020-10-16 08:43:02 -07:00
|
|
|
func (env *MockedEnvironment) runCommand(command string, args ...string) (string, error) {
|
2019-03-13 04:14:30 -07:00
|
|
|
arguments := env.Called(command, args)
|
2020-10-16 08:43:02 -07:00
|
|
|
return arguments.String(0), arguments.Error(1)
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
|
2020-11-12 00:43:32 -08:00
|
|
|
func (env *MockedEnvironment) runShellCommand(shell, command string) string {
|
2019-03-13 04:14:30 -07:00
|
|
|
args := env.Called(shell, command)
|
|
|
|
return args.String(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) lastErrorCode() int {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.Int(0)
|
|
|
|
}
|
|
|
|
|
2020-12-06 13:03:40 -08:00
|
|
|
func (env *MockedEnvironment) executionTime() float64 {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return float64(args.Int(0))
|
|
|
|
}
|
|
|
|
|
2019-03-13 04:14:30 -07:00
|
|
|
func (env *MockedEnvironment) isRunningAsRoot() bool {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.Bool(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) getArgs() *args {
|
|
|
|
arguments := env.Called(nil)
|
|
|
|
return arguments.Get(0).(*args)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *MockedEnvironment) getBatteryInfo() (*battery.Battery, error) {
|
|
|
|
args := env.Called(nil)
|
|
|
|
return args.Get(0).(*battery.Battery), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2020-09-24 10:11:56 -07:00
|
|
|
func (env *MockedEnvironment) getShellName() string {
|
2020-09-15 04:44:53 -07:00
|
|
|
args := env.Called(nil)
|
2020-09-24 10:11:56 -07:00
|
|
|
return args.String(0)
|
2020-09-15 04:44:53 -07:00
|
|
|
}
|
|
|
|
|
2020-11-12 00:43:32 -08:00
|
|
|
func (env *MockedEnvironment) getWindowTitle(imageName, windowTitleRegex string) (string, error) {
|
2020-11-04 23:56:12 -08:00
|
|
|
args := env.Called(imageName)
|
|
|
|
return args.String(0), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2020-11-19 19:12:20 -08:00
|
|
|
func (env *MockedEnvironment) doGet(url string) ([]byte, error) {
|
|
|
|
args := env.Called(url)
|
|
|
|
return args.Get(0).([]byte), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2020-11-12 00:43:32 -08:00
|
|
|
const (
|
|
|
|
homeGates = "/home/gates"
|
|
|
|
homeBill = "/home/bill"
|
|
|
|
homeJan = "/usr/home/jan"
|
|
|
|
homeBillWindows = "C:\\Users\\Bill"
|
|
|
|
levelDir = "/level"
|
|
|
|
)
|
|
|
|
|
2019-03-13 04:14:30 -07:00
|
|
|
func TestIsInHomeDirTrue(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBill
|
2019-03-13 04:14:30 -07:00
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.inHomeDir(home)
|
|
|
|
assert.True(t, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIsInHomeDirLevelTrue(t *testing.T) {
|
|
|
|
level := rand.Intn(100)
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBill
|
2019-03-13 04:14:30 -07:00
|
|
|
pwd := home
|
|
|
|
for i := 0; i < level; i++ {
|
2020-11-12 00:43:32 -08:00
|
|
|
pwd += levelDir
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.inHomeDir(pwd)
|
|
|
|
assert.True(t, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationHome(t *testing.T) {
|
|
|
|
expected := "~"
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{HomeIcon: expected},
|
|
|
|
}
|
|
|
|
home := "/home/bill/"
|
|
|
|
env := new(MockedEnvironment)
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("homeDir", nil).Return(home)
|
|
|
|
env.On("getcwd", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, expected, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationOutsideHome(t *testing.T) {
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{HomeIcon: "~"},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return("/home/bill")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("getcwd", nil).Return("/usr/error/what")
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, "usr", got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationWindowsDrive(t *testing.T) {
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{HomeIcon: "~"},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return("C:\\Users\\Bill")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("getcwd", nil).Return("C:\\Program Files\\Go")
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("\\")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, "C:", got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationWindowsRegistry(t *testing.T) {
|
|
|
|
expected := "REG"
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{WindowsRegistryIcon: expected},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return("C:\\Users\\Bill")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("getcwd", nil).Return("HKCU:\\Program Files\\Go")
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("\\")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, expected, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationWindowsPowerShellHome(t *testing.T) {
|
|
|
|
expected := "~"
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{HomeIcon: expected},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return("C:\\Users\\Bill")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("getcwd", nil).Return("Microsoft.PowerShell.Core\\FileSystem::C:\\Users\\Bill")
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("\\")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, expected, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationWindowsPowerShellOutsideHome(t *testing.T) {
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{WindowsRegistryIcon: "REG"},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return("C:\\Program Files\\Go")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("getcwd", nil).Return("Microsoft.PowerShell.Core\\FileSystem::C:\\Users\\Bill")
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("\\")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, "C:", got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRootLocationEmptyDir(t *testing.T) {
|
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{WindowsRegistryIcon: "REG"},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return("/home/bill")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("getcwd", nil).Return("")
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
2020-11-17 10:22:56 -08:00
|
|
|
got := path.rootLocation()
|
2019-03-13 04:14:30 -07:00
|
|
|
assert.EqualValues(t, "", got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIsInHomeDirFalse(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBill
|
2019-03-13 04:14:30 -07:00
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.inHomeDir("/usr/error")
|
|
|
|
assert.False(t, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathDepthInHome(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBill
|
2019-03-13 04:14:30 -07:00
|
|
|
pwd := home
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.pathDepth(pwd)
|
|
|
|
assert.Equal(t, 0, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathDepthInHomeTrailing(t *testing.T) {
|
|
|
|
home := "/home/bill/"
|
|
|
|
pwd := home + "/"
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.pathDepth(pwd)
|
|
|
|
assert.Equal(t, 0, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathDepthInHomeMultipleLevelsDeep(t *testing.T) {
|
|
|
|
level := rand.Intn(100)
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBill
|
2019-03-13 04:14:30 -07:00
|
|
|
pwd := home
|
|
|
|
for i := 0; i < level; i++ {
|
2020-11-12 00:43:32 -08:00
|
|
|
pwd += levelDir
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.pathDepth(pwd)
|
|
|
|
assert.Equal(t, level, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathDepthOutsideHomeMultipleLevelsDeep(t *testing.T) {
|
|
|
|
level := rand.Intn(100)
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeGates
|
2019-03-13 04:14:30 -07:00
|
|
|
pwd := "/usr"
|
|
|
|
for i := 0; i < level; i++ {
|
2020-11-12 00:43:32 -08:00
|
|
|
pwd += levelDir
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.pathDepth(pwd)
|
|
|
|
assert.Equal(t, level, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathDepthOutsideHomeZeroLevelsDeep(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeGates
|
2019-03-13 04:14:30 -07:00
|
|
|
pwd := "/usr/"
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.pathDepth(pwd)
|
|
|
|
assert.Equal(t, 0, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathDepthOutsideHomeOneLevelDeep(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeGates
|
2019-03-13 04:14:30 -07:00
|
|
|
pwd := "/usr/location"
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
}
|
|
|
|
got := path.pathDepth(pwd)
|
|
|
|
assert.Equal(t, 1, got)
|
|
|
|
}
|
|
|
|
|
2020-11-11 04:53:53 -08:00
|
|
|
func TestGetAgnosterFullPath(t *testing.T) {
|
|
|
|
pwd := "/usr/location/whatever"
|
|
|
|
env := new(MockedEnvironment)
|
|
|
|
env.On("getPathSeperator", nil).Return("/")
|
2020-11-17 10:22:56 -08:00
|
|
|
env.On("homeDir", nil).Return("/usr/home")
|
2020-11-11 04:53:53 -08:00
|
|
|
env.On("getcwd", nil).Return(pwd)
|
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: &properties{
|
|
|
|
values: map[Property]interface{}{
|
|
|
|
FolderSeparatorIcon: " > ",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
got := path.getAgnosterFullPath()
|
|
|
|
assert.Equal(t, "usr > location > whatever", got)
|
|
|
|
}
|
|
|
|
|
2020-11-12 00:43:32 -08:00
|
|
|
func testWritePathInfo(home, pwd, pathSeparator string) string {
|
2019-03-13 04:14:30 -07:00
|
|
|
props := &properties{
|
|
|
|
values: map[Property]interface{}{
|
|
|
|
FolderSeparatorIcon: " > ",
|
|
|
|
FolderIcon: "f",
|
|
|
|
HomeIcon: "~",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
env := new(MockedEnvironment)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("homeDir", nil).Return(home)
|
2019-03-13 04:14:30 -07:00
|
|
|
env.On("getPathSeperator", nil).Return(pathSeparator)
|
2020-10-02 12:50:13 -07:00
|
|
|
env.On("getcwd", nil).Return(pwd)
|
2019-03-13 04:14:30 -07:00
|
|
|
path := &path{
|
|
|
|
env: env,
|
|
|
|
props: props,
|
|
|
|
}
|
|
|
|
return path.getAgnosterPath()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoWindowsOutsideHome(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBillWindows
|
2019-03-13 04:14:30 -07:00
|
|
|
want := "C: > f > f > location"
|
|
|
|
got := testWritePathInfo(home, "C:\\Program Files\\Go\\location", "\\")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoWindowsInsideHome(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBillWindows
|
2019-03-13 04:14:30 -07:00
|
|
|
location := home + "\\Documents\\Bill\\location"
|
|
|
|
want := "~ > f > f > location"
|
|
|
|
got := testWritePathInfo(home, location, "\\")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoWindowsOutsideHomeZeroLevels(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBillWindows
|
2019-03-13 04:14:30 -07:00
|
|
|
want := "C: > location"
|
|
|
|
got := testWritePathInfo(home, "C:\\location", "\\")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoWindowsOutsideHomeOneLevels(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeBillWindows
|
2019-03-13 04:14:30 -07:00
|
|
|
want := "C: > f > location"
|
|
|
|
got := testWritePathInfo(home, "C:\\Program Files\\location", "\\")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoUnixOutsideHome(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeJan
|
2019-03-13 04:14:30 -07:00
|
|
|
want := "mnt > f > f > location"
|
|
|
|
got := testWritePathInfo(home, "/mnt/go/test/location", "/")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoUnixInsideHome(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeJan
|
2019-03-13 04:14:30 -07:00
|
|
|
location := home + "/docs/jan/location"
|
|
|
|
want := "~ > f > f > location"
|
|
|
|
got := testWritePathInfo(home, location, "/")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoUnixOutsideHomeZeroLevels(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeJan
|
2019-03-13 04:14:30 -07:00
|
|
|
want := "mnt > location"
|
|
|
|
got := testWritePathInfo(home, "/mnt/location", "/")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWritePathInfoUnixOutsideHomeOneLevels(t *testing.T) {
|
2020-11-12 00:43:32 -08:00
|
|
|
home := homeJan
|
2019-03-13 04:14:30 -07:00
|
|
|
want := "mnt > f > location"
|
|
|
|
got := testWritePathInfo(home, "/mnt/folder/location", "/")
|
|
|
|
assert.Equal(t, want, got)
|
|
|
|
}
|