I'm trying to unit-test some Scala that is very collection-heavy. These collections are returned as Iterable[T], so I am interested in the contents of the collection, even if the underlying types differ. This is actually two related problems:

  1. How do I assert that two ordered collections contain the same sequence of elements?
  2. How do I assert that two unordered collections contain the same set of elements?

In summary, I'm looking the Scala-equivalent of NUnit's CollectionAssert.AreEqual (ordered) and CollectionAssert.AreEquivalent (unordered) in ScalaTest:

Set(1, 2) should equal (List(1, 2))          // ordered, pass
Iterable(2, 1) should equal (Iterable(1, 2)) // unordered, pass
link|improve this question

For the unordered case, if you're not worried about a bit of extra memory usage, you could call .toSet on the collections you want to compare. – Dylan Sep 15 '11 at 17:48
Calling toSet is exactly the behavior I want, but it behaves incorrectly if the collection contains duplicate elements. – Michael Koval Sep 15 '11 at 19:35
You could possibly use the groupBy method, and pass in some identity function as the mapper. – Dylan Sep 15 '11 at 20:12
feedback

1 Answer

up vote 7 down vote accepted

You could try .toSeq for ordered collections and .toSet for unordered, which captures what you want as far as I understand it.

The following passes:

class Temp extends FunSuite with ShouldMatchers {
  test("1")  { Array(1, 2).toSeq should equal (List(1, 2).toSeq) }
  test("2")  { Array(2, 1).toSeq should not equal (List(1, 2).toSeq) }
  test("2b") { Array(2, 1) should not equal (List(1, 2)) }  
  test("3")  { Iterable(2, 1).toSet should equal (Iterable(1, 2).toSet) }
  test("4")  { Iterable(2, 1) should not equal (Iterable(1, 2)) }
}

BTW a Set is not ordered.

edit: To avoid removing duplicate elements, try toSeq.sorted. The following pass:

  test("5")  { Iterable(2, 1).toSeq.sorted should equal (Iterable(1, 2).toSeq.sorted) }
  test("6")  { Iterable(2, 1).toSeq should not equal (Iterable(1, 2).toSeq) }

edit 2: For unordered collections where elements cannot be sorted, you can use this method:

  def sameAs[A](c: Traversable[A], d: Traversable[A]): Boolean = 
    if (c.isEmpty) d.isEmpty
    else {
      val (e, f) = d span (c.head !=)
      if (f.isEmpty) false else sameAs(c.tail, e ++ f.tail)
    }

e.g. (note use of symbols 'a 'b 'c which have no defined ordering)

  test("7")  { assert( sameAs(Iterable(2, 1),    Iterable(1, 2)     )) }
  test("8")  { assert( sameAs(Array('a, 'c, 'b), List('c, 'a, 'b)   )) }
  test("9")  { assert( sameAs("cba",             Set('a', 'b', 'c') )) }

Alternative sameAs implementation:

  def sameAs[A](c: Traversable[A], d: Traversable[A]) = {
    def counts(e: Traversable[A]) = e groupBy identity mapValues (_.size)
    counts(c) == counts(d)
  }
link|improve this answer
Thanks for the answer. This is very close to what I'm looking for, but not exactly: toSet eliminates duplicate values, so Array(1, 1).toSet should not equal (Array(1)) incorrectly fails. From what I can tell, Scala does not have a MultiSet collection. Do you have any suggestions? – Michael Koval Sep 15 '11 at 19:33
1  
@Michael good point, see my edit. If your items aren't ordered (i.e. you can't sort them), it might be a bit trickier – Luigi Plinge Sep 15 '11 at 19:48
Defining an ordering isn't ideal, but it's a workable in this situation. Thanks! – Michael Koval Sep 15 '11 at 19:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.