github.com/theishshah/operator-sdk@v0.6.0/pkg/scaffold/types_test.go (about)

     1  // Copyright 2018 The Operator-SDK Authors
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package scaffold
    16  
    17  import (
    18  	"testing"
    19  
    20  	"github.com/operator-framework/operator-sdk/internal/util/diffutil"
    21  )
    22  
    23  func TestTypes(t *testing.T) {
    24  	r, err := NewResource(appApiVersion, appKind)
    25  	if err != nil {
    26  		t.Fatal(err)
    27  	}
    28  	s, buf := setupScaffoldAndWriter()
    29  	err = s.Execute(appConfig, &Types{Resource: r})
    30  	if err != nil {
    31  		t.Fatalf("Failed to execute the scaffold: (%v)", err)
    32  	}
    33  
    34  	if typesExp != buf.String() {
    35  		diffs := diffutil.Diff(typesExp, buf.String())
    36  		t.Fatalf("Expected vs actual differs.\n%v", diffs)
    37  	}
    38  }
    39  
    40  const typesExp = `package v1alpha1
    41  
    42  import (
    43  	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    44  )
    45  
    46  // EDIT THIS FILE!  THIS IS SCAFFOLDING FOR YOU TO OWN!
    47  // NOTE: json tags are required.  Any new fields you add must have json tags for the fields to be serialized.
    48  
    49  // AppServiceSpec defines the desired state of AppService
    50  // +k8s:openapi-gen=true
    51  type AppServiceSpec struct {
    52  	// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
    53  	// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file
    54  	// Add custom validation using kubebuilder tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html
    55  }
    56  
    57  // AppServiceStatus defines the observed state of AppService
    58  // +k8s:openapi-gen=true
    59  type AppServiceStatus struct {
    60  	// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
    61  	// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file
    62  	// Add custom validation using kubebuilder tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html
    63  }
    64  
    65  // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    66  
    67  // AppService is the Schema for the appservices API
    68  // +k8s:openapi-gen=true
    69  type AppService struct {
    70  	metav1.TypeMeta   ` + "`" + `json:",inline"` + "`" + `
    71  	metav1.ObjectMeta ` + "`" + `json:"metadata,omitempty"` + "`" + `
    72  
    73  	Spec   AppServiceSpec   ` + "`" + `json:"spec,omitempty"` + "`" + `
    74  	Status AppServiceStatus ` + "`" + `json:"status,omitempty"` + "`" + `
    75  }
    76  
    77  // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    78  
    79  // AppServiceList contains a list of AppService
    80  type AppServiceList struct {
    81  	metav1.TypeMeta ` + "`" + `json:",inline"` + "`" + `
    82  	metav1.ListMeta ` + "`" + `json:"metadata,omitempty"` + "`" + `
    83  	Items           []AppService ` + "`" + `json:"items"` + "`" + `
    84  }
    85  
    86  func init() {
    87  	SchemeBuilder.Register(&AppService{}, &AppServiceList{})
    88  }
    89  `