api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
// Copyright 2018 Prometheus Team
|
2015-10-11 15:24:49 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-09-29 20:40:44 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2015-09-30 14:13:00 +00:00
|
|
|
"fmt"
|
2015-10-02 12:10:04 +00:00
|
|
|
"net"
|
2015-09-29 20:40:44 +00:00
|
|
|
"net/http"
|
2015-09-30 14:13:00 +00:00
|
|
|
"reflect"
|
2018-02-27 17:18:53 +00:00
|
|
|
"sync"
|
2015-09-30 14:13:00 +00:00
|
|
|
"time"
|
|
|
|
|
2019-06-18 13:34:46 +00:00
|
|
|
"github.com/go-openapi/strfmt"
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
|
2019-03-12 16:11:23 +00:00
|
|
|
"github.com/prometheus/alertmanager/api/v2/models"
|
2019-06-18 13:34:46 +00:00
|
|
|
"github.com/prometheus/alertmanager/notify/webhook"
|
2015-09-29 20:40:44 +00:00
|
|
|
)
|
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
// At is a convenience method to allow for declarative syntax of Acceptance
|
|
|
|
// test definitions.
|
|
|
|
func At(ts float64) float64 {
|
|
|
|
return ts
|
|
|
|
}
|
|
|
|
|
|
|
|
type Interval struct {
|
|
|
|
start, end float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (iv Interval) String() string {
|
|
|
|
return fmt.Sprintf("[%v,%v]", iv.start, iv.end)
|
2015-09-29 20:40:44 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
func (iv Interval) contains(f float64) bool {
|
|
|
|
return f >= iv.start && f <= iv.end
|
|
|
|
}
|
|
|
|
|
|
|
|
// Between is a convenience constructor for an interval for declarative syntax
|
|
|
|
// of Acceptance test definitions.
|
|
|
|
func Between(start, end float64) Interval {
|
|
|
|
return Interval{start: start, end: end}
|
|
|
|
}
|
|
|
|
|
2015-10-01 18:58:46 +00:00
|
|
|
// TestSilence models a model.Silence with relative times.
|
|
|
|
type TestSilence struct {
|
2018-02-27 17:18:53 +00:00
|
|
|
id string
|
2015-10-01 18:58:46 +00:00
|
|
|
match []string
|
|
|
|
matchRE []string
|
|
|
|
startsAt, endsAt float64
|
2018-02-27 17:18:53 +00:00
|
|
|
|
|
|
|
mtx sync.RWMutex
|
2015-10-01 18:58:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Silence creates a new TestSilence active for the relative interval given
|
|
|
|
// by start and end.
|
|
|
|
func Silence(start, end float64) *TestSilence {
|
|
|
|
return &TestSilence{
|
|
|
|
startsAt: start,
|
|
|
|
endsAt: end,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Match adds a new plain matcher to the silence.
|
|
|
|
func (s *TestSilence) Match(v ...string) *TestSilence {
|
|
|
|
s.match = append(s.match, v...)
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// MatchRE adds a new regex matcher to the silence
|
|
|
|
func (s *TestSilence) MatchRE(v ...string) *TestSilence {
|
|
|
|
if len(v)%2 == 1 {
|
|
|
|
panic("bad key/values")
|
|
|
|
}
|
|
|
|
s.matchRE = append(s.matchRE, v...)
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2018-02-27 17:18:53 +00:00
|
|
|
// SetID sets the silence ID.
|
|
|
|
func (s *TestSilence) SetID(ID string) {
|
|
|
|
s.mtx.Lock()
|
|
|
|
defer s.mtx.Unlock()
|
|
|
|
s.id = ID
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID gets the silence ID.
|
|
|
|
func (s *TestSilence) ID() string {
|
|
|
|
s.mtx.RLock()
|
|
|
|
defer s.mtx.RUnlock()
|
|
|
|
return s.id
|
|
|
|
}
|
|
|
|
|
2015-10-01 18:58:46 +00:00
|
|
|
// nativeSilence converts the declared test silence into a regular
|
|
|
|
// silence with resolved times.
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
func (s *TestSilence) nativeSilence(opts *AcceptanceOpts) *models.Silence {
|
|
|
|
nsil := &models.Silence{}
|
2015-10-01 18:58:46 +00:00
|
|
|
|
2019-06-20 15:37:08 +00:00
|
|
|
t := false
|
2015-11-20 14:10:38 +00:00
|
|
|
for i := 0; i < len(s.match); i += 2 {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
nsil.Matchers = append(nsil.Matchers, &models.Matcher{
|
2019-06-20 15:37:08 +00:00
|
|
|
Name: &s.match[i],
|
|
|
|
Value: &s.match[i+1],
|
|
|
|
IsRegex: &t,
|
2015-10-01 18:58:46 +00:00
|
|
|
})
|
|
|
|
}
|
2019-06-20 15:37:08 +00:00
|
|
|
t = true
|
2015-11-20 14:10:38 +00:00
|
|
|
for i := 0; i < len(s.matchRE); i += 2 {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
nsil.Matchers = append(nsil.Matchers, &models.Matcher{
|
2018-11-08 17:46:04 +00:00
|
|
|
Name: &s.matchRE[i],
|
|
|
|
Value: &s.matchRE[i+1],
|
|
|
|
IsRegex: &t,
|
2015-10-01 18:58:46 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-11-20 14:10:38 +00:00
|
|
|
if s.startsAt > 0 {
|
2018-11-08 17:46:04 +00:00
|
|
|
start := strfmt.DateTime(opts.expandTime(s.startsAt))
|
|
|
|
nsil.StartsAt = &start
|
2015-10-01 18:58:46 +00:00
|
|
|
}
|
2015-11-20 14:10:38 +00:00
|
|
|
if s.endsAt > 0 {
|
2018-11-08 17:46:04 +00:00
|
|
|
end := strfmt.DateTime(opts.expandTime(s.endsAt))
|
|
|
|
nsil.EndsAt = &end
|
2015-10-01 18:58:46 +00:00
|
|
|
}
|
2018-11-08 17:46:04 +00:00
|
|
|
comment := "some comment"
|
|
|
|
createdBy := "admin@example.com"
|
|
|
|
nsil.Comment = &comment
|
|
|
|
nsil.CreatedBy = &createdBy
|
2015-12-09 17:21:06 +00:00
|
|
|
|
2015-10-01 18:58:46 +00:00
|
|
|
return nsil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestAlert models a model.Alert with relative times.
|
|
|
|
type TestAlert struct {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
labels models.LabelSet
|
|
|
|
annotations models.LabelSet
|
2015-10-01 18:58:46 +00:00
|
|
|
startsAt, endsAt float64
|
|
|
|
}
|
|
|
|
|
2015-11-20 14:10:38 +00:00
|
|
|
// Alert creates a new alert declaration with the given key/value pairs
|
2015-09-30 14:13:00 +00:00
|
|
|
// as identifying labels.
|
|
|
|
func Alert(keyval ...interface{}) *TestAlert {
|
|
|
|
if len(keyval)%2 == 1 {
|
|
|
|
panic("bad key/values")
|
|
|
|
}
|
|
|
|
a := &TestAlert{
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
labels: models.LabelSet{},
|
|
|
|
annotations: models.LabelSet{},
|
2015-09-30 14:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(keyval); i += 2 {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
ln := keyval[i].(string)
|
|
|
|
lv := keyval[i+1].(string)
|
2015-09-30 14:13:00 +00:00
|
|
|
|
|
|
|
a.labels[ln] = lv
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// nativeAlert converts the declared test alert into a full alert based
|
2018-11-08 17:46:04 +00:00
|
|
|
// on the given parameters.
|
2018-11-20 15:45:56 +00:00
|
|
|
func (a *TestAlert) nativeAlert(opts *AcceptanceOpts) *models.GettableAlert {
|
|
|
|
na := &models.GettableAlert{
|
2018-11-28 12:08:48 +00:00
|
|
|
Alert: models.Alert{
|
|
|
|
Labels: a.labels,
|
|
|
|
},
|
2015-10-01 13:46:39 +00:00
|
|
|
Annotations: a.annotations,
|
2018-11-20 15:45:56 +00:00
|
|
|
StartsAt: &strfmt.DateTime{},
|
|
|
|
EndsAt: &strfmt.DateTime{},
|
2015-10-01 13:46:39 +00:00
|
|
|
}
|
2015-10-01 12:53:49 +00:00
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
if a.startsAt > 0 {
|
2018-11-08 17:46:04 +00:00
|
|
|
start := strfmt.DateTime(opts.expandTime(a.startsAt))
|
2018-11-20 15:45:56 +00:00
|
|
|
na.StartsAt = &start
|
2015-09-30 14:13:00 +00:00
|
|
|
}
|
|
|
|
if a.endsAt > 0 {
|
2018-11-20 15:45:56 +00:00
|
|
|
end := strfmt.DateTime(opts.expandTime(a.endsAt))
|
|
|
|
na.EndsAt = &end
|
2015-09-30 14:13:00 +00:00
|
|
|
}
|
2018-11-20 15:45:56 +00:00
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
return na
|
|
|
|
}
|
|
|
|
|
|
|
|
// Annotate the alert with the given key/value pairs.
|
|
|
|
func (a *TestAlert) Annotate(keyval ...interface{}) *TestAlert {
|
|
|
|
if len(keyval)%2 == 1 {
|
|
|
|
panic("bad key/values")
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(keyval); i += 2 {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
ln := keyval[i].(string)
|
|
|
|
lv := keyval[i+1].(string)
|
2015-09-30 14:13:00 +00:00
|
|
|
|
|
|
|
a.annotations[ln] = lv
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// Active declares the relative activity time for this alert. It
|
|
|
|
// must be a single starting value or two values where the second value
|
|
|
|
// declares the resolved time.
|
|
|
|
func (a *TestAlert) Active(tss ...float64) *TestAlert {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
if len(tss) > 2 || len(tss) == 0 {
|
|
|
|
panic("only one or two timestamps allowed")
|
|
|
|
}
|
|
|
|
if len(tss) == 2 {
|
|
|
|
a.endsAt = tss[1]
|
|
|
|
}
|
|
|
|
a.startsAt = tss[0]
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2018-11-20 15:45:56 +00:00
|
|
|
func equalAlerts(a, b *models.GettableAlert, opts *AcceptanceOpts) bool {
|
2015-09-30 14:13:00 +00:00
|
|
|
if !reflect.DeepEqual(a.Labels, b.Labels) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(a.Annotations, b.Annotations) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-11-20 15:45:56 +00:00
|
|
|
if !equalTime(time.Time(*a.StartsAt), time.Time(*b.StartsAt), opts) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (a.EndsAt == nil) != (b.EndsAt == nil) {
|
2015-09-30 14:13:00 +00:00
|
|
|
return false
|
|
|
|
}
|
2018-11-20 15:45:56 +00:00
|
|
|
if !(a.EndsAt == nil) && !(b.EndsAt == nil) && !equalTime(time.Time(*a.EndsAt), time.Time(*b.EndsAt), opts) {
|
2015-09-30 14:13:00 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func equalTime(a, b time.Time, opts *AcceptanceOpts) bool {
|
|
|
|
if a.IsZero() != b.IsZero() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
diff := a.Sub(b)
|
|
|
|
if diff < 0 {
|
|
|
|
diff = -diff
|
|
|
|
}
|
|
|
|
return diff <= opts.Tolerance
|
|
|
|
}
|
|
|
|
|
|
|
|
type MockWebhook struct {
|
2015-10-12 05:28:25 +00:00
|
|
|
opts *AcceptanceOpts
|
2015-09-30 14:13:00 +00:00
|
|
|
collector *Collector
|
2015-10-02 12:10:04 +00:00
|
|
|
listener net.Listener
|
2015-10-12 05:28:25 +00:00
|
|
|
|
2018-08-04 21:04:00 +00:00
|
|
|
// Func is called early on when retrieving a notification by an
|
|
|
|
// Alertmanager. If Func returns true, the given notification is dropped.
|
|
|
|
// See sample usage in `send_test.go/TestRetry()`.
|
2015-10-12 05:28:25 +00:00
|
|
|
Func func(timestamp float64) bool
|
2015-09-30 14:13:00 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 12:10:04 +00:00
|
|
|
func NewWebhook(c *Collector) *MockWebhook {
|
2016-06-04 07:18:43 +00:00
|
|
|
l, err := net.Listen("tcp4", "localhost:0")
|
2015-10-02 12:10:04 +00:00
|
|
|
if err != nil {
|
|
|
|
// TODO(fabxc): if shutdown of mock destinations ever becomes a concern
|
|
|
|
// we want to shut them down after test completion. Then we might want to
|
|
|
|
// log the error properly, too.
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
wh := &MockWebhook{
|
|
|
|
listener: l,
|
2015-09-29 20:40:44 +00:00
|
|
|
collector: c,
|
2017-04-18 09:50:18 +00:00
|
|
|
opts: c.opts,
|
2015-09-30 14:13:00 +00:00
|
|
|
}
|
2018-08-14 17:14:00 +00:00
|
|
|
go func() {
|
|
|
|
if err := http.Serve(l, wh); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}()
|
2015-09-30 14:13:00 +00:00
|
|
|
|
2015-10-02 12:10:04 +00:00
|
|
|
return wh
|
2015-09-29 20:40:44 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 14:13:00 +00:00
|
|
|
func (ws *MockWebhook) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
2015-10-12 05:28:25 +00:00
|
|
|
// Inject Func if it exists.
|
|
|
|
if ws.Func != nil {
|
|
|
|
if ws.Func(ws.opts.relativeTime(time.Now())) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-29 20:40:44 +00:00
|
|
|
dec := json.NewDecoder(req.Body)
|
|
|
|
defer req.Body.Close()
|
|
|
|
|
2019-06-18 13:34:46 +00:00
|
|
|
var v webhook.Message
|
2015-09-29 20:40:44 +00:00
|
|
|
if err := dec.Decode(&v); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2016-02-12 10:00:51 +00:00
|
|
|
// Transform the webhook message alerts back into model.Alerts.
|
2018-11-20 15:45:56 +00:00
|
|
|
var alerts models.GettableAlerts
|
2016-02-12 10:00:51 +00:00
|
|
|
for _, a := range v.Alerts {
|
|
|
|
var (
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
labels = models.LabelSet{}
|
|
|
|
annotations = models.LabelSet{}
|
2016-02-12 10:00:51 +00:00
|
|
|
)
|
|
|
|
for k, v := range a.Labels {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
labels[k] = v
|
2016-02-12 10:00:51 +00:00
|
|
|
}
|
|
|
|
for k, v := range a.Annotations {
|
api: Implement OpenAPI generated Alertmanager API V2
The current Alertmanager API v1 is undocumented and written by hand.
This patch introduces a new Alertmanager API - v2. The API is fully
generated via an OpenAPI 2.0 [1] specification (see
`api/v2/openapi.yaml`) with the exception of the http handlers itself.
Pros:
- Generated server code
- Ability to generate clients in all major languages
(Go, Java, JS, Python, Ruby, Haskell, *elm* [3] ...)
- Strict contract (OpenAPI spec) between server and clients.
- Instant feedback on frontend-breaking changes, due to strictly
typed frontend language elm.
- Generated documentation (See Alertmanager online Swagger UI [4])
Cons:
- Dependency on open api ecosystem including go-swagger [2]
In addition this patch includes the following changes.
- README.md: Add API section
- test: Duplicate acceptance test to API v1 & API v2 version
The Alertmanager acceptance test framework has a decent test coverage
on the Alertmanager API. Introducing the Alertmanager API v2 does not go
hand in hand with deprecating API v1. They should live alongside each
other for a couple of minor Alertmanager versions.
Instead of porting the acceptance test framework to use the new API v2,
this patch duplicates the acceptance tests, one using the API v1, the
other API v2.
Once API v1 is removed we can simply remove `test/with_api_v1` and bring
`test/with_api_v2` to `test/`.
[1]
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md
[2] https://github.com/go-swagger/go-swagger/
[3] https://github.com/ahultgren/swagger-elm
[4]
http://petstore.swagger.io/?url=https://raw.githubusercontent.com/mxinden/alertmanager/apiv2/api/v2/openapi.yaml
Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
2018-04-26 06:12:49 +00:00
|
|
|
annotations[k] = v
|
2016-02-12 10:00:51 +00:00
|
|
|
}
|
|
|
|
|
2018-11-08 17:46:04 +00:00
|
|
|
start := strfmt.DateTime(a.StartsAt)
|
2018-11-20 15:45:56 +00:00
|
|
|
end := strfmt.DateTime(a.EndsAt)
|
2018-11-08 17:46:04 +00:00
|
|
|
|
2018-11-20 15:45:56 +00:00
|
|
|
alerts = append(alerts, &models.GettableAlert{
|
2018-11-28 12:08:48 +00:00
|
|
|
Alert: models.Alert{
|
|
|
|
Labels: labels,
|
|
|
|
GeneratorURL: strfmt.URI(a.GeneratorURL),
|
|
|
|
},
|
|
|
|
Annotations: annotations,
|
|
|
|
StartsAt: &start,
|
|
|
|
EndsAt: &end,
|
2016-02-12 10:00:51 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
ws.collector.add(alerts...)
|
2015-09-29 20:40:44 +00:00
|
|
|
}
|
2015-10-02 12:10:04 +00:00
|
|
|
|
|
|
|
func (ws *MockWebhook) Address() string {
|
|
|
|
return ws.listener.Addr().String()
|
|
|
|
}
|