blob: 3ccaef9cbfc3044fa459be4248ff701369113ddc [file] [log] [blame]
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package testhelper provides shared functionality and constants to be used in
// Discovery tests. It should only be imported by test files.
package testhelper
import (
"archive/zip"
"bytes"
"context"
"crypto/tls"
"fmt"
"io"
"net"
"net/http"
"net/http/httptest"
"os"
"path/filepath"
"runtime"
"testing"
"github.com/google/go-cmp/cmp"
"golang.org/x/pkgsite/internal/derrors"
"golang.org/x/tools/txtar"
)
const (
// MITLicense is the contents of the MIT license. It is detectable by the
// licensecheck package, and is considered redistributable.
MITLicense = `Copyright 2019 Google Inc
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`
// BSD0License is the contents of the BSD-0-Clause license. It is detectable
// by the licensecheck package, and is considered redistributable.
BSD0License = `Copyright 2019 Google Inc
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.`
// UnknownLicense is not detectable by the licensecheck package.
UnknownLicense = `THIS IS A LICENSE THAT I JUST MADE UP. YOU CAN DO WHATEVER YOU WANT WITH THIS CODE, TRUST ME.`
)
// SetupTestClientAndServer returns a *httpClient that can be used to
// stub requests to remote hosts by redirecting all requests that the client
// makes to a httptest.Server. with the given handler. It also disables TLS
// verification.
func SetupTestClientAndServer(handler http.Handler) (*http.Client, *httptest.Server, func()) {
srv := httptest.NewTLSServer(handler)
cli := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: func(_ context.Context, network, _ string) (net.Conn, error) {
return net.Dial(network, srv.Listener.Addr().String())
},
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
},
}
return cli, srv, srv.Close
}
func writeZip(w io.Writer, contents map[string]string) (err error) {
zw := zip.NewWriter(w)
defer func() {
if cerr := zw.Close(); cerr != nil {
err = fmt.Errorf("error: %v, close error: %v", err, cerr)
}
}()
for name, content := range contents {
fw, err := zw.Create(name)
if err != nil {
return fmt.Errorf("ZipWriter::Create(): %v", err)
}
_, err = io.WriteString(fw, content)
if err != nil {
return fmt.Errorf("io.WriteString(...): %v", err)
}
}
return nil
}
// ZipContents creates an in-memory zip of the given contents.
func ZipContents(contents map[string]string) ([]byte, error) {
bs := &bytes.Buffer{}
if err := writeZip(bs, contents); err != nil {
return nil, fmt.Errorf("testhelper.ZipContents(%v): %v", contents, err)
}
return bs.Bytes(), nil
}
// TestDataPath returns a path corresponding to a path relative to the calling
// test file. For convenience, rel is assumed to be "/"-delimited.
//
// It panics on failure.
func TestDataPath(rel string) string {
_, filename, _, ok := runtime.Caller(1)
if !ok {
panic("unable to determine relative path")
}
return filepath.Clean(filepath.Join(filepath.Dir(filename), filepath.FromSlash(rel)))
}
// CreateTestDirectory creates a directory to hold a module when testing
// local fetching, and returns the directory.
func CreateTestDirectory(files map[string]string) (_ string, err error) {
defer derrors.Wrap(&err, "CreateTestDirectory(files)")
tempDir, err := os.MkdirTemp("", "")
if err != nil {
return "", err
}
if err := writeTestDirectory(tempDir, files); err != nil {
return "", err
}
return tempDir, nil
}
func writeTestDirectory(tempDir string, files map[string]string) error {
for path, contents := range files {
path = filepath.Join(tempDir, path)
parent, _ := filepath.Split(path)
if err := os.MkdirAll(parent, 0755); err != nil {
return err
}
file, err := os.Create(path)
if err != nil {
return err
}
if _, err := file.WriteString(contents); err != nil {
return err
}
if err := file.Close(); err != nil {
return err
}
}
return nil
}
// WriteTxtarToTempDir parses data as a txtar archive, and writes the resulting
// files to a new tempdir created with t.TempDir(). It returns the temp
// directory and files that were unpacked.
func WriteTxtarToTempDir(t *testing.T, data string) (string, map[string]string) {
t.Helper()
archive := txtar.Parse([]byte(data))
files := make(map[string]string)
for _, file := range archive.Files {
if _, ok := files[file.Name]; ok {
t.Fatalf("file %q occurs twice in the provided archive", file.Name)
}
files[file.Name] = string(file.Data)
}
tempDir := t.TempDir()
if err := writeTestDirectory(tempDir, files); err != nil {
t.Fatalf("writing test dir: %v", err)
}
return tempDir, files
}
func CompareWithGolden(t *testing.T, got, filename string, update bool) {
t.Helper()
if update {
writeGolden(t, filename, got)
} else {
want := readGolden(t, filename)
if diff := cmp.Diff(want, got); diff != "" {
t.Errorf("%s: mismatch (-want, +got):\n%s", filename, diff)
}
}
}
func writeGolden(t *testing.T, name string, data string) {
filename := filepath.Join("testdata", name)
if err := os.WriteFile(filename, []byte(data), 0644); err != nil {
t.Fatal(err)
}
t.Logf("wrote %s", filename)
}
func readGolden(t *testing.T, name string) string {
data, err := os.ReadFile(filepath.Join("testdata", name))
if err != nil {
t.Fatal(err)
}
return string(data)
}