summaryrefslogtreecommitdiff
path: root/test/files/run/t6827.scala
blob: eb020711bb6ecb938a2803ebc4e1922c55f50a60 (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
object Test extends App {
  val ns = (0 until 20)
  val arr = new Array[Int](10)

  def tryit(label: String, start: Int, len: Int): Unit = {
    val status = try {
      val it = ns.toIterator
      it.copyToArray(arr, start, len)
      "ok"
    } catch {
      case e: Exception => e.toString
    }
    println("%s: %s" format (label, status))
  }

  tryit("start at -5", -5, 10)
  tryit("start at -1", -1, 10)
  tryit("start at limit", 10, 10)
  tryit("start at limit-1", 9, 10)
  tryit("first 10", 0, 10)
  tryit("read all", 0, 20)
  tryit("test huge len", 0, Int.MaxValue)
  tryit("5 from 5", 5, 10)
  tryit("20 from 5", 5, 20)
  tryit("test len overflow", 5, Int.MaxValue)
  tryit("start beyond limit", 30, 10)
  tryit("read 0", 0, 0)
  tryit("read -1", 0, -1)
  tryit("invalid read 0", 30, 0)
  tryit("invalid read -1", 30, -1)

  // okay, see SI-7128
  "...".toIterator.copyToArray(new Array[Char](0), 0, 0)


  // Bonus test from @som-snytt to check for overflow in
  // index calculations.
  def testOverflow(start: Int, len: Int, expected: List[Char]) {
    def copyFromIterator = {
      val arr = Array.fill[Char](3)('-')
      "abc".toIterator.copyToArray(arr, start, len)
      arr.toList
    }
    def copyFromArray = {
      val arr = Array.fill[Char](3)('-')
      "abc".toArray.copyToArray(arr, start, len)
      arr.toList
    }
    assert(copyFromIterator == expected)
    assert(copyFromArray == expected)
  }
  testOverflow(1, Int.MaxValue - 1, "-ab".toList)
  testOverflow(1, Int.MaxValue, "-ab".toList)
}