mirror of
https://github.com/golang/go
synced 2024-11-18 17:44:47 -07:00
ae8027637c
Moved the code which generates static.go to remain in the static package. This makes the code testable. Additionally, it is very easy for developers to forget to run "go generate" to update static.go. Because while development, the templates directory can be directly passed as a flag to read the files from it. This test catches that. Change-Id: I314907b98907bb14e4eabfd3c532ba2d84ce7c5f Reviewed-on: https://go-review.googlesource.com/110158 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
28 lines
568 B
Go
28 lines
568 B
Go
// Copyright 2018 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 static
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"testing"
|
|
)
|
|
|
|
func TestStaticIsUpToDate(t *testing.T) {
|
|
oldBuf, err := ioutil.ReadFile("static.go")
|
|
if err != nil {
|
|
t.Errorf("error while reading static.go: %v\n", err)
|
|
}
|
|
|
|
newBuf, err := Generate()
|
|
if err != nil {
|
|
t.Errorf("error while generating static.go: %v\n", err)
|
|
}
|
|
|
|
if bytes.Compare(oldBuf, newBuf) != 0 {
|
|
t.Error("static.go is stale")
|
|
}
|
|
}
|