mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 23:43:27 +01:00
9d151fcdb4
* refactor: Partially break core package into dns, result and ssh packages * refactor: Move core package to config/endpoint * refactor: Fix warning about overlapping imported package name with endpoint variable * refactor: Rename EndpointStatus to Status * refactor: Merge result pkg back into endpoint pkg, because it makes more sense * refactor: Rename parameter r to result in Condition.evaluate * refactor: Rename parameter r to result * refactor: Revert accidental change to endpoint.TypeDNS * refactor: Rename parameter r to result * refactor: Merge util package into endpoint package * refactor: Rename parameter r to result
87 lines
2.4 KiB
Go
87 lines
2.4 KiB
Go
package endpoint
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkCondition_evaluateWithBodyStringAny(b *testing.B) {
|
|
condition := Condition("[BODY].name == any(john.doe, jane.doe)")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"john.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithBodyStringAnyFailure(b *testing.B) {
|
|
condition := Condition("[BODY].name == any(john.doe, jane.doe)")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"bob.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithBodyString(b *testing.B) {
|
|
condition := Condition("[BODY].name == john.doe")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"john.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithBodyStringFailure(b *testing.B) {
|
|
condition := Condition("[BODY].name == john.doe")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"bob.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithBodyStringFailureInvalidPath(b *testing.B) {
|
|
condition := Condition("[BODY].user.name == bob.doe")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"bob.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithBodyStringLen(b *testing.B) {
|
|
condition := Condition("len([BODY].name) == 8")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"john.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithBodyStringLenFailure(b *testing.B) {
|
|
condition := Condition("len([BODY].name) == 8")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{Body: []byte("{\"name\": \"bob.doe\"}")}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithStatus(b *testing.B) {
|
|
condition := Condition("[STATUS] == 200")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{HTTPStatus: 200}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|
|
|
|
func BenchmarkCondition_evaluateWithStatusFailure(b *testing.B) {
|
|
condition := Condition("[STATUS] == 200")
|
|
for n := 0; n < b.N; n++ {
|
|
result := &Result{HTTPStatus: 400}
|
|
condition.evaluate(result, false)
|
|
}
|
|
b.ReportAllocs()
|
|
}
|