blob: 507196b73ceca84ab0b3b65ae896bd8d7bf45418 [file]
// Copyright 2023 The Bazel Authors. All rights reserved.
//
// 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 runfilelocation
import (
"io/ioutil"
"os"
"testing"
)
func TestValidRunfileLocation(t *testing.T) {
// Check that Find() returns a valid path to a runfile
runfilePath := "src/common/golang/a.txt"
absRunFilePath, err := Find(runfilePath)
if err != nil {
t.Errorf("Runfile path through Runfilelocation() failed: %v", err)
}
// Check that the path actually exists
contents, err := ioutil.ReadFile(absRunFilePath)
text := string(contents)
if err != nil {
t.Errorf("Could not read file: %v", err)
}
if text != "hello world\n" {
t.Errorf("Expected 'hello world' in file, got %v instead.", text)
}
}
func TestInvalidRunfileLocation(t *testing.T) {
invalidRunfilePath := "src/common/golang/b.txt"
runfileLocationShouldNotExist, err := Find(invalidRunfilePath)
if err != nil {
// Even if the path is invalid, runfilelocation.Find() should return the path to where it _thinks_
// the runfile should exist.
t.Errorf("Unexpected error: %v should have returned a runfile path. Instead got %v", invalidRunfilePath, err)
}
// Check that the invalid runfile path actually does not exist.
if _, err := os.Stat(runfileLocationShouldNotExist); err == nil {
t.Errorf("Expected error, file should not have been found: %v", runfileLocationShouldNotExist)
}
}