mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
35 lines
702 B
Go
35 lines
702 B
Go
package api
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/go-openapi/loads"
|
|
"github.com/go-openapi/spec"
|
|
)
|
|
|
|
// TestApi Validates the api description in the root meets the swagger/openapi spec
|
|
func TestApiSchemaValidation(t *testing.T) {
|
|
dir, err := os.Getwd()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
fpath := dir + "/../api-docs.yml"
|
|
print(fpath)
|
|
document, err := loads.Spec(fpath)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
spc := spec.ExpandOptions{RelativeBase: fpath}
|
|
_, err = document.Expanded(&spc)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// this is broken right now, use cli `swagger validate ./api-docs.yml`
|
|
//if err := validate.Spec(document, strfmt.Default); err != nil {
|
|
// t.Fatal(err)
|
|
//}
|
|
}
|