blob: dfbc6176b20017dda45fcfd3d78713cefab93eac [file] [log] [blame]
// Licensed to Apache Software Foundation (ASF) under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Apache Software Foundation (ASF) licenses this file to you 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.
//
package config
import "github.com/apache/skywalking-infra-e2e/internal/util"
// E2EConfig corresponds to configuration file e2e.yaml.
type E2EConfig struct {
Setup Setup `yaml:"setup"`
Cleanup Cleanup `yaml:"cleanup"`
Trigger Trigger `yaml:"trigger"`
Verify []VerifyCase `yaml:"verify"`
}
type Setup struct {
Env string `yaml:"env"`
File string `yaml:"file"`
Steps []Step `yaml:"steps"`
Timeout int `yaml:"timeout"`
}
type Cleanup struct {
On string `yaml:"on"`
}
type Step struct {
Name string `yaml:"name"`
Path string `yaml:"path"`
Command string `yaml:"command"`
Waits []Wait `yaml:"wait"`
}
func (s *Setup) GetFile() string {
return util.ResolveAbs(s.File)
}
type Manifest struct {
Path string `yaml:"path"`
Waits []Wait `yaml:"wait"`
}
type Run struct {
Command string `yaml:"command"`
Waits []Wait `yaml:"wait"`
}
type Wait struct {
Namespace string `yaml:"namespace"`
Resource string `yaml:"resource"`
LabelSelector string `yaml:"label-selector"`
For string `yaml:"for"`
}
type Trigger struct {
Action string `yaml:"action"`
Interval string `yaml:"interval"`
Times int `yaml:"times"`
URL string `yaml:"url"`
Method string `yaml:"method"`
}
type VerifyCase struct {
Query string `yaml:"query"`
Actual string `yaml:"actual"`
Expected string `yaml:"expected"`
}
// GetActual resolves the absolute file path of the actual data file.
func (v *VerifyCase) GetActual() string {
return util.ResolveAbs(v.Actual)
}
// GetExpected resolves the absolute file path of the expected data file.
func (v *VerifyCase) GetExpected() string {
return util.ResolveAbs(v.Expected)
}