Skip to content

Instantly share code, notes, and snippets.

@alaypatel07
Created August 23, 2020 16:16
Show Gist options
  • Save alaypatel07/cc2ffc1d20e84f7a214cdb15d90debaf to your computer and use it in GitHub Desktop.
Save alaypatel07/cc2ffc1d20e84f7a214cdb15d90debaf to your computer and use it in GitHub Desktop.
/*
Copyright 2019 Red Hat Inc.
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 v1alpha1
import (
golog "log"
"os"
"path/filepath"
"sigs.k8s.io/controller-runtime/pkg/client/fake"
"strconv"
"testing"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/envtest"
)
var cfg *rest.Config
var c client.Client
func TestMain(m *testing.M) {
t := &envtest.Environment{
CRDDirectoryPaths: []string{filepath.Join("..", "..", "..", "..", "config", "crds")},
}
err := SchemeBuilder.AddToScheme(scheme.Scheme)
if err != nil {
golog.Fatal(err)
}
setupControlPlane := os.Getenv("SETUP_CONTROL_PLANE")
s, _ := strconv.ParseBool(setupControlPlane)
if s {
if cfg, err = t.Start(); err != nil {
golog.Fatal(err)
}
}
c = fake.NewFakeClient()
if s {
if c, err = client.New(cfg, client.Options{Scheme: scheme.Scheme}); err != nil {
golog.Fatal(err)
}
}
code := m.Run()
if s {
t.Stop()
}
os.Exit(code)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment