// Copyright (c) 2016-2017,2019 Tigera, Inc. All rights reserved.
//
// 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.

package main

import (
	"flag"
	"os"
	"testing"

	. "github.com/onsi/ginkgo"
	"github.com/onsi/ginkgo/reporters"
	. "github.com/onsi/gomega"
	log "github.com/sirupsen/logrus"

	"github.com/projectcalico/calico/felix/logutils"
	"github.com/projectcalico/calico/libcalico-go/lib/testutils"
)

func init() {
	testutils.HookLogrusForGinkgo()
	logutils.ConfigureEarlyLogging()
	logLevel, err := log.ParseLevel(os.Getenv("K8SFV_LOG_LEVEL"))
	panicIfError(err)
	log.SetLevel(logLevel)
	flag.StringVar(&k8sServerEndpoint, "k8s-api-endpoint", "", "")
	flag.StringVar(&felixIP, "felix-ip", "", "")
	flag.StringVar(&felixHostname, "felix-hostname", "", "")
	flag.StringVar(&prometheusPushURL, "prometheus-push-url", "", "")
	flag.StringVar(&codeLevel, "code-level", "", "")
}

func TestK8sFV(t *testing.T) {
	RegisterFailHandler(Fail)
	// The run-test script runs this file from k8sfv/output.
	nameTypha := ""
	fileTypha := ""
	if os.Getenv("USE_TYPHA") == "true" {
		nameTypha = " (typha)"
		fileTypha = "typha_"
	}
	junitReporter := reporters.NewJUnitReporter("../../report/felix_k8sfv_" + fileTypha + "suite.xml")
	RunSpecsWithDefaultAndCustomReporters(t, "k8sfv tests"+nameTypha, []Reporter{junitReporter})
}
