Merge pull request #182 from harshavardhana/pr_out_add_donut_tests_just_for_verification
commit
83c636c80c
@ -0,0 +1,52 @@ |
|||||||
|
/* |
||||||
|
* 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 donut |
||||||
|
|
||||||
|
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 := Donut{&b} |
||||||
|
gobheader := GobHeader{} |
||||||
|
err := donut.Write(gobheader, &o) |
||||||
|
c.Assert(err, IsNil) |
||||||
|
c.Log(b.Bytes()) |
||||||
|
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) |
||||||
|
} |
Loading…
Reference in new issue