123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- package main
- import (
- "bytes"
- "io/ioutil"
- "os"
- "path/filepath"
- "strings"
- "testing"
- "github.com/google/go-cmp/cmp"
- "github.com/google/go-cmp/cmp/cmpopts"
- "github.com/kyleconroy/sqlc/internal/cmd"
- )
- func TestExamples(t *testing.T) {
- t.Parallel()
- examples, err := filepath.Abs(filepath.Join("..", "..", "examples"))
- if err != nil {
- t.Fatal(err)
- }
- files, err := ioutil.ReadDir(examples)
- if err != nil {
- t.Fatal(err)
- }
- for _, replay := range files {
- if !replay.IsDir() {
- continue
- }
- tc := replay.Name()
- t.Run(tc, func(t *testing.T) {
- t.Parallel()
- path := filepath.Join(examples, tc)
- var stderr bytes.Buffer
- output, err := cmd.Generate(cmd.Env{}, path, &stderr)
- if err != nil {
- t.Fatalf("sqlc generate failed: %s", stderr.String())
- }
- cmpDirectory(t, path, output)
- })
- }
- }
- func TestReplay(t *testing.T) {
- t.Parallel()
- files, err := ioutil.ReadDir("testdata")
- if err != nil {
- t.Fatal(err)
- }
- for _, replay := range files {
- if !replay.IsDir() {
- continue
- }
- tc := replay.Name()
- t.Run(tc, func(t *testing.T) {
- t.Parallel()
- path, _ := filepath.Abs(filepath.Join("testdata", tc))
- var stderr bytes.Buffer
- expected := expectedStderr(t, path)
- output, err := cmd.Generate(cmd.Env{}, path, &stderr)
- if len(expected) == 0 && err != nil {
- t.Fatalf("sqlc generate failed: %s", stderr.String())
- }
- cmpDirectory(t, path, output)
- if diff := cmp.Diff(expected, stderr.String()); diff != "" {
- t.Errorf("stderr differed (-want +got):\n%s", diff)
- }
- })
- }
- }
- func cmpDirectory(t *testing.T, dir string, actual map[string]string) {
- expected := map[string]string{}
- var ff = func(path string, file os.FileInfo, err error) error {
- if err != nil {
- return err
- }
- if file.IsDir() {
- return nil
- }
- if !strings.HasSuffix(path, ".go") && !strings.HasSuffix(path, ".kt") {
- return nil
- }
- if strings.HasSuffix(path, "_test.go") || strings.Contains(path, "src/test/") {
- return nil
- }
- // TODO(mightyguava): Remove this after sqlc-kotlin-runtime is published to Maven.
- if strings.HasSuffix(path, "Query.kt") {
- return nil
- }
- blob, err := ioutil.ReadFile(path)
- if err != nil {
- return err
- }
- expected[path] = string(blob)
- return nil
- }
- if err := filepath.Walk(dir, ff); err != nil {
- t.Fatal(err)
- }
- if !cmp.Equal(expected, actual, cmpopts.EquateEmpty()) {
- t.Errorf("%s contents differ", dir)
- for name, contents := range expected {
- name := name
- tn := strings.Replace(name, dir+"/", "", -1)
- t.Run(tn, func(t *testing.T) {
- if actual[name] == "" {
- t.Errorf("%s is empty", name)
- return
- }
- if diff := cmp.Diff(contents, actual[name]); diff != "" {
- t.Errorf("%s differed (-want +got):\n%s", name, diff)
- }
- })
- }
- }
- }
- func expectedStderr(t *testing.T, dir string) string {
- t.Helper()
- path := filepath.Join(dir, "stderr.txt")
- if _, err := os.Stat(path); !os.IsNotExist(err) {
- blob, err := ioutil.ReadFile(path)
- if err != nil {
- t.Fatal(err)
- }
- return string(blob)
- }
- return ""
- }
|