2017-02-28 84 views
0

我正在创建Spark 2.0.1项目并希望在我的SBT项目中使用Spark测试罐。如何在SBT中使用测试罐作为火花

build.sbt:

scalaVersion := "2.11.0" 
val sparkVersion = "2.0.1" 

libraryDependencies ++= Seq(
    "org.apache.spark" %% "spark-core" % sparkVersion % "compile", 
    "org.apache.spark" %% "spark-sql" % sparkVersion % "compile", 
    "org.scalatest" %% "scalatest" % "2.2.6" % "test", 
    "org.apache.spark" %% "spark-core" % sparkVersion % "test" classifier "tests", 
    "org.apache.spark" %% "spark-sql" % sparkVersion % "test" classifier "tests", 
    "org.apache.spark" %% "spark-catalyst" % sparkVersion % "test" classifier "tests" 
) 

我的测试代码:

import org.apache.spark.sql.DataFrame 
import org.apache.spark.sql.functions._ 
import org.apache.spark.sql.test.SharedSQLContext 

class LoaderTest extends org.apache.spark.sql.QueryTest with SharedSQLContext { 
    import testImplicits._ 

    test("function current_date") { 
     val df1 = Seq((1, 2), (3, 1)).toDF("a", "b") 
     // Rest of test code and assertion using checkAnswer method 
    } 
} 

但是当我尝试使用运行测试:

sbt clean test 

它得到以下错误:

[info] Compiling 1 Scala source to /tstprg/test/target/scala-2.11/test-classes... 
[error] bad symbolic reference to org.apache.spark.sql.catalyst.expressions.PredicateHelper encountered in class file 'PlanTest.class'. 
[error] Cannot access type PredicateHelper in package org.apache.spark.sql.catalyst.expressions. The current classpath may be 
[error] missing a definition for org.apache.spark.sql.catalyst.expressions.PredicateHelper, or PlanTest.class may have been compiled against a version that's 
[error] incompatible with the one found on the current classpath. 
[error] /tstprg/test/src/test/scala/facts/LoaderTest.scala:7: illegal inheritance; 
[error] self-type facts.LoaderTest does not conform to org.apache.spark.sql.QueryTest's selftype org.apache.spark.sql.QueryTest 
[error]  class LoaderTest extends org.apache.spark.sql.QueryTest with SharedSQLContext { 
[error]             ^
[error] /tstprg/test/src/test/scala/facts/LoaderTest.scala:7: illegal inheritance; 
[error] self-type facts.LoaderTest does not conform to org.apache.spark.sql.test.SharedSQLContext's selftype org.apache.spark.sql.test.SharedSQLContext 
[error]  class LoaderTest extends org.apache.spark.sql.QueryTest with SharedSQLContext { 
[error]                ^
[error] bad symbolic reference to org.apache.spark.sql.Encoder encountered in class file 'SQLImplicits.class'. 
[error] Cannot access type Encoder in package org.apache.spark.sql. The current classpath may be 
[error] missing a definition for org.apache.spark.sql.Encoder, or SQLImplicits.class may have been compiled against a version that's 
[error] incompatible with the one found on the current classpath. 
[error] /tstprg/test/src/test/scala/facts/LoaderTest.scala:11: bad symbolic reference to org.apache.spark.sql.catalyst.plans.logical encountered in class file 'SQLTestUtils.class'. 
[error] Cannot access term logical in package org.apache.spark.sql.catalyst.plans. The current classpath may be 
[error] missing a definition for org.apache.spark.sql.catalyst.plans.logical, or SQLTestUtils.class may have been compiled against a version that's 
[error] incompatible with the one found on the current classpath. 
[error]   val df1 = Seq((1, 2), (3, 1)).toDF("a", "b") 
[error]          ^
[error] 5 errors found 
[error] (test:compileIncremental) Compilation failed 

任何试过使用SBT进行单元测试的尝试使用Spark的测试罐的人能帮助我了解什么吗?

注意:当我运行IntelliJ IDE时,此测试正常工作。

回答

0

试着改变你的依赖标记为测试的范围像下面

scalaVersion := "2.11.0" 
val sparkVersion = "2.0.1" 

libraryDependencies ++= Seq(
    "org.apache.spark" %% "spark-core" % sparkVersion, 
    "org.apache.spark" %% "spark-sql" % sparkVersion, 
    "org.scalatest" %% "scalatest" % "2.2.6", 
    "org.apache.spark" %% "spark-core" % sparkVersion , 
    "org.apache.spark" %% "spark-sql" % sparkVersion, 
    "org.apache.spark" %% "spark-catalyst" % sparkVersion 
) 

或添加“编译”。

+0

谢谢。但是,我试图把范围'测试'和'测试 - >测试',但仍然无法让它运行。 – user7634340

+0

添加了详细的答案 – FaigB

+0

它不起作用,因为我们需要测试火花芯,spark-sql和火花催化剂罐。 – user7634340