2015-01-25 06:32:33 +03:00
|
|
|
// Copyright 2015 CoreOS, Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
2014-10-18 02:36:22 +04:00
|
|
|
|
2014-07-11 01:42:28 +04:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strings"
|
2014-07-11 22:27:05 +04:00
|
|
|
"syscall"
|
2014-07-11 01:42:28 +04:00
|
|
|
"testing"
|
2014-09-22 06:22:27 +04:00
|
|
|
|
|
|
|
"github.com/coreos/coreos-cloudinit/config"
|
2014-07-11 01:42:28 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
base = "# a file\nFOO=base\n\nBAR= hi there\n"
|
|
|
|
baseNoNewline = "# a file\nFOO=base\n\nBAR= hi there"
|
|
|
|
baseDos = "# a file\r\nFOO=base\r\n\r\nBAR= hi there\r\n"
|
|
|
|
expectUpdate = "# a file\nFOO=test\n\nBAR= hi there\nNEW=a value\n"
|
|
|
|
expectCreate = "FOO=test\nNEW=a value\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
valueUpdate = map[string]string{
|
|
|
|
"FOO": "test",
|
|
|
|
"NEW": "a value",
|
|
|
|
}
|
|
|
|
valueNoop = map[string]string{
|
|
|
|
"FOO": "base",
|
|
|
|
}
|
|
|
|
valueEmpty = map[string]string{}
|
|
|
|
valueInvalid = map[string]string{
|
|
|
|
"FOO-X": "test",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestWriteEnvFileUpdate(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(base), 0644)
|
|
|
|
|
2014-07-11 22:27:05 +04:00
|
|
|
oldStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 01:42:28 +04:00
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueUpdate,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != expectUpdate {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
2014-07-11 22:27:05 +04:00
|
|
|
|
|
|
|
newStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if oldStat.Sys().(*syscall.Stat_t).Ino == newStat.Sys().(*syscall.Stat_t).Ino {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("File was not replaced: %s", fullPath)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteEnvFileUpdateNoNewline(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(baseNoNewline), 0644)
|
|
|
|
|
2014-07-11 22:27:05 +04:00
|
|
|
oldStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 01:42:28 +04:00
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueUpdate,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != expectUpdate {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
2014-07-11 22:27:05 +04:00
|
|
|
|
|
|
|
newStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if oldStat.Sys().(*syscall.Stat_t).Ino == newStat.Sys().(*syscall.Stat_t).Ino {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("File was not replaced: %s", fullPath)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteEnvFileCreate(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueUpdate,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != expectCreate {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteEnvFileNoop(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(base), 0644)
|
|
|
|
|
|
|
|
oldStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueNoop,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != base {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
newStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 22:27:05 +04:00
|
|
|
if oldStat.Sys().(*syscall.Stat_t).Ino != newStat.Sys().(*syscall.Stat_t).Ino {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("File was replaced: %s", fullPath)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteEnvFileUpdateDos(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(baseDos), 0644)
|
|
|
|
|
2014-07-11 22:27:05 +04:00
|
|
|
oldStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 01:42:28 +04:00
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueUpdate,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != expectUpdate {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
2014-07-11 22:27:05 +04:00
|
|
|
|
|
|
|
newStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if oldStat.Sys().(*syscall.Stat_t).Ino == newStat.Sys().(*syscall.Stat_t).Ino {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("File was not replaced: %s", fullPath)
|
2014-07-11 22:27:05 +04:00
|
|
|
}
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// A middle ground noop, values are unchanged but we did have a value.
|
|
|
|
// Seems reasonable to rewrite the file in Unix format anyway.
|
|
|
|
func TestWriteEnvFileDos2Unix(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(baseDos), 0644)
|
|
|
|
|
|
|
|
oldStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueNoop,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != base {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
newStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 22:27:05 +04:00
|
|
|
if oldStat.Sys().(*syscall.Stat_t).Ino == newStat.Sys().(*syscall.Stat_t).Ino {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("File was not replaced: %s", fullPath)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it really is a noop (structure is empty) don't even do dos2unix
|
|
|
|
func TestWriteEnvFileEmpty(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(baseDos), 0644)
|
|
|
|
|
|
|
|
oldStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueEmpty,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to read expected file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(contents) != baseDos {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
newStat, err := os.Stat(fullPath)
|
|
|
|
if err != nil {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("Unable to stat file: %v", err)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
|
2014-07-11 22:27:05 +04:00
|
|
|
if oldStat.Sys().(*syscall.Stat_t).Ino != newStat.Sys().(*syscall.Stat_t).Ino {
|
2014-07-12 02:38:04 +04:00
|
|
|
t.Fatalf("File was replaced: %s", fullPath)
|
2014-07-11 01:42:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no point in creating empty files
|
|
|
|
func TestWriteEnvFileEmptyNoCreate(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueEmpty,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("WriteFile failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadFile(fullPath)
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("File has incorrect contents: %q", contents)
|
|
|
|
} else if !os.IsNotExist(err) {
|
|
|
|
t.Fatalf("Unexpected error while reading file: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteEnvFilePermFailure(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
fullPath := path.Join(dir, name)
|
|
|
|
ioutil.WriteFile(fullPath, []byte(base), 0000)
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueUpdate,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if !os.IsPermission(err) {
|
|
|
|
t.Fatalf("Not a pemission denied error: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWriteEnvFileNameFailure(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir(os.TempDir(), "coreos-cloudinit-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to create tempdir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
name := "foo.conf"
|
|
|
|
|
|
|
|
ef := EnvFile{
|
2014-09-22 06:22:27 +04:00
|
|
|
File: &File{config.File{
|
2014-07-11 01:42:28 +04:00
|
|
|
Path: name,
|
2014-09-22 06:22:27 +04:00
|
|
|
}},
|
2014-07-11 01:42:28 +04:00
|
|
|
Vars: valueInvalid,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = WriteEnvFile(&ef, dir)
|
|
|
|
if err == nil || !strings.HasPrefix(err.Error(), "Invalid name") {
|
|
|
|
t.Fatalf("Not an invalid name error: %v", err)
|
|
|
|
}
|
|
|
|
}
|