...

Source file src/helm.sh/helm/v3/pkg/plugin/installer/installer_test.go

Documentation: helm.sh/helm/v3/pkg/plugin/installer

     1  /*
     2  Copyright The Helm Authors.
     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  
    16  package installer
    17  
    18  import "testing"
    19  
    20  func TestIsRemoteHTTPArchive(t *testing.T) {
    21  	srv := mockArchiveServer()
    22  	defer srv.Close()
    23  	source := srv.URL + "/plugins/fake-plugin-0.0.1.tar.gz"
    24  
    25  	if isRemoteHTTPArchive("/not/a/URL") {
    26  		t.Errorf("Expected non-URL to return false")
    27  	}
    28  
    29  	if isRemoteHTTPArchive("https://127.0.0.1:123/fake/plugin-1.2.3.tgz") {
    30  		t.Errorf("Bad URL should not have succeeded.")
    31  	}
    32  
    33  	if !isRemoteHTTPArchive(source) {
    34  		t.Errorf("Expected %q to be a valid archive URL", source)
    35  	}
    36  
    37  	if isRemoteHTTPArchive(source + "-not-an-extension") {
    38  		t.Error("Expected media type match to fail")
    39  	}
    40  }
    41  

View as plain text