forked from LaconicNetwork/kompose
There's A LOT happening in this commit, so here's an outline: First off, urfave/cli has been removed in favour of spf13/cobra. With this, comes changes to the formatting as well as the help page for Kompose. Upon converting, I noticed a CLI flag was NOT appearing for OpenShift. Specifically, --deploymentconfig. This has been added with a note that says it is OpenShift only. Exit codes have been fixed. If the conversion / down / up fails for any reason, Kompose will exit with Code 1. --verbose as well as --suppress-warnings can now be set at the same time. app_test.go in the cli directory has been moved to pkg/transformer to better reflect the testing coverage. version.go has been removed and converted to it's own CLI command in conjuction with (most) Go software. A new CLI command has been created. kompose version --dab isn't a conventional way for short-form CLI paramters. This has been shortened to -b for bundle. CLI flags consisting of only two/three letters have been removed due to it being unconventional for CLI. For example, --dc was removed in preference for --deploymentconfig --replicas has been added as an option when using kompose down or kompose up. This has been added as previously in app.go the replica amount was hard-coded as 1. Differentiating names have been used for flags. For example, persistent flags use the name Global (ex. GlobalOut). Command-specific flags have their own names (ex. UpOpt). Closes #239 #253
120 lines
2.5 KiB
Go
120 lines
2.5 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved
|
|
|
|
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 transformer
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestParseVolume(t *testing.T) {
|
|
name1 := "datavolume"
|
|
host1 := "./cache"
|
|
host2 := "~/configs"
|
|
container1 := "/tmp/cache"
|
|
container2 := "/etc/configs/"
|
|
mode := "rw"
|
|
|
|
tests := []struct {
|
|
test, volume, name, host, container, mode string
|
|
}{
|
|
{
|
|
"name:host:container:mode",
|
|
fmt.Sprintf("%s:%s:%s:%s", name1, host1, container1, mode),
|
|
name1,
|
|
host1,
|
|
container1,
|
|
mode,
|
|
},
|
|
{
|
|
"host:container:mode",
|
|
fmt.Sprintf("%s:%s:%s", host2, container2, mode),
|
|
"",
|
|
host2,
|
|
container2,
|
|
mode,
|
|
},
|
|
{
|
|
"name:container:mode",
|
|
fmt.Sprintf("%s:%s:%s", name1, container1, mode),
|
|
name1,
|
|
"",
|
|
container1,
|
|
mode,
|
|
},
|
|
{
|
|
"name:host:container",
|
|
fmt.Sprintf("%s:%s:%s", name1, host1, container1),
|
|
name1,
|
|
host1,
|
|
container1,
|
|
"",
|
|
},
|
|
{
|
|
"host:container",
|
|
fmt.Sprintf("%s:%s", host1, container1),
|
|
"",
|
|
host1,
|
|
container1,
|
|
"",
|
|
},
|
|
{
|
|
"container:mode",
|
|
fmt.Sprintf("%s:%s", container2, mode),
|
|
"",
|
|
"",
|
|
container2,
|
|
mode,
|
|
},
|
|
{
|
|
"name:container",
|
|
fmt.Sprintf("%s:%s", name1, container1),
|
|
name1,
|
|
"",
|
|
container1,
|
|
"",
|
|
},
|
|
{
|
|
"container",
|
|
fmt.Sprintf("%s", container2),
|
|
"",
|
|
"",
|
|
container2,
|
|
"",
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
name, host, container, mode, err := ParseVolume(test.volume)
|
|
if err != nil {
|
|
t.Errorf("In test case %q, returned unexpected error %v", test.test, err)
|
|
}
|
|
if name != test.name {
|
|
t.Errorf("In test case %q, returned volume name %s, expected %s", test.test, name, test.name)
|
|
}
|
|
if host != test.host {
|
|
t.Errorf("In test case %q, returned host path %s, expected %s", test.test, host, test.host)
|
|
}
|
|
if container != test.container {
|
|
t.Errorf("In test case %q, returned container path %s, expected %s", test.test, container, test.container)
|
|
}
|
|
if mode != test.mode {
|
|
t.Errorf("In test case %q, returned access mode %s, expected %s", test.test, mode, test.mode)
|
|
}
|
|
}
|
|
}
|