Kubernetes と対話するコードのテストを作成する場合、テスト環境を実際のクラスターから分離すると有益です。これは、ライブ クラスターを必要とせずに Kubernetes API の動作をシミュレートする偽のクライアントを利用することで実現できます。
次の方法を検討してください。
<code class="go">import ( "fmt" "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" fake "k8s.io/client-go/kubernetes/fake" "time" ) func GetNamespaceCreationTime(namespace string) int64 { clientset, err := kubernetes.NewForConfig(rest.InClusterConfig()) if err != nil { panic(err.Error()) } ns, err := clientset.CoreV1().Namespaces().Get(namespace, metav1.GetOptions{}) if err != nil { panic(err.Error()) } fmt.Printf("%v \n", ns.CreationTimestamp) return (ns.GetCreationTimestamp().Unix()) }</code>
目標は、偽のクライアントを使用してこのメソッドの単体テストを作成することです。
偽のクライアントを使用するには、パラメーターとして kubernetes.Interface を受け入れるように GetNamespaceCreationTime 関数を変更する必要があります。 :
<code class="go">func GetNamespaceCreationTime(kubeClient kubernetes.Interface, namespace string) int64 { ns, err := kubeClient.CoreV1().Namespaces().Get(namespace, metav1.GetOptions{}) if err != nil { panic(err.Error()) } fmt.Printf("%v \n", ns.CreationTimestamp) return (ns.GetCreationTimestamp().Unix()) }</code>
テスト関数では、次のように偽のクライアントセットを作成し、それを GetNamespaceCreationTime メソッドに渡すことができます:
<code class="go">func TestGetNamespaceCreationTime(t *testing.T) { kubeClient := fake.NewSimpleClientset() got := GetNamespaceCreationTime(kubeClient, "default") want := int64(1257894000) nsMock :=kubeClient.CoreV1().Namespaces() nsMock.Create(&v1.Namespace{ ObjectMeta: metav1.ObjectMeta{ Name: "default", CreationTimestamp: metav1.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC), }, }) if got != want { t.Errorf("got %q want %q", got, want) } }</code>
クラスター内構成のスタブを使用した完全なテストは次のようになります:
<code class="go">import ( "fmt" "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" fake "k8s.io/client-go/kubernetes/fake" "k8s.io/client-go/kubernetes" "k8s.io/client-go/rest" "time" ) var getInclusterConfigFunc = rest.InClusterConfig var getNewKubeClientFunc = dynamic.NewForConfig func GetNamespaceCreationTime(kubeClient kubernetes.Interface, namespace string) int64 { ns, err := kubeClient.CoreV1().Namespaces().Get(namespace, metav1.GetOptions{}) if err != nil { panic(err.Error()) } fmt.Printf("%v \n", ns.CreationTimestamp) return (ns.GetCreationTimestamp().Unix()) } func GetClientSet() kubernetes.Interface { config, err := getInclusterConfigFunc() if err != nil { log.Warnf("Could not get in-cluster config: %s", err) return nil, err } client, err := getNewKubeClientFunc(config) if err != nil { log.Warnf("Could not connect to in-cluster API server: %s", err) return nil, err } return client, err } func TestGetNamespaceCreationTime(t *testing.T) { kubeClient := fake.NewSimpleClientset() got := GetNamespaceCreationTime(kubeClient, "default") want := int64(1257894000) nsMock :=kubeClient.CoreV1().Namespaces() nsMock.Create(&v1.Namespace{ ObjectMeta: metav1.ObjectMeta{ Name: "default", CreationTimestamp: metav1.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC), }, }) if got != want { t.Errorf("got %q want %q", got, want) } } func fakeGetInclusterConfig() (*rest.Config, error) { return nil, nil } func fakeGetInclusterConfigWithError() (*rest.Config, error) { return nil, errors.New("fake error getting in-cluster config") } func TestGetInclusterKubeClient(t *testing.T) { origGetInclusterConfig := getInclusterConfigFunc getInclusterConfigFunc = fakeGetInclusterConfig origGetNewKubeClient := getNewKubeClientFunc getNewKubeClientFunc = fakeGetNewKubeClient defer func() { getInclusterConfigFunc = origGetInclusterConfig getNewKubeClientFunc = origGetNewKubeClient }() client, err := GetClientSet() assert.Nil(t, client, "Client is not nil") assert.Nil(t, err, "error is not nil") } func TestGetInclusterKubeClient_ConfigError(t *testing.T) { origGetInclusterConfig := getInclusterConfigFunc getInclusterConfigFunc = fakeGetInclusterConfigWithError defer func() { getInclusterConfigFunc = origGetInclusterConfig }() client, err := GetClientSet() assert.Nil(t, client, "Client is not nil") assert.NotNil(t, err, "error is nil") }</code>
以上がKubernetes 統合コードの単体テストに偽のクライアントを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。