|
| 1 | +package parser |
| 2 | + |
| 3 | +import ( |
| 4 | + "net" |
| 5 | + "net/http" |
| 6 | + "net/http/httptest" |
| 7 | + "reflect" |
| 8 | + "testing" |
| 9 | + |
| 10 | + "github.com/devfile/library/pkg/testingutil/filesystem" |
| 11 | + "github.com/devfile/library/pkg/util" |
| 12 | + "github.com/stretchr/testify/assert" |
| 13 | +) |
| 14 | + |
| 15 | +func TestReadAndParseKubernetesYaml(t *testing.T) { |
| 16 | + const serverIP = "127.0.0.1:9080" |
| 17 | + var data []byte |
| 18 | + |
| 19 | + fs := filesystem.DefaultFs{} |
| 20 | + absPath, err := util.GetAbsPath("../../../tests/yamls/resources.yaml") |
| 21 | + if err != nil { |
| 22 | + t.Error(err) |
| 23 | + return |
| 24 | + } |
| 25 | + |
| 26 | + data, err = fs.ReadFile(absPath) |
| 27 | + if err != nil { |
| 28 | + t.Error(err) |
| 29 | + return |
| 30 | + } |
| 31 | + |
| 32 | + // Mocking the YAML file endpoint on a very basic level |
| 33 | + testServer := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
| 34 | + _, err = w.Write(data) |
| 35 | + if err != nil { |
| 36 | + t.Errorf("Unexpected error while writing data: %v", err) |
| 37 | + } |
| 38 | + })) |
| 39 | + // create a listener with the desired port. |
| 40 | + l, err := net.Listen("tcp", serverIP) |
| 41 | + if err != nil { |
| 42 | + t.Errorf("Unexpected error while creating listener: %v", err) |
| 43 | + return |
| 44 | + } |
| 45 | + |
| 46 | + // NewUnstartedServer creates a listener. Close that listener and replace |
| 47 | + // with the one we created. |
| 48 | + testServer.Listener.Close() |
| 49 | + testServer.Listener = l |
| 50 | + |
| 51 | + testServer.Start() |
| 52 | + defer testServer.Close() |
| 53 | + |
| 54 | + badData := append(data, 59) |
| 55 | + |
| 56 | + tests := []struct { |
| 57 | + name string |
| 58 | + src YamlSrc |
| 59 | + fs filesystem.Filesystem |
| 60 | + wantErr bool |
| 61 | + wantDeploymentNames []string |
| 62 | + wantServiceNames []string |
| 63 | + wantRouteNames []string |
| 64 | + wantIngressNames []string |
| 65 | + wantOtherNames []string |
| 66 | + }{ |
| 67 | + { |
| 68 | + name: "Read the YAML from the URL", |
| 69 | + src: YamlSrc{ |
| 70 | + URL: "http://" + serverIP, |
| 71 | + }, |
| 72 | + fs: filesystem.DefaultFs{}, |
| 73 | + wantDeploymentNames: []string{"deploy-sample", "deploy-sample-2"}, |
| 74 | + wantServiceNames: []string{"service-sample", "service-sample-2"}, |
| 75 | + wantRouteNames: []string{"route-sample", "route-sample-2"}, |
| 76 | + wantIngressNames: []string{"ingress-sample", "ingress-sample-2"}, |
| 77 | + wantOtherNames: []string{"pvc-sample", "pvc-sample-2"}, |
| 78 | + }, |
| 79 | + { |
| 80 | + name: "Read the YAML from the Path", |
| 81 | + src: YamlSrc{ |
| 82 | + Path: "../../../tests/yamls/resources.yaml", |
| 83 | + }, |
| 84 | + fs: filesystem.DefaultFs{}, |
| 85 | + wantDeploymentNames: []string{"deploy-sample", "deploy-sample-2"}, |
| 86 | + wantServiceNames: []string{"service-sample", "service-sample-2"}, |
| 87 | + wantRouteNames: []string{"route-sample", "route-sample-2"}, |
| 88 | + wantIngressNames: []string{"ingress-sample", "ingress-sample-2"}, |
| 89 | + wantOtherNames: []string{"pvc-sample", "pvc-sample-2"}, |
| 90 | + }, |
| 91 | + { |
| 92 | + name: "Read the YAML from the Data", |
| 93 | + src: YamlSrc{ |
| 94 | + Data: data, |
| 95 | + }, |
| 96 | + fs: filesystem.DefaultFs{}, |
| 97 | + wantDeploymentNames: []string{"deploy-sample", "deploy-sample-2"}, |
| 98 | + wantServiceNames: []string{"service-sample", "service-sample-2"}, |
| 99 | + wantRouteNames: []string{"route-sample", "route-sample-2"}, |
| 100 | + wantIngressNames: []string{"ingress-sample", "ingress-sample-2"}, |
| 101 | + wantOtherNames: []string{"pvc-sample", "pvc-sample-2"}, |
| 102 | + }, |
| 103 | + { |
| 104 | + name: "Bad URL", |
| 105 | + src: YamlSrc{ |
| 106 | + URL: "http://badurl", |
| 107 | + }, |
| 108 | + fs: filesystem.DefaultFs{}, |
| 109 | + wantErr: true, |
| 110 | + }, |
| 111 | + { |
| 112 | + name: "Bad Path", |
| 113 | + src: YamlSrc{ |
| 114 | + Path: "$%^&", |
| 115 | + }, |
| 116 | + fs: filesystem.DefaultFs{}, |
| 117 | + wantErr: true, |
| 118 | + }, |
| 119 | + { |
| 120 | + name: "Bad Data", |
| 121 | + src: YamlSrc{ |
| 122 | + Data: badData, |
| 123 | + }, |
| 124 | + fs: filesystem.DefaultFs{}, |
| 125 | + wantErr: true, |
| 126 | + }, |
| 127 | + } |
| 128 | + |
| 129 | + for _, tt := range tests { |
| 130 | + t.Run(tt.name, func(t *testing.T) { |
| 131 | + values, err := ReadKubernetesYaml(tt.src, tt.fs) |
| 132 | + if (err != nil) != tt.wantErr { |
| 133 | + t.Errorf("unexpected error: %v", err) |
| 134 | + return |
| 135 | + } |
| 136 | + |
| 137 | + for _, value := range values { |
| 138 | + kubernetesMap := value.(map[string]interface{}) |
| 139 | + |
| 140 | + kind := kubernetesMap["kind"] |
| 141 | + metadataMap := kubernetesMap["metadata"].(map[string]interface{}) |
| 142 | + name := metadataMap["name"] |
| 143 | + |
| 144 | + switch kind { |
| 145 | + case "Deployment": |
| 146 | + assert.Contains(t, tt.wantDeploymentNames, name) |
| 147 | + case "Service": |
| 148 | + assert.Contains(t, tt.wantServiceNames, name) |
| 149 | + case "Route": |
| 150 | + assert.Contains(t, tt.wantRouteNames, name) |
| 151 | + case "Ingress": |
| 152 | + assert.Contains(t, tt.wantIngressNames, name) |
| 153 | + default: |
| 154 | + assert.Contains(t, tt.wantOtherNames, name) |
| 155 | + } |
| 156 | + } |
| 157 | + |
| 158 | + if len(values) > 0 { |
| 159 | + resources, err := ParseKubernetesYaml(values) |
| 160 | + if err != nil { |
| 161 | + t.Error(err) |
| 162 | + return |
| 163 | + } |
| 164 | + |
| 165 | + if reflect.DeepEqual(resources, KubernetesResources{}) { |
| 166 | + t.Error("Kubernetes resources is empty, expected to contain some resources") |
| 167 | + } else { |
| 168 | + deployments := resources.Deployments |
| 169 | + services := resources.Services |
| 170 | + routes := resources.Routes |
| 171 | + ingresses := resources.Ingresses |
| 172 | + |
| 173 | + for _, deploy := range deployments { |
| 174 | + assert.Contains(t, tt.wantDeploymentNames, deploy.Name) |
| 175 | + } |
| 176 | + for _, svc := range services { |
| 177 | + assert.Contains(t, tt.wantServiceNames, svc.Name) |
| 178 | + } |
| 179 | + for _, route := range routes { |
| 180 | + assert.Contains(t, tt.wantRouteNames, route.Name) |
| 181 | + } |
| 182 | + for _, ingress := range ingresses { |
| 183 | + assert.Contains(t, tt.wantIngressNames, ingress.Name) |
| 184 | + } |
| 185 | + } |
| 186 | + } |
| 187 | + }) |
| 188 | + } |
| 189 | +} |
0 commit comments