minio/pkg/utils/config/config_test.go

76 lines
1.9 KiB
Go
Raw Normal View History

2015-02-08 05:54:21 -05:00
/*
* Mini Object Storage, (C) 2015 Minio, 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.
*/
2015-02-03 03:12:46 -05:00
package config
import (
2015-03-03 05:36:12 -05:00
"io/ioutil"
"os"
"path"
"sync"
2015-02-03 03:12:46 -05:00
"testing"
"github.com/minio-io/minio/pkg/utils/crypto/keys"
. "gopkg.in/check.v1"
)
type MySuite struct{}
var _ = Suite(&MySuite{})
func Test(t *testing.T) { TestingT(t) }
func (s *MySuite) TestConfig(c *C) {
conf := Config{}
2015-03-03 04:25:45 -05:00
conf.configPath, _ = ioutil.TempDir("/tmp", "minio-test-")
defer os.RemoveAll(conf.configPath)
conf.configFile = path.Join(conf.configPath, "config.json")
if _, err := os.Stat(conf.configFile); os.IsNotExist(err) {
_, err = os.Create(conf.configFile)
if err != nil {
c.Fatal(err)
}
}
conf.configLock = new(sync.RWMutex)
2015-02-03 03:12:46 -05:00
2015-03-05 23:08:29 -05:00
accesskey, _ := keys.GenerateRandomAlphaNumeric(keys.MINIO_ACCESS_ID)
secretkey, _ := keys.GenerateRandomBase64(keys.MINIO_SECRET_ID)
2015-02-03 03:12:46 -05:00
user := User{
Name: "gnubot",
AccessKey: string(accesskey),
SecretKey: string(secretkey),
}
conf.AddUser(user)
err := conf.WriteConfig()
c.Assert(err, IsNil)
err = conf.ReadConfig()
c.Assert(err, IsNil)
2015-03-05 23:08:29 -05:00
accesskey, _ = keys.GenerateRandomAlphaNumeric(keys.MINIO_ACCESS_ID)
secretkey, _ = keys.GenerateRandomBase64(keys.MINIO_SECRET_ID)
2015-02-03 03:12:46 -05:00
user = User{
Name: "minio",
AccessKey: string(accesskey),
SecretKey: string(secretkey),
}
conf.AddUser(user)
err = conf.WriteConfig()
c.Assert(err, IsNil)
}