configdrive: fix root path
This commit is contained in:
parent
facde6609f
commit
d143904aa9
@ -17,7 +17,7 @@ type configDrive struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewDatasource(root string) *configDrive {
|
func NewDatasource(root string) *configDrive {
|
||||||
return &configDrive{path.Join(root, "openstack"), ioutil.ReadFile}
|
return &configDrive{root, ioutil.ReadFile}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cd *configDrive) IsAvailable() bool {
|
func (cd *configDrive) IsAvailable() bool {
|
||||||
|
@ -112,3 +112,24 @@ func TestCDConfigRoot(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestNewDatasource(t *testing.T) {
|
||||||
|
for _, tt := range []struct {
|
||||||
|
root string
|
||||||
|
expectRoot string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
root: "",
|
||||||
|
expectRoot: "",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
root: "/media/configdrive",
|
||||||
|
expectRoot: "/media/configdrive",
|
||||||
|
},
|
||||||
|
} {
|
||||||
|
service := NewDatasource(tt.root)
|
||||||
|
if service.root != tt.expectRoot {
|
||||||
|
t.Fatalf("bad root (%q): want %q, got %q", tt.root, tt.expectRoot, service.root)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user