blob: 8a251b3e5f42fc9663f06b52c82712725963dc48 [file] [log] [blame]
// Copyright 2015 The LUCI Authors.
//
// 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 version
import (
"fmt"
"io/ioutil"
"os"
"runtime"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestRecoverSymlinkPath(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping test on Windows")
}
Convey("recoverSymlinkPath works", t, func(c C) {
So(recoverSymlinkPath("/a/b/.cipd/pkgs/cipd_mac-amd64_L8/08c6146/cipd"), ShouldEqual, "/a/b/cipd")
So(recoverSymlinkPath("/a/b/.cipd/pkgs/cipd_mac-amd64_L8/08c6146/c/d/cipd"), ShouldEqual, "/a/b/c/d/cipd")
So(recoverSymlinkPath("/a/b/.cipd/pkgs/0/_current/c/d/cipd"), ShouldEqual, "/a/b/c/d/cipd")
So(recoverSymlinkPath(".cipd/pkgs/cipd_mac-amd64_L8/08c6146/a"), ShouldEqual, "a")
})
Convey("recoverSymlinkPath handles bad paths", t, func(c C) {
So(recoverSymlinkPath(""), ShouldEqual, "")
So(recoverSymlinkPath("/a/b/c"), ShouldEqual, "")
So(recoverSymlinkPath("/a/b/c/d/e/f"), ShouldEqual, "")
So(recoverSymlinkPath("/a/b/c/.cipd/pkgs/d"), ShouldEqual, "")
So(recoverSymlinkPath("/a/b/c/.cipd/pkgs/abc/d"), ShouldEqual, "")
})
}
func TestEvalSymlinksAndAbs(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping test on Windows")
}
Convey(`evalSymlinksAndAbs`, t, func() {
Convey(`works`, func() {
dir, err := ioutil.TempDir("", "")
So(err, ShouldBeNil)
defer os.RemoveAll(dir)
p := func(path string) string {
return fmt.Sprintf("%s/%s", dir, path)
}
err = os.MkdirAll(p(`.cipd/pkgs/0/deadbeef`), 0755)
So(err, ShouldBeNil)
err = os.MkdirAll(p(`a`), 0755)
So(err, ShouldBeNil)
f, err := os.Create(p(`.cipd/pkgs/0/deadbeef/foo`))
So(err, ShouldBeNil)
f.Close()
err = os.Symlink(p(`.cipd/pkgs/0/deadbeef/foo`), p(`.cipd/pkgs/0/deadbeef/bar`))
So(err, ShouldBeNil)
err = os.Symlink(p(`.cipd/pkgs/0/deadbeef`), p(`.cipd/pkgs/0/_current`))
So(err, ShouldBeNil)
err = os.Symlink(p(`.cipd/pkgs/0/_current/foo`), p(`a/foo`))
So(err, ShouldBeNil)
pth, err := evalSymlinksAndAbs(p(`a/foo`), nil)
So(err, ShouldBeNil)
So(pth, ShouldEndWith, `.cipd/pkgs/0/deadbeef/foo`)
})
})
}