2015-02-18 22:46:01 -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-21 02:07:43 -05:00
|
|
|
package v1
|
2015-02-18 22:46:01 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
. "gopkg.in/check.v1"
|
2015-02-23 23:27:25 -05:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2015-02-18 22:46:01 -05:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) { TestingT(t) }
|
|
|
|
|
|
|
|
type MySuite struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&MySuite{})
|
|
|
|
|
2015-02-27 15:39:52 -05:00
|
|
|
func (s *MySuite) TestSingleWrite(c *C) {
|
2015-02-27 15:18:08 -05:00
|
|
|
//var b io.ReadWriteSeeker
|
2015-02-18 22:46:01 -05:00
|
|
|
var o bytes.Buffer
|
|
|
|
|
2015-02-23 23:27:25 -05:00
|
|
|
b, err := ioutil.TempFile(os.TempDir(), "minio-donut-test")
|
2015-02-27 15:18:08 -05:00
|
|
|
defer os.RemoveAll(b.Name())
|
2015-02-23 23:27:25 -05:00
|
|
|
c.Assert(err, IsNil)
|
|
|
|
|
|
|
|
donut := New(b)
|
2015-02-18 22:46:01 -05:00
|
|
|
gobheader := GobHeader{}
|
2015-02-23 23:27:25 -05:00
|
|
|
err = donut.Write(gobheader, &o)
|
2015-02-18 22:46:01 -05:00
|
|
|
c.Assert(err, IsNil)
|
|
|
|
blockStart := make([]byte, 4)
|
|
|
|
|
2015-02-23 23:27:25 -05:00
|
|
|
//n, _ := b.Read(blockStart)
|
|
|
|
// b.Next(b.Len() - n) // jump ahead
|
|
|
|
// b.Read(blockEnd)
|
|
|
|
// read start
|
|
|
|
b.Seek(0, 0) // jump ahead
|
|
|
|
b.Read(blockStart)
|
2015-02-18 22:46:01 -05:00
|
|
|
blockStartCheck := []byte{'M', 'I', 'N', 'I'}
|
|
|
|
c.Assert(blockStart, DeepEquals, blockStartCheck)
|
2015-02-23 23:27:25 -05:00
|
|
|
|
|
|
|
// read block
|
|
|
|
|
|
|
|
// read end
|
2015-02-27 15:39:52 -05:00
|
|
|
blockEnd := make([]byte, 4)
|
|
|
|
b.Seek(-int64(len(blockEnd)), 2) // jump ahead
|
|
|
|
b.Read(blockEnd)
|
|
|
|
blockEndCheck := []byte{'I', 'N', 'I', 'M'}
|
|
|
|
c.Assert(blockEnd, DeepEquals, blockEndCheck)
|
2015-02-18 22:46:01 -05:00
|
|
|
}
|