blob: 199e066403c476b39518bdf83b7a5c76fc304001 [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 common
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"testing"
)
func TestCodegenImplDotGo(t *testing.T) {
path, err := os.Getwd()
if err != nil {
t.Fatalf("error getting cwd: %s", err)
}
identifiersDotGo, err := ioutil.ReadFile(fmt.Sprintf("%s/identifiers.go", path))
if err != nil {
t.Fatalf("error reading identifiers.go in fidl-lsp: %s", err)
}
fidlgenCommonDir := fmt.Sprintf("%s/garnet/go/src/fidl/compiler/backend/common", os.Getenv("FUCHSIA_DIR"))
actualIdentifiersDotGo, err := ioutil.ReadFile(fmt.Sprintf("%s/identifiers.go", fidlgenCommonDir))
if err != nil {
t.Fatalf("error reading identifiers.go in fuchsia.git: %s", err)
}
if bytes.Compare(identifiersDotGo, actualIdentifiersDotGo) != 0 {
t.Fatalf("common/identifers.go is out of date from fuchsia.git, please run copy_fidlgen_common.py")
}
}