Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
e7f1a69c
Commit
e7f1a69c
authored
12 years ago
by
Stephen Haberman
Browse files
Options
Downloads
Patches
Plain Diff
Add a test for NextIterator.
parent
1a175d13
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/test/scala/spark/util/NextIteratorSuite.scala
+68
-0
68 additions, 0 deletions
core/src/test/scala/spark/util/NextIteratorSuite.scala
with
68 additions
and
0 deletions
core/src/test/scala/spark/util/NextIteratorSuite.scala
0 → 100644
+
68
−
0
View file @
e7f1a69c
package
spark.util
import
org.scalatest.FunSuite
import
org.scalatest.matchers.ShouldMatchers
import
scala.collection.mutable.Buffer
import
java.util.NoSuchElementException
class
NextIteratorSuite
extends
FunSuite
with
ShouldMatchers
{
test
(
"one iteration"
)
{
val
i
=
new
StubIterator
(
Buffer
(
1
))
i
.
hasNext
should
be
===
true
i
.
next
should
be
===
1
i
.
hasNext
should
be
===
false
intercept
[
NoSuchElementException
]
{
i
.
next
()
}
}
test
(
"two iterations"
)
{
val
i
=
new
StubIterator
(
Buffer
(
1
,
2
))
i
.
hasNext
should
be
===
true
i
.
next
should
be
===
1
i
.
hasNext
should
be
===
true
i
.
next
should
be
===
2
i
.
hasNext
should
be
===
false
intercept
[
NoSuchElementException
]
{
i
.
next
()
}
}
test
(
"empty iteration"
)
{
val
i
=
new
StubIterator
(
Buffer
())
i
.
hasNext
should
be
===
false
intercept
[
NoSuchElementException
]
{
i
.
next
()
}
}
test
(
"close is called once for empty iterations"
)
{
val
i
=
new
StubIterator
(
Buffer
())
i
.
hasNext
should
be
===
false
i
.
hasNext
should
be
===
false
i
.
closeCalled
should
be
===
1
}
test
(
"close is called once for non-empty iterations"
)
{
val
i
=
new
StubIterator
(
Buffer
(
1
,
2
))
i
.
next
should
be
===
1
i
.
next
should
be
===
2
// close isn't called until we check for the next element
i
.
closeCalled
should
be
===
0
i
.
hasNext
should
be
===
false
i
.
closeCalled
should
be
===
1
i
.
hasNext
should
be
===
false
i
.
closeCalled
should
be
===
1
}
class
StubIterator
(
ints
:
Buffer
[
Int
])
extends
NextIterator
[
Int
]
{
var
closeCalled
=
0
override
def
getNext
()
=
{
if
(
ints
.
size
==
0
)
{
finished
=
true
0
}
else
{
ints
.
remove
(
0
)
}
}
override
def
close
()
{
closeCalled
+=
1
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment