Skip to content

Commit

Permalink
Merge pull request apache#19 from amezng/amaterasu-21
Browse files Browse the repository at this point in the history
AMATERASU-21 Fix Spark scala tests
  • Loading branch information
eyalbenivri committed May 26, 2018
2 parents 8847187 + 06be938 commit c664db1
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 62 deletions.
8 changes: 5 additions & 3 deletions executor/src/test/resources/simple-spark.scala
@@ -1,11 +1,13 @@

import org.apache.amaterasu.executor.runtime.AmaContext
import org.apache.spark.sql.{DataFrame, SaveMode}
import org.apache.spark.sql.{DataFrame, SaveMode, SparkSession}

val data = Seq(1,3,4,5,6)

val data = Array(1, 2, 3, 4, 5)

val sc = AmaContext.sc
val rdd = sc.parallelize(data)
val sqlContext = AmaContext.sqlContext
val sqlContext = AmaContext.spark

import sqlContext.implicits._
val x: DataFrame = rdd.toDF()
Expand Down
4 changes: 1 addition & 3 deletions executor/src/test/resources/step-2.scala
@@ -1,7 +1,5 @@
import org.apache.amaterasu.executor.runtime.AmaContext

val oddRdd = AmaContext.getRDD[Int]("start", "rdd").filter(x=>x/2 == 0)
oddRdd.take(5).foreach(println)

val highNoDf = AmaContext.getDataFrame("start", "x").where("_1 > 3")
val highNoDf = AmaContext.getDataFrame("start", "x").where("age > 20")
highNoDf.show
Binary file not shown.
Binary file not shown.
@@ -1,54 +1,56 @@
//package org.apache.amaterasu.spark
//
//import java.io.File
//
//import org.apache.amaterasu.common.runtime._
//import org.apache.amaterasu.common.configuration.ClusterConfig
//import org.apache.amaterasu.utilities.TestNotifier
//
//import scala.collection.JavaConverters._
//import org.apache.commons.io.FileUtils
//import java.io.ByteArrayOutputStream
//
//import org.apache.spark.SparkConf
//import org.apache.spark.repl.Main
//import org.apache.spark.repl.amaterasu.runners.spark.{SparkRunnerHelper, SparkScalaRunner}
//import org.apache.spark.sql.SparkSession
//import org.scalatest.{BeforeAndAfterAll, FlatSpec, Matchers}
//
//class SparkScalaRunnerTests extends FlatSpec with Matchers with BeforeAndAfterAll {
//
// var runner: SparkScalaRunner = _
//
// override protected def beforeAll(): Unit = {
//
// FileUtils.deleteQuietly(new File("/tmp/job_5/"))
//
// val env = Environment()
// env.workingDir = "file:///tmp"
// env.master = "local[*]"
//
//
// val spark = SparkRunnerHelper.createSpark(env, "job_5", Seq.empty[String], Map.empty)
//
//
// val notifier = new TestNotifier()
// val strm = new ByteArrayOutputStream()
// runner = SparkScalaRunner(env, "job_5", spark, strm, notifier, Seq.empty[String])
// super.beforeAll()
// }
//
// "SparkScalaRunner" should "execute the simple-spark.scala" in {
//
// val script = getClass.getResource("/simple-spark.scala").getPath
// runner.executeSource(script, "start", Map.empty[String, String].asJava)
//
// }
//
// "SparkScalaRunner" should "execute step-2.scala and access data from simple-spark.scala" in {
//
// val script = getClass.getResource("/step-2.scala").getPath
// runner.executeSource(script, "cont", Map.empty[String, String].asJava)
//
// }
//}
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.amaterasu.spark


import scala.collection.JavaConverters._
import org.apache.amaterasu.executor.common.executors.ProvidersFactory
import org.apache.amaterasu.executor.runtime.AmaContext
import org.apache.spark.repl.amaterasu.runners.spark.SparkScalaRunner
import org.scalatest.{BeforeAndAfterAll, DoNotDiscover, FlatSpec, Matchers}

import scala.io.Source

@DoNotDiscover
class SparkScalaRunnerTests extends FlatSpec with Matchers with BeforeAndAfterAll {
var factory: ProvidersFactory = _
var runner: SparkScalaRunner = _


"SparkScalaRunner" should "execute the simple-spark.scala" in {


val sparkRunner =factory.getRunner("spark", "scala").get.asInstanceOf[SparkScalaRunner]
val script = getClass.getResource("/simple-spark.scala").getPath
val sourceCode = Source.fromFile(script).getLines().mkString("\n")
sparkRunner.executeSource(sourceCode, "start", Map.empty[String, String].asJava)

}

"SparkScalaRunner" should "execute step-2.scala and access data from simple-spark.scala" in {

val sparkRunner =factory.getRunner("spark", "scala").get.asInstanceOf[SparkScalaRunner]
val script = getClass.getResource("/step-2.scala").getPath
sparkRunner.env.workingDir = s"${getClass.getResource("/tmp").getPath}"
AmaContext.init(sparkRunner.spark,"job",sparkRunner.env)
val sourceCode = Source.fromFile(script).getLines().mkString("\n")
sparkRunner.executeSource(sourceCode, "cont", Map.empty[String, String].asJava)

}


}
Expand Up @@ -36,7 +36,9 @@ import scala.collection.mutable.ListBuffer
class SparkTestsSuite extends Suites(
new PySparkRunnerTests,
new RunnersLoadingTests,
new SparkSqlRunnerTests) with BeforeAndAfterAll {
new SparkSqlRunnerTests,
new SparkScalaRunnerTests
) with BeforeAndAfterAll {

var env: Environment = _
var factory: ProvidersFactory = _
Expand Down Expand Up @@ -84,9 +86,9 @@ class SparkTestsSuite extends Suites(
this.nestedSuites.filter(s => s.isInstanceOf[RunnersLoadingTests]).foreach(s => s.asInstanceOf[RunnersLoadingTests].factory = factory)
this.nestedSuites.filter(s => s.isInstanceOf[PySparkRunnerTests]).foreach(s => s.asInstanceOf[PySparkRunnerTests].factory = factory)
this.nestedSuites.filter(s => s.isInstanceOf[SparkSqlRunnerTests]).foreach(s => s.asInstanceOf[SparkSqlRunnerTests].factory = factory)
this.nestedSuites.filter(s => s.isInstanceOf[SparkScalaRunnerTests]).foreach(s => s.asInstanceOf[SparkScalaRunnerTests].factory = factory)
this.nestedSuites.filter(s => s.isInstanceOf[SparkSqlRunnerTests]).foreach(s => s.asInstanceOf[SparkSqlRunnerTests].env = env)


super.beforeAll()
}

Expand Down

0 comments on commit c664db1

Please sign in to comment.