|
| 1 | +// Copyright 2022 The go-python Authors. All rights reserved. |
| 2 | +// Use of this source code is governed by a BSD-style |
| 3 | +// license that can be found in the LICENSE file. |
| 4 | + |
| 5 | +package main |
| 6 | + |
| 7 | +import ( |
| 8 | + "bytes" |
| 9 | + "flag" |
| 10 | + "os" |
| 11 | + "os/exec" |
| 12 | + "path/filepath" |
| 13 | + "testing" |
| 14 | +) |
| 15 | + |
| 16 | +var regen = flag.Bool("regen", false, "regenerate golden files") |
| 17 | + |
| 18 | +func TestGPython(t *testing.T) { |
| 19 | + |
| 20 | + tmp, err := os.MkdirTemp("", "go-python-") |
| 21 | + if err != nil { |
| 22 | + t.Fatal(err) |
| 23 | + } |
| 24 | + defer os.RemoveAll(tmp) |
| 25 | + |
| 26 | + exe := filepath.Join(tmp, "out.exe") |
| 27 | + cmd := exec.Command("go", "build", "-o", exe, ".") |
| 28 | + cmd.Stdout = os.Stdout |
| 29 | + cmd.Stderr = os.Stderr |
| 30 | + err = cmd.Run() |
| 31 | + if err != nil { |
| 32 | + t.Fatalf("failed to compile embedding example: %+v", err) |
| 33 | + } |
| 34 | + |
| 35 | + got, err := exec.Command(exe, "testdata/hello.py").CombinedOutput() |
| 36 | + if err != nil { |
| 37 | + t.Fatalf("could not run gpython:\n%s\nerr: %+v", got, err) |
| 38 | + } |
| 39 | + |
| 40 | + const fname = "testdata/hello_golden.txt" |
| 41 | + |
| 42 | + flag.Parse() |
| 43 | + if *regen { |
| 44 | + err = os.WriteFile(fname, got, 0644) |
| 45 | + if err != nil { |
| 46 | + t.Fatalf("could not write golden file: %+v", err) |
| 47 | + } |
| 48 | + } |
| 49 | + |
| 50 | + want, err := os.ReadFile(fname) |
| 51 | + if err != nil { |
| 52 | + t.Fatalf("could not read golden file: %+v", err) |
| 53 | + } |
| 54 | + if !bytes.Equal(got, want) { |
| 55 | + t.Fatalf("stdout differ:\ngot:\n%s\nwant:\n%s\n", got, want) |
| 56 | + } |
| 57 | +} |
| 58 | + |
| 59 | +func TestRunFile(t *testing.T) { |
| 60 | + xmain([]string{"./testdata/hello.py"}) |
| 61 | +} |
0 commit comments