aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/customflags_test.go
blob: 5674b939e375cca2345961fc3d1454dbfaffa2bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package utils

import (
    "testing"
    "os"
    "os/user"
)

func TestPathExpansion(t *testing.T) {

    user, _ := user.Current()

    tests := map[string]string {
        "/home/someuser/tmp": "/home/someuser/tmp",
        "~/tmp": user.HomeDir + "/tmp",
        "$DDDXXX/a/b": "/tmp/a/b",
        "/a/b/": "/a/b",
    }

    os.Setenv("DDDXXX", "/tmp")

    for test, expected := range tests {
        got := expandPath(test)
        if got != expected {
            t.Errorf("test %s, got %s, expected %s\n", test, got, expected)
        }
    }
}