blob: 1380e0983d0efedb4b3dced6efd77495f235f981 [file] [log] [blame]
// Copyright 2018 The LUCI Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package buildbucket
import (
"context"
"fmt"
"os"
"path/filepath"
"github.com/golang/protobuf/jsonpb"
buildbucketpb "go.chromium.org/luci/buildbucket/proto"
)
// TestCases are the list of known mock data.
// We put this here instead of _test.go to allow for debug data in dev instances.
// TODO(hinoka): Implement debug view for localhost development.
var TestCases = []string{"linux-rel"}
// GetTestBuild returns a debug build from testdata.
func GetTestBuild(c context.Context, relDir, name string) (*buildbucketpb.Build, error) {
fname := fmt.Sprintf("%s.build.jsonpb", name)
path := filepath.Join(relDir, "testdata", fname)
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()
result := &buildbucketpb.Build{}
return result, jsonpb.Unmarshal(f, result)
}