minio/pkg/storage/donut/v1/donut_test.go

52 lines
1.3 KiB
Go

/*
* 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.
*/
package v1
import (
"bytes"
. "gopkg.in/check.v1"
"testing"
)
func Test(t *testing.T) { TestingT(t) }
type MySuite struct{}
var _ = Suite(&MySuite{})
func (s *MySuite) TestAPISuite(c *C) {
var b bytes.Buffer
var o bytes.Buffer
donut := New(&b)
gobheader := GobHeader{}
err := donut.Write(gobheader, &o)
c.Assert(err, IsNil)
blockStart := make([]byte, 4)
blockEnd := make([]byte, 4)
n, _ := b.Read(blockStart)
b.Next(b.Len() - n) // jump ahead
b.Read(blockEnd)
blockStartCheck := []byte{'M', 'I', 'N', 'I'}
blockEndCheck := []byte{'I', 'N', 'I', 'M'}
c.Assert(blockStart, DeepEquals, blockStartCheck)
c.Assert(blockEnd, DeepEquals, blockEndCheck)
}