From c14676635f39dd1bc0345e4df2d1fa06c298bfd7 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 29 May 2018 11:01:14 -0700 Subject: HBaseRowCountJob actually counts rows --- scalding/src/test/scala/sandcrawler/HBaseRowCountTest.scala | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'scalding/src/test/scala/sandcrawler/HBaseRowCountTest.scala') diff --git a/scalding/src/test/scala/sandcrawler/HBaseRowCountTest.scala b/scalding/src/test/scala/sandcrawler/HBaseRowCountTest.scala index 598f45d..ac7cf18 100644 --- a/scalding/src/test/scala/sandcrawler/HBaseRowCountTest.scala +++ b/scalding/src/test/scala/sandcrawler/HBaseRowCountTest.scala @@ -46,11 +46,15 @@ class HBaseRowCountTest extends FunSpec with TupleConversions { sampleData.map(l => new Tuple(l.map(s => {new ImmutableBytesWritable(Bytes.toBytes(s))}):_*))) .sink[Tuple](Tsv(output format "get_list")) { outputBuffer => - log.debug("Output => " + outputBuffer) it("should return the test data provided.") { println("outputBuffer.size => " + outputBuffer.size) - assert(outputBuffer.size === 2) + assert(outputBuffer.size === 1) + } + + it("should return the correct count") { + println("raw output => " + outputBuffer) + assert(outputBuffer(0).getObject(0) === 2) } } .run -- cgit v1.2.3