summaryrefslogtreecommitdiff
path: root/examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/niobuffer/BaseBufferTest.scala
blob: a1f1b71363c264fb57745513de2dd4ebf1eb0426 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*                     __                                               *\
**     ________ ___   / /  ___      __ ____  Scala.js Test Suite        **
**    / __/ __// _ | / /  / _ | __ / // __/  (c) 2013, LAMP/EPFL        **
**  __\ \/ /__/ __ |/ /__/ __ |/_// /_\ \    http://scala-js.org/       **
** /____/\___/_/ |_/____/_/ | |__/ /____/                               **
**                          |/____/                                     **
\*                                                                      */
package scala.scalajs.testsuite.niobuffer

import org.scalajs.jasminetest.JasmineTest

import java.nio._

abstract class BaseBufferTest extends JasmineTest {
  trait BaseFactory {
    type BufferType <: Buffer

    val createsReadOnly: Boolean = false

    def allocBuffer(capacity: Int): BufferType

    def allocBuffer(pos: Int, limit: Int, capacity: Int): BufferType = {
      val buf = allocBuffer(capacity)
      buf.limit(limit).position(pos)
      buf
    }
  }

  type Factory <: BaseFactory

  def commonTests(factory: Factory): Unit = {
    import factory._

    it("allocate") {
      val buf = allocBuffer(10)
      expect(buf.position).toEqual(0)
      expect(buf.limit).toEqual(10)
      expect(buf.capacity).toEqual(10)

      expect(allocBuffer(0).capacity).toEqual(0)

      expect(() => allocBuffer(-1)).toThrow

      val buf2 = allocBuffer(1, 5, 9)
      expect(buf2.position()).toEqual(1)
      expect(buf2.limit()).toEqual(5)
      expect(buf2.capacity()).toEqual(9)
    }

    it("isReadOnly()") {
      val buf = allocBuffer(10)
      if (createsReadOnly)
        expect(buf.isReadOnly()).toBeTruthy
      else
        expect(buf.isReadOnly()).toBeFalsy
    }

    it("position") {
      val buf = allocBuffer(10)
      buf.position(3)
      expect(buf.position()).toEqual(3)
      buf.position(10)
      expect(buf.position()).toEqual(10)
      buf.position(0)
      expect(buf.position()).toEqual(0)

      expect(() => buf.position(-1)).toThrow
      expect(() => buf.position(11)).toThrow
      expect(buf.position()).toEqual(0)

      val buf2 = allocBuffer(1, 5, 9)
      expect(buf2.position()).toEqual(1)
      buf2.position(5)
      expect(buf2.position()).toEqual(5)
      expect(() => buf2.position(6)).toThrow
      expect(buf2.position()).toEqual(5)
    }

    it("limit") {
      val buf = allocBuffer(10)
      buf.position(3)
      buf.limit(7)
      expect(buf.limit()).toEqual(7)
      expect(buf.position()).toEqual(3)
      expect(() => buf.limit(11)).toThrow
      expect(buf.limit()).toEqual(7)
      expect(() => buf.limit(-1)).toThrow
      expect(buf.limit()).toEqual(7)
      expect(buf.position()).toEqual(3)

      buf.position(5)
      buf.limit(4)
      expect(buf.limit()).toEqual(4)
      expect(buf.position()).toEqual(4)
    }

    it("mark() and reset()") {
      val buf = allocBuffer(10)

      // Initially, the mark should not be set
      expect(() => buf.reset()).toThrow

      // Simple test
      buf.position(3)
      buf.mark()
      buf.position(8)
      buf.reset()
      expect(buf.position()).toEqual(3)

      // reset() should not have cleared the mark
      buf.position(5)
      buf.reset()
      expect(buf.position()).toEqual(3)

      // setting position() below the mark should clear the mark
      buf.position(2)
      expect(() => buf.reset()).toThrow
    }

    it("clear()") {
      val buf = allocBuffer(3, 6, 10)
      buf.mark()
      buf.position(4)

      buf.clear()
      expect(buf.position()).toEqual(0)
      expect(buf.limit()).toEqual(10) // the capacity
      expect(buf.capacity()).toEqual(10)
      expect(() => buf.reset()).toThrow
    }

    it("flip()") {
      val buf = allocBuffer(3, 6, 10)
      buf.mark()
      buf.position(4)

      buf.flip()
      expect(buf.position()).toEqual(0)
      expect(buf.limit()).toEqual(4) // old position
      expect(buf.capacity()).toEqual(10)
      expect(() => buf.reset()).toThrow
    }

    it("rewind()") {
      val buf = allocBuffer(3, 6, 10)
      buf.mark()
      buf.position(4)

      buf.rewind()
      expect(buf.position()).toEqual(0)
      expect(buf.limit()).toEqual(6) // unchanged
      expect(buf.capacity()).toEqual(10)
      expect(() => buf.reset()).toThrow
    }

    it("remaining() and hasRemaining()") {
      val buf = allocBuffer(3, 7, 10)
      expect(buf.remaining()).toEqual(7-3)
      expect(buf.hasRemaining()).toBeTruthy

      buf.position(6)
      expect(buf.remaining()).toEqual(7-6)
      expect(buf.hasRemaining()).toBeTruthy

      buf.limit(9)
      expect(buf.remaining()).toEqual(9-6)
      expect(buf.hasRemaining()).toBeTruthy

      buf.limit(2)
      expect(buf.remaining()).toEqual(0)
      expect(buf.hasRemaining()).toBeFalsy

      buf.position(0)
      expect(buf.remaining()).toEqual(2)
      expect(buf.hasRemaining()).toBeTruthy
    }
  }
}