-
Notifications
You must be signed in to change notification settings - Fork 14
/
broken.go
88 lines (73 loc) · 1.97 KB
/
broken.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* Copyright 2021 Comcast Cable Communications Management, LLC
*
* 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.
*
* SPDX-License-Identifier: Apache-2.0
*/
package dsl
import "fmt"
// Broken is an error that represents a test that is broken (and not
// simpling failing).
type Broken struct {
// ToDo: Consider using an interface.
Err error
}
// Brokenf makes a nice Broken for you.
func Brokenf(format string, args ...interface{}) *Broken {
return NewBroken(fmt.Errorf(format, args...))
}
// NewBroken does exactly what you'd expect.
func NewBroken(err error) *Broken {
return &Broken{
Err: err,
}
}
// IsBroken reports whether the given error is a *Broken. If it is,
// returns it.
//
// This function knows about Errors.
func IsBroken(err error) (*Broken, bool) {
if err == nil {
return nil, false
}
if errs, is := err.(*Errors); is {
return errs.IsBroken()
}
b, is := err.(*Broken)
return b, is
}
// Error makes *Broken into an error.
func (b *Broken) Error() string {
return fmt.Sprintf("Broken: %s", b.Err)
}
func (b *Broken) String() string {
return b.Error()
}
// Failure is an error that does not represent something that's
// broken.
type Failure struct {
Err error
}
func (f *Failure) Error() string {
return string("failure: " + f.Err.Error())
}
func IsFailure(x interface{}) (*Failure, bool) {
f, is := x.(*Failure)
return f, is
}
func Failuref(format string, args ...interface{}) *Failure {
return &Failure{
Err: fmt.Errorf(format, args...),
}
}