Skip to content

Commit

Permalink
Regression testing: Clarify source code and CLI text
Browse files Browse the repository at this point in the history
Bump required Go version to 1.21 for access to functions min() and max().
  • Loading branch information
dmullis authored and dmullis committed Jul 17, 2024
1 parent 1c87c18 commit b4ccdc7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
44 changes: 28 additions & 16 deletions examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import (
)

var (
write = flag.Bool("write", false, "write examples to disk") // XX rename: more descriptive
write = flag.Bool("write",
false, "write reference SVG output files")
svgColorLightScheme = flag.String("svg-color-light-scheme", "#000000",
`See help for cmd/goat`)
svgColorDarkScheme = flag.String("svg-color-dark-scheme", "#FFFFFF",
Expand Down Expand Up @@ -50,7 +51,7 @@ func TestExamples(t *testing.T) {

var buff *bytes.Buffer
if write == nil {
t.Logf("Verifying output of current build against earlier .svg files in examples/.\n")
t.Logf("Verifying equality of current SVG with examples/ references.\n")
}
var failures int
for _, name := range filenames {
Expand Down Expand Up @@ -83,15 +84,26 @@ func TestExamples(t *testing.T) {
if err != nil {
t.Log(err)
}
if buff.String() != golden {
// XX Skip this if the modification timestamp of the .txt file
// source is fresher than the .svg?
t.Log(buff.Len(), len(golden))
t.Logf("Content mismatch for %s", toSVGFilename(name))
if newStr := buff.String(); newStr != golden {
// Skip complaint if the modification timestamp of the .txt file
// source is fresher than that of the .svg?
// => NO, Any .txt difference might be an editing mistake.

t.Logf("Content mismatch for %s. Length was %d, expected %d",
toSVGFilename(name), buff.Len(), len(golden))
for i:=0; i<min(len(golden), len(newStr)); i++ {
if newStr[i] != golden[i] {
t.Logf("Differing runes at offset %d: new='%#v' reference='%#v'\n",
i, newStr[i], golden[i])
break
}
}
t.Logf("Generated contents do not match existing %s",
toSVGFilename(name))
failures++
} else {
if testing.Verbose() {
t.Logf("Verified contents of SVG file %s\n",
t.Logf("Existing and generated contents match %s\n",
toSVGFilename(name))
}
}
Expand Down Expand Up @@ -119,24 +131,24 @@ func BenchmarkComplicated(b *testing.B) {

const basePath string = "examples"

func getIn(filename string) io.ReadCloser {
in, err := os.Open(filename)
func getIn(txtFilename string) io.ReadCloser {
in, err := os.Open(txtFilename)
if err != nil {
panic(err)
}
return in
}

func getOut(filename string) io.WriteCloser {
out, err := os.Create(toSVGFilename(filename))
func getOut(txtFilename string) io.WriteCloser {
out, err := os.Create(toSVGFilename(txtFilename))
if err != nil {
panic(err)
}
return out
}

func getOutString(filename string) (string, error) {
b, err := ioutil.ReadFile(toSVGFilename(filename))
func getOutString(txtFilename string) (string, error) {
b, err := ioutil.ReadFile(toSVGFilename(txtFilename))
if err != nil {
return "", err
}
Expand All @@ -145,6 +157,6 @@ func getOutString(filename string) (string, error) {
return string(b), nil
}

func toSVGFilename(filename string) string {
return strings.TrimSuffix(filename, filepath.Ext(filename)) + ".svg"
func toSVGFilename(txtFilename string) string {
return strings.TrimSuffix(txtFilename, filepath.Ext(txtFilename)) + ".svg"
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/blampe/goat

go 1.17
go 1.21

require (
github.com/frankban/quicktest v1.14.2
Expand Down
2 changes: 2 additions & 0 deletions pre-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,5 @@ go run ./cmd/goat <examples/trees.txt \
# X `tac` is a slightly sleazy way to get the .txt/.svg pairs listed in the
# source/dest order as required by tmpl_expand.
tmpl_expand <README.md.tmpl >README.md $(git-ls-files examples | tac)

printf "\nTo install in local GOPATH:\n\t%s\n" "go install ./cmd/goat"

0 comments on commit b4ccdc7

Please sign in to comment.