blob: a304779d0ce5d75780eea45404475b411b1ddcd0 [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 run
import (
"github.com/apache/skywalking-infra-e2e/commands/cleanup"
"github.com/apache/skywalking-infra-e2e/commands/setup"
"github.com/apache/skywalking-infra-e2e/commands/trigger"
"github.com/apache/skywalking-infra-e2e/commands/verify"
t "github.com/apache/skywalking-infra-e2e/internal/components/trigger"
"github.com/apache/skywalking-infra-e2e/internal/config"
"github.com/apache/skywalking-infra-e2e/internal/constant"
"github.com/apache/skywalking-infra-e2e/internal/logger"
"github.com/spf13/cobra"
)
var Run = &cobra.Command{
Use: "run",
Short: "",
RunE: func(cmd *cobra.Command, args []string) error {
err := runAccordingE2E()
if err != nil {
return err
}
return nil
},
}
func runAccordingE2E() error {
if config.GlobalConfig.Error != nil {
return config.GlobalConfig.Error
}
var action t.Action
stopAction := func() {
if action != nil {
action.Stop()
}
}
// If cleanup.on == Always and there is error in setup step, we should defer cleanup step right now.
cleanupOnCondition := config.GlobalConfig.E2EConfig.Cleanup.On
if cleanupOnCondition == constant.CleanUpAlways {
defer doCleanup(stopAction)
}
// setup part
err := setup.DoSetupAccordingE2E()
if err != nil {
return err
}
logger.Log.Infof("setup part finished successfully")
if cleanupOnCondition != constant.CleanUpAlways {
defer func() {
shouldCleanup := (cleanupOnCondition == constant.CleanUpOnSuccess && err == nil) ||
(cleanupOnCondition == constant.CleanUpOnFailure && err != nil)
if !shouldCleanup {
logger.Log.Infof("don't cleanup according to config")
return
}
doCleanup(stopAction)
}()
}
// trigger part
action, err = trigger.CreateTriggerAction()
if err != nil {
return err
}
if action != nil {
err = <-action.Do()
if err != nil {
return err
}
logger.Log.Infof("trigger part finished successfully")
} else {
logger.Log.Infof("no trigger need to execute")
}
// verify part
err = verify.DoVerifyAccordingConfig()
if err != nil {
return err
}
logger.Log.Infof("verify part finished successfully")
return nil
}
func doCleanup(stopAction func()) {
if stopAction != nil {
stopAction()
}
setup.DoStopSetup()
if err := cleanup.DoCleanupAccordingE2E(); err != nil {
logger.Log.Errorf("cleanup part error: %s", err)
} else {
logger.Log.Infof("cleanup part finished successfully")
}
}