aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/scala/org/apache/spark/util/io/ChunkedByteBufferOutputStreamSuite.scala
blob: 226622075a6cc79006e9a6d909a1f1929c0b0586 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.spark.util.io

import java.nio.ByteBuffer

import scala.util.Random

import org.apache.spark.SparkFunSuite


class ChunkedByteBufferOutputStreamSuite extends SparkFunSuite {

  test("empty output") {
    val o = new ChunkedByteBufferOutputStream(1024, ByteBuffer.allocate)
    assert(o.toChunkedByteBuffer.size === 0)
  }

  test("write a single byte") {
    val o = new ChunkedByteBufferOutputStream(1024, ByteBuffer.allocate)
    o.write(10)
    val chunkedByteBuffer = o.toChunkedByteBuffer
    assert(chunkedByteBuffer.getChunks().length === 1)
    assert(chunkedByteBuffer.getChunks().head.array().toSeq === Seq(10.toByte))
  }

  test("write a single near boundary") {
    val o = new ChunkedByteBufferOutputStream(10, ByteBuffer.allocate)
    o.write(new Array[Byte](9))
    o.write(99)
    val chunkedByteBuffer = o.toChunkedByteBuffer
    assert(chunkedByteBuffer.getChunks().length === 1)
    assert(chunkedByteBuffer.getChunks().head.array()(9) === 99.toByte)
  }

  test("write a single at boundary") {
    val o = new ChunkedByteBufferOutputStream(10, ByteBuffer.allocate)
    o.write(new Array[Byte](10))
    o.write(99)
    val arrays = o.toChunkedByteBuffer.getChunks().map(_.array())
    assert(arrays.length === 2)
    assert(arrays(1).length === 1)
    assert(arrays(1)(0) === 99.toByte)
  }

  test("single chunk output") {
    val ref = new Array[Byte](8)
    Random.nextBytes(ref)
    val o = new ChunkedByteBufferOutputStream(10, ByteBuffer.allocate)
    o.write(ref)
    val arrays = o.toChunkedByteBuffer.getChunks().map(_.array())
    assert(arrays.length === 1)
    assert(arrays.head.length === ref.length)
    assert(arrays.head.toSeq === ref.toSeq)
  }

  test("single chunk output at boundary size") {
    val ref = new Array[Byte](10)
    Random.nextBytes(ref)
    val o = new ChunkedByteBufferOutputStream(10, ByteBuffer.allocate)
    o.write(ref)
    val arrays = o.toChunkedByteBuffer.getChunks().map(_.array())
    assert(arrays.length === 1)
    assert(arrays.head.length === ref.length)
    assert(arrays.head.toSeq === ref.toSeq)
  }

  test("multiple chunk output") {
    val ref = new Array[Byte](26)
    Random.nextBytes(ref)
    val o = new ChunkedByteBufferOutputStream(10, ByteBuffer.allocate)
    o.write(ref)
    val arrays = o.toChunkedByteBuffer.getChunks().map(_.array())
    assert(arrays.length === 3)
    assert(arrays(0).length === 10)
    assert(arrays(1).length === 10)
    assert(arrays(2).length === 6)

    assert(arrays(0).toSeq === ref.slice(0, 10))
    assert(arrays(1).toSeq === ref.slice(10, 20))
    assert(arrays(2).toSeq === ref.slice(20, 26))
  }

  test("multiple chunk output at boundary size") {
    val ref = new Array[Byte](30)
    Random.nextBytes(ref)
    val o = new ChunkedByteBufferOutputStream(10, ByteBuffer.allocate)
    o.write(ref)
    val arrays = o.toChunkedByteBuffer.getChunks().map(_.array())
    assert(arrays.length === 3)
    assert(arrays(0).length === 10)
    assert(arrays(1).length === 10)
    assert(arrays(2).length === 10)

    assert(arrays(0).toSeq === ref.slice(0, 10))
    assert(arrays(1).toSeq === ref.slice(10, 20))
    assert(arrays(2).toSeq === ref.slice(20, 30))
  }
}