blob: cfb5e63acde75a0e7f25cf47b52ef030f8961eb8 [file] [log] [blame]
// Copyright 2021 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.
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.33.0
// protoc v5.26.1
// source: go.chromium.org/luci/resultdb/proto/v1/failure_reason.proto
package resultpb
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
// Information about why a test failed. This information may be displayed
// to developers in result viewing UIs and will also be used to cluster
// similar failures together.
// For example, this will contain assertion failure messages and stack traces.
type FailureReason struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// The error message that ultimately caused the test to fail. This should
// only be the error message and should not include any stack traces.
// An example would be the message from an Exception in a Java test.
// In the case that a test failed due to multiple expectation failures, any
// immediately fatal failure should be chosen, or otherwise the first
// expectation failure.
// If this field is empty, other fields (including those from the TestResult)
// may be used to cluster the failure instead.
//
// The size of the message must be equal to or smaller than 1024 bytes in
// UTF-8.
PrimaryErrorMessage string `protobuf:"bytes,1,opt,name=primary_error_message,json=primaryErrorMessage,proto3" json:"primary_error_message,omitempty"`
// The error(s) that caused the test to fail.
//
// If there is more than one error (e.g. due to multiple expectation failures),
// a stable sorting should be used. A recommended form of stable sorting is:
// - Fatal errors (errors that cause the test to terminate immediately first,
// then
// - Within fatal/non-fatal errors, sort by chronological order
// (earliest error first).
//
// Where this field is populated, errors[0].message shall match
// primary_error_message.
//
// The total combined size of all errors (as measured by proto.Size()) must
// not exceed 3,172 bytes.
Errors []*FailureReason_Error `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
// The number of errors that are truncated from the errors list above due to
// the size limits.
TruncatedErrorsCount int32 `protobuf:"varint,3,opt,name=truncated_errors_count,json=truncatedErrorsCount,proto3" json:"truncated_errors_count,omitempty"`
}
func (x *FailureReason) Reset() {
*x = FailureReason{}
if protoimpl.UnsafeEnabled {
mi := &file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FailureReason) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FailureReason) ProtoMessage() {}
func (x *FailureReason) ProtoReflect() protoreflect.Message {
mi := &file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FailureReason.ProtoReflect.Descriptor instead.
func (*FailureReason) Descriptor() ([]byte, []int) {
return file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescGZIP(), []int{0}
}
func (x *FailureReason) GetPrimaryErrorMessage() string {
if x != nil {
return x.PrimaryErrorMessage
}
return ""
}
func (x *FailureReason) GetErrors() []*FailureReason_Error {
if x != nil {
return x.Errors
}
return nil
}
func (x *FailureReason) GetTruncatedErrorsCount() int32 {
if x != nil {
return x.TruncatedErrorsCount
}
return 0
}
// Error represents a problem that caused a test to fail, such as a crash
// or expectation failure.
type FailureReason_Error struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// The error message. This should only be the error message and
// should not include any stack traces. An example would be the
// message from an Exception in a Java test.
//
// This message may be used to cluster related failures together.
//
// The size of the message must be equal to or smaller than 1024 bytes in
// UTF-8.
Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
}
func (x *FailureReason_Error) Reset() {
*x = FailureReason_Error{}
if protoimpl.UnsafeEnabled {
mi := &file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FailureReason_Error) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FailureReason_Error) ProtoMessage() {}
func (x *FailureReason_Error) ProtoReflect() protoreflect.Message {
mi := &file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FailureReason_Error.ProtoReflect.Descriptor instead.
func (*FailureReason_Error) Descriptor() ([]byte, []int) {
return file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescGZIP(), []int{0, 0}
}
func (x *FailureReason_Error) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
var File_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto protoreflect.FileDescriptor
var file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x6c, 0x75, 0x63, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x64, 0x62, 0x2f,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x6c,
0x75, 0x63, 0x69, 0x2e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x22,
0xdb, 0x01, 0x0a, 0x0d, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f,
0x6e, 0x12, 0x32, 0x0a, 0x15, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x13, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x65,
0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x3d, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18,
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6c, 0x75, 0x63, 0x69, 0x2e, 0x72, 0x65, 0x73,
0x75, 0x6c, 0x74, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x06, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x12, 0x34, 0x0a, 0x16, 0x74, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65,
0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
0x20, 0x01, 0x28, 0x05, 0x52, 0x14, 0x74, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65, 0x64, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x21, 0x0a, 0x05, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x42, 0x31, 0x5a,
0x2f, 0x67, 0x6f, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x6c, 0x75, 0x63, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x64, 0x62, 0x2f, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x70, 0x62,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescOnce sync.Once
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescData = file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDesc
)
func file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescGZIP() []byte {
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescOnce.Do(func() {
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescData)
})
return file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDescData
}
var file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_goTypes = []interface{}{
(*FailureReason)(nil), // 0: luci.resultdb.v1.FailureReason
(*FailureReason_Error)(nil), // 1: luci.resultdb.v1.FailureReason.Error
}
var file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_depIdxs = []int32{
1, // 0: luci.resultdb.v1.FailureReason.errors:type_name -> luci.resultdb.v1.FailureReason.Error
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_init() }
func file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_init() {
if File_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FailureReason); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FailureReason_Error); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_goTypes,
DependencyIndexes: file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_depIdxs,
MessageInfos: file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_msgTypes,
}.Build()
File_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto = out.File
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_rawDesc = nil
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_goTypes = nil
file_go_chromium_org_luci_resultdb_proto_v1_failure_reason_proto_depIdxs = nil
}